CentOS中iptables防火牆 開放80端口方法


開放端口:

 代碼如下 復制代碼

[root@WX32 ~]# iptables -I INPUT -p tcp --dport 80 -j ACCEPT

保存配置:

 代碼如下 復制代碼

[root@WX32 ~]# service iptables save
Saving firewall rules to /etc/sysconfig/iptables:          [  OK  ]

重啟防火牆:

 代碼如下 復制代碼

[root@WX32 ~]# service iptables restart
Flushing firewall rules:                                   [  OK  ]
Setting chains to policy ACCEPT: filter                    [  OK  ]
Unloading iptables modules:                                [  OK  ]
Applying iptables firewall rules:                          [  OK  ]
Loading additional iptables modules: ip_conntrack_netbios_n[  OK  ]

查看配置:

 代碼如下 復制代碼

[root@WX32 ~]# service iptables status
Table: filter
Chain INPUT (policy ACCEPT)
num  target     prot opt source               destination         
1    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           tcp dpt:80

端口查看方法:

 代碼如下 復制代碼

[root@vcentos ~]# /etc/init.d/iptables status

Table: filter

Chain INPUT (policy ACCEPT)

num target prot opt source destination

1 ACCEPT udp -- 0.0.0.0/0 0.0.0.0/0 udp dpt:80

2 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:80

3 RH-Firewall-1-INPUT all -- 0.0.0.0/0 0.0.0.0/0

Chain FORWARD (policy ACCEPT)

num target prot opt source destination

1 RH-Firewall-1-INPUT all -- 0.0.0.0/0 0.0.0.0/0


補充:

查看CentOS防火牆信息:/etc/init.d/iptables status

關閉CentOS防火牆服務:/etc/init.d/iptables stop

檢查是不是服務器的80端口被防火牆堵了,可以通過命令:telnet server_ip 80 來測試。

 

 代碼如下 復制代碼

1>.解決方法如下:

/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT

2>.然后保存:

/etc/rc.d/init.d/iptables save

3>.重啟防火牆

/etc/init.d/iptables restart


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM