centos 7系统 iptables替换自带firewalld防火墙

查看firewalld防火墙状态

# systemctl status firewalld

active(runing)代表运行

centos 7系统 iptables替换自带firewalld防火墙

关闭firewalld防火墙,禁止开机启动

# systemctl stop firewalld && systemctl disable firewalld

centos 7系统 iptables替换自带firewalld防火墙

 

 检查firewalld防护墙状态

# systemctl status firewalld

  如图所示,已经关闭

centos 7系统 iptables替换自带firewalld防火墙

安装iptables-services服务

# yum install iptables-services  #此处可以使用 yum install -y  iptables-s* 来查询以“iptables-s”开头的安装包centos 7系统 iptables替换自带firewalld防火墙

启动iptables服务并设置开机自启

# systemctl start iptables && systemctl enable iptables

centos 7系统 iptables替换自带firewalld防火墙

 

 查看状态

#systemctl status iptables

centos 7系统 iptables替换自带firewalld防火墙

 

上一篇:Linux系统:权限管理


下一篇:编译安装http2.4,实现可以正常访问,并将编译步骤和结果提交。