centos7防火墙使用方法

Posted 风行天下-2080

tags:

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

参考网站:https://blog.csdn.net/achang21/article/details/52538049

添加开放指定端口:

[[email protected] bin]# firewall-cmd --zone=public --permanent --add-port=10051/tcp    

    命令含义:
--zone #作用域
--add-port=80/tcp #添加端口,格式为:端口/通讯协议
--permanent #永久生效,没有此参数重启后失效

防火墙重启:

[[email protected] bin]# firewall-cmd --reload

systemctl stop firewalld.service             #停止firewall
systemctl disable firewalld.service        #禁止firewall开机启动

查看防火墙列表:

[[email protected] bin]# firewall-cmd --list-all

 删除制定端口:

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

以上是关于centos7防火墙使用方法的主要内容,如果未能解决你的问题,请参考以下文章

Centos7防火墙快速开放端口配置方法

centos7防火墙开放端口等命令

Centos7 使用firewall管理防火墙

CentOS7 关闭防火墙

CentOS7 关闭防火墙

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