下面由centos系統教學專欄跟大家介紹CentOS firewalld(防火牆)指令,希望對需要的朋友有幫助!
CentOS firewalld(防火牆)指令
##1. 查看firewalld狀態
#查看firewalld服務狀態指令:
systemctl status firewalld
查看firewalld狀態指令:
firewall-cmd --state
##2. 開啟、重新啟動、關閉firewalld服務
開啟:
service firewalld start
關閉:
service firewalld stop
重啟:
service firewalld restart################################################################### ###3. 查詢、開放、關閉firewalld連接埠#########查詢全部已開放的連接埠:###
firewall-cmd --list-all############查詢某個連接埠是否開放:###
firewall-cmd --query-port=[端口]/tcp############開放連接埠:###
firewall-cmd --permanent --add-port=[端口]/tcp###關閉連接埠:###
firewall-cmd --permanent --remove-port=[端口]/tcp###刷新服務(開放、關閉連接埠操作後需刷新才能生效):###
firewall-cmd --reload############PS:報錯ModuleNotFoundError: No module named 'gi'######執行指令:sudo vim /usr/bin/firewall-cmd,開啟檔案修改第一行python為python2######更多centos相關技術文章,請造訪######centos基礎教學######欄位! ###
以上是CentOS firewalld(防火牆)指令詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!