首页 > 代码库 > centos7 关闭默认firewalld,开启iptables
centos7 关闭默认firewalld,开启iptables
编者按:
对于使用了centos6系列系统N年的运维来说,在使用centos7的时候难免会遇到各种不适应。比如防火墙问题。本文主要记录怎么关闭默认的firewalld防火墙,重新启用iptables。
1.关闭firewalld防火墙
systemctl stop firewalld systemctl mask firewalld
2.安装iptables
yum install iptables-services
3.设置开机启动
systemctl enable iptables.service systemctl [stop|start|restart] iptables。service #or service iptables [stop|start|restart]
注意:
在启动的时候会遇到这样的问题:Unit iptables.service failed to load
问题根源是在/etc/sysconfig/下面没有找到iptables文件。解决办法如下:
iptables -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT
/usr/libexec/iptables/iptables.init save #保存成功
然后再执行
systemctl start iptables.service
centos7 关闭默认firewalld,开启iptables
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。