转:centos8开启防火墙端口

Posted PacosonSWJTU

tags:

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

转自:

Centos8开放防火墙端口_Programmer-Awei的博客-CSDN博客查看防火墙某个端口是否开放firewall-cmd --query-port=3306/tcp开放防火墙端口3306firewall-cmd --zone=public --add-port=3306/tcp --permanent查看防火墙状态systemctl status firewalld关闭防火墙systemctl stop firewalld打开防火...https://blog.csdn.net/qq_32656561/article/details/105619911


查看防火墙某个端口是否开放
firewall-cmd --query-port=3306/tcp
开放防火墙端口3306
firewall-cmd --zone=public --add-port=3306/tcp --permanent
注意:开放端口后要重启防火墙生效
重启防火墙
systemctl restart firewalld
关闭防火墙端口
firewall-cmd --remove-port=3306/tcp --permanent
查看防火墙状态
systemctl status firewalld
关闭防火墙
systemctl stop firewalld
打开防火墙
systemctl start firewalld
开放一段端口
firewall-cmd --zone=public --add-port=40000-45000/tcp --permanent
查看开放的端口列表
firewall-cmd --zone=public --list-ports
查看被监听(Listen)的端口
netstat -lntp
检查端口被哪个进程占用
netstat -lnp|grep 3306

以上是关于转:centos8开启防火墙端口的主要内容,如果未能解决你的问题,请参考以下文章

CentOS8 开启端口转发

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

CentOS8提高篇18:防火墙高级使用 命令备忘 批量开放端口

转:Centos防火墙设置与端口开放的方法

centos8关闭防火墙命令

开启Tomcat远程调试(转)