centos7如何查看firewall防火墙状态?systemctl status firewalld.service 如果您在操作上述命令后看到绿色字样标记的“active(running)“,说明防火墙处于开启状态,今天小编就来说说centos7如何检查防火墙的状态。让我们来看看下面更详细的答案。
centos7如何检查防火墙的状态:
centos7防火墙检查防火墙状态
systemctl status firewalld.service
如果您在操作上述命令后看到绿色字样标记的“active(running)说明防火墙处于开启状态。
centos7开启防火墙
systemctl start firewalld.service
centos7关闭防火墙
systemctl stop firewalld.service
当disavtive显示时,可以检查防火墙的状态(dead)说明CentOS的字样 7.防火墙已关闭。但需要注意的是,上述命令仅暂时关闭Centos 7.重启操作系统后,防火墙服务将重新启动。如果要永久关闭防火墙,还需要禁止防火墙服务。
centos7禁用防火墙服务
systemctl disable firewalld.service
centos7检查防火墙规则
firewall-cmd –list-all
centos7查询端口是否开放
firewall-cmd –query-port=8080/tcp
centos7重启防火墙
firewall-cmd –reload
开放指定(如8080)端口
firewall-cmd –permanent –add-port=8080/tcp
(配置修改后需要重新启动防火墙)
拆除防火墙打开的端口
firewall-cmd –permanent –remove-port=8080/tcp
(配置修改后需要重新启动防火墙)
参数解释:firewall-cmd: 是Linux提供的操作firewall工具;–permanent:表示设置为持久;–add-port:表示添加的端口。