1.编辑防火墙白名单
[root@localhost ~]# vim /etc/sysconfig/iptables
2.增加下面一行代码( --dport 需要开放的端口)
-A INPUT -p tcp -m state -- state NEW -m tcp --dport 80 -j ACCEPT
3.保存退出,重启防火墙
[root@localhost ~]# service iptables restart
4.关闭防火墙,永久关闭
关闭防火墙
[root@localhost ~]# service iptables stop (status 状态) (start 启动)
关闭开机自启动防火墙(永久关闭)
[root@localhost ~]# chkconfig iptables off
[root@localhost ~]# chkconfig --list|grep ipt