查看方法:
1、利用systemctl查看,该命令用于管理系统,语法为“systemctl status firewalld”;
2、用firewall查看,可以查看防火墙的默认状态,语法为“firewall-cmd --state”。
1、systemctl status firewalld
防火墙的开启、关闭、禁用命令:
- 设置开机启用防火墙:systemctl enable firewalld.service
- 设置开机禁用防火墙:systemctl disable firewalld.service
- 启动防火墙:systemctl start firewalld
- 关闭防火墙:systemctl stop firewalld
- 检查防火墙状态:systemctl status firewalld
2、firewall-cmd --state
查看默认防火墙状态(关闭后显示notrunning,开启后显示running)