CentOS 防火墙常用命令

Posted z_lb

tags:

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

1.查看防火墙状态:

firewall-cmd --state 

2.启动防火墙

systemctl start firewalld

3.关闭防火墙

systemctl stop firewalld

4.检查防火墙开放的端口

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

5.开放一个新的端口

firewall-cmd --zone=public --add-port=8080/tcp --permanent

6.重启防火墙

firewall-cmd --reload

7.验证新增加端口是否生效

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

8.防火墙开机自启动

systemctl enable firewalld.service

9.防火墙取消某一开放端口

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

以上是关于CentOS 防火墙常用命令的主要内容,如果未能解决你的问题,请参考以下文章

Linux CentOS 7防火墙常用命令汇总

CentOS 防火墙常用命令

CentOS 防火墙常用命令

CentOS7 Firewall防火墙常用命令

centos6&7 常用系统防火墙命令

CentOS7 firewall-cmd防火墙常用命令