centos 查看iptables 状态
时间: 2023-08-12 07:22:05 浏览: 210
CentOS 7的iptables服务.docx
要查看 CentOS 系统中 iptables 的状态可以使用以下命令:
```
sudo systemctl status iptables
```
该命令会显示 iptables 的运行状态。如果 iptables 已经启动,那么输出应该会类似这样:
```
● iptables.service - IPv4 firewall with iptables
Loaded: loaded (/usr/lib/systemd/system/iptables.service; enabled; vendor preset: enabled)
Active: active (exited) since Tue 2021-09-21 09:57:38 UTC; 5h 35min ago
Main PID: 454 (code=exited, status=0/SUCCESS)
CGroup: /system.slice/iptables.service
Sep 21 09:57:38 centos7 systemd[1]: Starting IPv4 firewall with iptables...
Sep 21 09:57:38 centos7 systemd[1]: Started IPv4 firewall with iptables.
```
如果 iptables 没有启动,那么输出应该会显示如下信息:
```
● iptables.service - IPv4 firewall with iptables
Loaded: loaded (/usr/lib/systemd/system/iptables.service; enabled; vendor preset: enabled)
Active: inactive (dead)
```
如果你想查看更详细的 iptables 配置,可以使用以下命令:
```
sudo iptables -L -n -v
```
该命令会输出详细的 iptables 配置信息,包括各条规则的详细配置。
阅读全文