关闭默认防火墙firewall
CentOS7的默认防火墙是firewall,这里首先卸载并禁止开机自动启动。
systemctl stop firewalld.service
systemctl disable firewalld.service
如果
安装并配置iptables
首先利用yum安装
yum install iptables-services
修改iptables配置
vim /etc/sysconfig/iptables
可以在红框配置前面增加你的配置
例如,如果你需要让防火墙开启50070端口
需要添加一行
-A INPUT -p tcp -m tcp --dport 50070 -j ACCEPT
完成你的配置编写之后,开启ptable services并设置开机启动
systemctl start iptables.service
systemctl enable iptables.service
然后重启你的服务器。
之后再次更改配置,只需要输入以下命令
chkconfig iptables on