Centos7关闭防火墙
在centos7之前,我们临时性的完全关闭防火墙的命令:/etc/init.d/iptable stop。centos 7中防火墙是一个非常的强大的功能了,和之前的有些细微的区别。下面亲测centos7下关闭防火墙。
永久性关闭防火墙:
1、直接关闭防火墙
[cc lang=”bash”][root@Linux ~]# systemctl stop firewalld.service #停止firewall服务
[root@Linux ~]# systemctl disable firewalld.service #禁止firewall开机启动[/cc]
2、设置 iptables service
[cc lang=”bash”][root@Linux ~]# yum -y install iptables-services[/cc]
如果要修改防火墙配置,如增加防火墙端口3306
[cc lang=”bash”][root@Linux ~]# vi /etc/sysconfig/iptables[/cc]
增加规则
[cc lang=”bash”][root@Linux ~]# iptables -A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT[/cc]
保存退出后
[cc lang=”bash”][root@Linux ~]# systemctl restart iptables.service #重启防火墙使配置生效
[root@Linux ~]# systemctl enable iptables.service #设置防火墙开机启动[/cc]
最后重启系统使设置生效即可。
来源:Centos7关闭防火墙
2019年5月5日 下午9:15
哇塞,居然是沙发?留个名
2019年5月8日 下午4:41
好文章!666,学习了