centos 7 firewall configure

关闭SELinux

关于Selinux 见selinux

sudo sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config

Firewalld 防火墙的关闭

sudo systemctl stop firewalld.service && systemctl disable firewalld.service

切换成UFW 防火墙

 yum install ufw 

UFW 的开启 与 关闭

ufw enable 
ufw disable

或者这样的指令:

 systemctl enable ufw 

这条指令 在 /lib/systemd/system/目录下产生一个链接,并且允许开机启动,

真正开启ufw需要采用这个指令,使之成为后台任务

systemctl start ufw
systemctl disable ufw

这个指令使之不受systemd管理,开机不再自启动

同样的,有类似

systemctl stop ufw
systemctl status ufw
systemctl stop ufw.service