centos7 FirewallD is not running
时间: 2023-12-06 11:38:54 浏览: 105
Linux防火墙-firewalld
5星 · 资源好评率100%
要检查CentOS 7上的FirewallD是否正在运行,可以使用以下命令:
```shell
systemctl status firewalld
```
如果FirewallD未运行,则可以使用以下命令启动它:
```shell
systemctl start firewalld
```
如果您想在系统启动时启用FirewallD,请使用以下命令:
```shell
systemctl enable firewalld
```
如果您想停止FirewallD,请使用以下命令:
```shell
systemctl stop firewalld
```
如果您想禁用FirewallD,请使用以下命令:
```shell
systemctl disable firewalld
```
阅读全文