一、首先检查某端口是否开启:

firewall-cmd --query-port=80/tcp --zone=public  #查询80端口是否开启,自行修改端口号
	
返回no即未开启,显示yes为已开启。

二、开启某端口代码

firewall-cmd --zone=public --add-port=80/tcp --permanent #添加80端口,如需添加其他端口,自行修改端口号
	
修改完成后需要重启服务器才能生效。

三、如果出现FirewallD is not running

在这里插入图片描述

1.查看防火墙状态

systemctl status firewalld

有如下提示表示未开启:

在这里插入图片描述

2.开启防火墙,没有任何提示即开启成功

systemctl start firewalld

3.再次查看防火墙状态

systemctl status firewalld

有如下提示表示已经开启成功
在这里插入图片描述
4.关闭防火墙

systemctl stop firewalld

转载自https://blog.csdn.net/qq_41054313/article/details/89813104

GitHub 加速计划 / li / linux-dash
10
2
下载
A beautiful web dashboard for Linux
最近提交(Master分支:12 天前 )
186a802e added ecosystem file for PM2 5 年前
5def40a3 Add host customization support for the NodeJS version 5 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐