linux_防火墙的安装

centos7关闭防火墙

systemctl stop firewalld   关闭防火墙
firewall-cmd --state   防火墙状态查询
systemctl disable firewalld 防火墙开机禁用

开机启动防火墙

chkconfig iptables on设置开机启动

坑error   reading information on service iptables: No such file or directory 
yum   install iptables-services

service iptables start 启动防火墙

放开端口

vi /etc/sysconfig/iptables  开放 2181 2888 3888 三个端口
-A INPUT -p tcp -m state --state NEW -m tcp --dport 2181 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 2888 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 3888 -j ACCEPT

重启防火墙

[root@h1 ~]# service iptables restart

你可能感兴趣的:(linux_防火墙的安装)