centos7 防火墙问题
Posted 前度天下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 防火墙问题相关的知识,希望对你有一定的参考价值。
centos从7开始默认用的是firewalld,这个是基于iptables的,虽然有iptables的核心,但是iptables的服务是没安装的。所以你只要停止firewalld服务即可:sudo systemctl stop firewalld.service && sudo systemctl disable firewalld.service
如果你要改用iptables的话,需要安装iptables服务:
sudo yum install iptables-services
sudo systemctl enable iptables && sudo systemctl enable ip6tables
sudo systemctl start iptables && sudo systemctl start ip6tables
然后开启80,3360端口
-A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT
-A INPUT -m state –state NEW -m tcp -p tcp –dport 3306 -j ACCEPT
以上是关于centos7 防火墙问题的主要内容,如果未能解决你的问题,请参考以下文章