CentOS 7 x 防火牆操作

2021-08-29 20:44:25 字數 493 閱讀 6640

永久的開放需要的埠

sudo firewall-cmd --zone=public --add-port=22/tcp --permanent

sudo firewall-cmd --reload

檢查新的防火牆規則

firewall-cmd --state

firewall-cmd --list-all

//開啟防火牆

systemctl start firewalld

//關閉防火牆

systemctl stop firewalld

//檢視防火牆狀態

systemctl status firewalld

//重啟防火牆

systemctl restart firewalld

//關閉開機啟動

systemctl disable firewalld

//開啟開機啟動

systemctl enable firewalld

Centos7 x防火牆配置

1 檢視firewall服務狀態 2 檢視firewall的狀態 firewall cmd state3 開啟 重啟 關閉 firewalld.service服務 開啟 service firewalld start 重啟 service firewalld restart 關閉 service f...

CentOS 7 X 關閉預設防火牆

centos 7.x預設使用的是firewall作為防火牆,如果你想用centos主機做乙個伺服器和其他主機互動,socket通訊什麼的,不把預設防火牆關掉是不行的。那我們來看下如何在一台新裝centos 7.x的主機關閉預設防火牆。一.關閉預設firewall systemctl stop fir...

CentOS7 x 防火牆命令總結

最近在使用linux時,總是記不住防火牆的命令。所以總結一下防火牆的命令。第一部分 開發環境下 檢視防火牆狀態 systemctl status firewalld.service 關閉防火牆命令 systemctl stop firewalld.service 檢視防火牆狀態 systemctl ...