CentOS 7 使用iptables防火墙
Posted Oops!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 使用iptables防火墙相关的知识,希望对你有一定的参考价值。
# 停止firewalld服务
systemctl stop firewalld
systemctl mask firewalld
# 安装iptables-services
yum install iptables-services
Enable the service at boot-time:
# 启动iptables服务
systemctl enable iptables
# 管理iptables
systemctl [stop|start|restart] iptables
# 保存规则
service iptables save 或者 /usr/libexec/iptables/iptables.init save
centos7不再使用iptables,而是使用firewalld
若不想使用firewalld,继续使用iptables,可以停掉firewalld,并且安装iptables-services包
systemctl stop firewalld
systemctl disable firewalld
yum install -y iptables-services
systemctl enable iptables
systemctl start iptables
以上是关于CentOS 7 使用iptables防火墙的主要内容,如果未能解决你的问题,请参考以下文章
CentOS 7.0关闭默认防火墙启用iptables防火墙
CentOS 7告iptables防火墙提示Unit iptables.service failed to load