CentOS中iptables防火墙 开放80端口方法
Posted 庞国明 博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS中iptables防火墙 开放80端口方法相关的知识,希望对你有一定的参考价值。
开放端口:
代码如下 | 复制代码 |
[[email protected] ~]# iptables -I INPUT -p tcp --dport 80 -j ACCEPT |
保存配置:
代码如下 | 复制代码 |
[[email protected] ~]# service iptables save |
重启防火墙:
代码如下 | 复制代码 |
[[email protected] ~]# service iptables restart |
查看配置:
代码如下 | 复制代码 |
[[email protected] ~]# service iptables status |
端口查看方法:
代码如下 | 复制代码 |
[[email protected] ~]# /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 |
以上是关于CentOS中iptables防火墙 开放80端口方法的主要内容,如果未能解决你的问题,请参考以下文章