在Linux系统中,可以使用以下命令来查看服务器防火墙状态:
firewalld
命令(适用于基于Firewalld的系统,如CentOS 7、Fedora等):sudo firewall-cmd --state
如果防火墙处于运行状态,将显示“running”。
ufw
命令(适用于基于UFW的系统,如Ubuntu、Debian等):sudo ufw status
如果防火墙处于运行状态,将显示“active”。
iptables
命令(适用于基于Iptables的系统,如旧版本的CentOS等):sudo iptables -L
这将显示防火墙规则列表。如果有规则存在,说明防火墙正在运行。
请注意,不同的Linux发行版可能使用不同的防火墙工具。根据您的系统类型选择相应的命令。