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

2022/1/31 7:08:07

本文主要是介绍centos 7系统 iptables替换自带firewalld防火墙,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

查看firewalld防火墙状态

# systemctl status firewalld

active(runing)代表运行

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

# systemctl stop firewalld && systemctl disable firewalld

 

 检查firewalld防护墙状态

# systemctl status firewalld

  如图所示,已经关闭

安装iptables-services服务

# yum install iptables-services  #此处可以使用 yum install -y  iptables-s* 来查询以“iptables-s”开头的安装包

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

# systemctl start iptables && systemctl enable iptables

 

 查看状态

#systemctl status iptables

 



这篇关于centos 7系统 iptables替换自带firewalld防火墙的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程