CentOS6关闭防火墙使用以下命令,
service iptable status 查看防火墙状态
servcie iptables stop --临时关闭防火墙
chkconfig iptables off --永久关闭防火墙
开启防火墙:/etc/init.d/iptables start
CentOS7中若使用同样的命令会报错,
1、开启防火墙:systemctl start firewalld
2、看防火前状态:firewall-cmd --state
3、关闭防火墙:systemctl stop firewalld
4、关闭防火墙开机启动:systemctl disable firewalld
5、查看防火墙开机启动状态:systemctl list-unit-files|grep firewalld