linux防火牆相關操作

2021-08-19 03:31:40 字數 659 閱讀 1264

關閉防火牆:systemctl stop firewalld.service        或者        service firewalld stop

開啟防火牆:systemctl start firewalld

重啟防火牆:firewall-cmd --reload(重新載入配置,在新增規則之後,需要執行此命令)

禁止防火牆開機啟動:systemctl disable firewalld.service

設定防火牆開機啟動:systemctl enable firewalld.service

檢視已經開放的埠號: firewall-cmd --list-ports

檢視防火牆狀態:firewall-cmd --state

永久新增埠號:firewall-cmd --zone=public(作用域) --add-port=80/tcp(埠和訪問型別) --permanent(永久生效)

**************新增埠號後需要重啟防火牆****************

firewall-cmd --zone=public --add-port=8080/tcp --permanent

檢視埠開放情況:

netstat -nupl (udp型別的埠)

netstat -ntpl (tcp型別的埠)

linux防火牆相關操作

關閉 iptables f 重啟防火牆 service iptables restart 編輯防火牆 vi etc sysconfig iptables 閘道器允許埠通過指令 a rh firewall 1 input m state state new m tcp p tcp dport 3306...

防火牆相關操作

1 防火牆相關操作 centos7中firewall cmd tab命令時總是not running,系統其它命令是可以正常tab的啊 以為是核心版本的問題,公升級核心和系統還是無效.幾經折騰原來是firewalld服務沒有開,這個服務系統沒有自動開啟讓人有點意外.centos7中啟用firewal...

linux防火牆相關

linux 防火牆 selinux設定 sestatus v 檢視selinux執行狀態 semanage fcontext a t httpd sys content t home deploy share portal 設定目錄許可權 nginx403錯誤 restorecon rv home ...