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

用命令行方式关闭CentOS防火墙

时间:2020-01-26 23:49:52      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:art   计算机   默认   restart   bin   开放   res   input   cep   

在防火墙中开放端口80和端口22的方法如下:

#/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT  

#/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT  
#/etc/rc.d/init.d/iptables save 
重启计算机后,防火墙默认已经开放了80和22两个端口。
 
临时性的完全关闭防火墙,可以不重启机器:
#/etc/init.d/iptables status                ## 查看防火墙状态
#/etc/init.d/iptable stop                    ## 本次关闭防火墙
#/etc/init.d/iptable restart                ## 重启防火墙
永久性关闭防火墙:

#chkconfig --level 35 iptables off   ## 注意中间的是两个英式小短线;

#shutdown -r now                     ##重启

用命令行方式关闭CentOS防火墙

标签:art   计算机   默认   restart   bin   开放   res   input   cep   

原文地址:https://www.cnblogs.com/ydwzhang/p/12235012.html

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