1)永久性生效,重启后不会复原
开启:chkconfig iptables on
关闭:chkconfig iptables off
2)即时生效,重启复原
开启:service iptables start
关闭:service iptables stop
状态:service iptables status
注:对于Linux下的其他服都可以用以上名利执行开启和关闭操作。
在开启了防火墙是,作如下设置,开启相关端口,修改/etc/sysconfig/iptables文档,添加:
-A RH-Firewall -l -INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A RH-Firewall -l -INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
3)查看防火墙状态
#chkconfig iptables --list
本文出自 “奋斗不止” 博客,请务必保留此出处http://peenboo.blog.51cto.com/2865551/1790110
原文地址:http://peenboo.blog.51cto.com/2865551/1790110