赞
踩
用centos7会发现,用以前的方式查看、打开和关闭防火墙都无效了。这是因为centos7的防火墙改用firewalld,而不再使用iptables了。
1、先是看centos7的防火墙的状态,查看的命令为:
sudo systemctl status firewalld.service或者sudo systemctl status firewalld或者systemctl status firewalld
2、启动防火墙,命令为:
sudo systemctl start firewalld.service(同样三种命令都可以)
但是这样启动后,关闭重启系统后还是后恢复至原来的情况,并没有生效,也就是说这种启动时临时的。
可以使用命令:systemctl entable firewalld
再重启reboot,发现开启防火墙已经生效。
3、对应的有关闭防火墙
systemctl stop firewalld 及 systemctl disable firewalld
4、总结一下:
查看防火墙的状态的命令为:systemctl status firewalld(其它两种方式也可以)。
打开防火墙的方式有两种,一种是打开后重启会恢复回原来的状态,命令为:systemctl start firewalld;
另一种是打开后重启不会恢复到原来的状态,命令为:sudo systemctl enable firewalld,这种方式输入命令后要重启系统才会生效。
关闭防火墙的方式也有两种,和打开相对应,命令分别为
systemctl stop firewalld
systemctl disable firewalld。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。