CentOS7使用firewalld打开关闭防火墙与端口

Posted 答案

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7使用firewalld打开关闭防火墙与端口相关的知识,希望对你有一定的参考价值。

firewalld的基本使用

启动

systemctl start firewalld

停止

 systemctl disable firewalld

禁用

systemctl stop firewalld

查看状态

systemctl status firewalld 

配置firewalld-cmd

查看版本

firewall-cmd --version

查看帮助

firewall-cmd --help

显示状态

firewall-cmd --state

查看所有打开的端口

firewall-cmd --zone=public --list-ports

更新防火墙规则

 firewall-cmd --reload

查看区域信息

firewall-cmd --get-active-zones

查看指定接口所属区域

firewall-cmd --get-zone-of-interface=eth0

拒绝所有包

firewall-cmd --panic-on

取消拒绝状态

 firewall-cmd --panic-off

查看是否拒绝

 firewall-cmd --query-panic
 

开启端口实例

添加

firewall-cmd --zone=public --add-port=80/tcp --permanent    (--permanent永久生效,没有此参数重启后失效)

平滑重启

firewall-cmd --reload

查看

firewall-cmd --zone=public --query-port=80/tcp

删除

firewall-cmd --zone=public --remove-port=80/tcp --permanent

 

以上是关于CentOS7使用firewalld打开关闭防火墙与端口的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7使用firewalld打开关闭防火墙与端口

CentOS7使用firewalld打开关闭防火墙与端口

CentOS7使用firewalld打开关闭防火墙与端口

centos7使用firewalld打开关闭防火墙和端口

CentOS7使用firewalld打开关闭防火墙与端口

CentOS7使用firewalld打开关闭防火墙与端口