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

L1-01-iptables 开启与关闭

时间:2016-06-17 08:34:21      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:防火墙   status   linux   start   

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

L1-01-iptables 开启与关闭

标签:防火墙   status   linux   start   

原文地址:http://peenboo.blog.51cto.com/2865551/1790110

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