关于Selinux 见selinux
sudo sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config
sudo systemctl stop firewalld.service && systemctl disable firewalld.service
yum install 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