firewalld:檢視版本/幫助/狀態

刘宏缔的架构森林發表於2024-07-28

一,透過命令列檢視版本:

[root@blog ~]# firewall-cmd --version
0.6.3

二,透過rpm包檢視版本:

[root@blog ~]# rpm -q firewalld
firewalld-0.6.3-7.el8.noarch

注意切換到root使用者或加sudo再執行命令

三,檢視幫助:

[root@blog ~]# firewall-cmd --help

Usage: firewall-cmd [OPTIONS...]

General Options
  -h, --help           Prints a short help text and exists
  -V, --version        Print the version string of firewalld
  -q, --quiet          Do not print status messages 

四,檢視狀態:

[root@blog ~]# firewall-cmd --state
running

五,拒絕所有包

1.拒絕所有包

firewall-cmd --panic-on


2.取消拒絕狀態

firewall-cmd --panic-off


3.檢視是否拒絕

firewall-cmd --query-panic

相關文章