centos 7 配置iptables
环境:阿里云ECS、centos 7
一、防火墙配置
查看防火墙状态: systemctl status firewalld.service
绿的running表示防火墙开启
执行关闭命令: systemctl stop firewalld.service
再次执行查看防火墙命令:systemctl status firewalld.service
执行开机禁用防火墙自启命令 : systemctl disable firewalld.service
————————————————————————————————————————————————
关于防火墙的其他命令:
启动:systemctl start firewalld.service
防火墙随系统开启启动 : systemctl enable firewalld.service
————————————————————————————————————————————————
检测并安装iptables
1 yum install iptables-services
将规则写入iptables配置文件
1 vi /etc/sysconfig/iptables
1 iptables文件内容:
systemctl restart iptables.service
systemctl enable iptables.service
二、关闭SELINUX
vim /etc/selinux/config
#注释以下配置
SELINUX=enforcing
SELINUXTYPE=targeted
#增加以下配置
SELINUX=disabled
#保存退出
:wq!
#使配置立即生效
setenforce 0