centos6.8 防火墙简单操作

2020-06-02 16:04:28来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

centos6.8 防火墙简单操作

1.基本操作

# 查看防火墙状态

service iptables status   # 停止防火墙 service iptables stop   # 启动防火墙 service iptables start   # 重启防火墙 service iptables restart   # 永久关闭防火墙 chkconfig iptables off   # 永久关闭后重启 chkconfig iptables on  
2.状态
#查看
   service   iptables  status
    #开启
vim /etc/sysconfig/iptables
# 加入如下代码以作例子
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
#重启  
service iptables restart
 

原文链接:https://www.cnblogs.com/cheflone/p/13032780.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:一篇文章看清楚 Linux 的职业发展方向

下一篇:附020.Nginx-ingress部署及使用