码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS6.8防火墙放行端口

时间:2020-02-12 22:23:33      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:status   centos   rest   for   class   ble   shel   ice   start   

编辑iptables

vi /etc/sysconfig/iptables

iptables的内容一般是这样的

# Generated by iptables-save v1.4.7 on Sat Dec  7 17:28:22 2019
*filter
:INPUT DROP [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [1:152]
:syn-flood - [0:0]
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 21 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 20000:30000 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 8080 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 443 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT
-A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
COMMIT
# Completed on Sat Dec  7 17:28:22 2019

添加放行端口

-A INPUT -p tcp -m state --state NEW -m tcp --dport 端口号 -j ACCEPT

重启防火墙

service iptables restart

查看防火墙状态

service iptables status

CentOS6.8防火墙放行端口

标签:status   centos   rest   for   class   ble   shel   ice   start   

原文地址:https://www.cnblogs.com/mahoshojo/p/12300942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!