码迷,mamicode.com
首页 > 系统相关 > 详细

linux 防火墙设置

时间:2018-09-19 12:50:54      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:cmake   chkconfig   sysconf   off   ber   table   start   perl   永久   

1.永久有效

开启: chkconfig iptables on 
关闭: chkconfig iptables off

2.即刻生效

开启: service iptables start 
关闭: service iptables stop 

3.开启部分端口

vim /etc/sysconfig/iptables

添加想要开启的相关端口

-A INPUT -m state --state NEW -m tcp -p tcp --dport 6379 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8081 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8082 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
service iptables restart

linux 防火墙设置

标签:cmake   chkconfig   sysconf   off   ber   table   start   perl   永久   

原文地址:https://www.cnblogs.com/albertzhangyu/p/9673949.html

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