Linux開啟 關閉 重啟防火牆等命令

2021-10-06 14:43:39 字數 833 閱讀 8940

1.首先檢視防火牆狀態

[root@localhost

~]# firewall-cmd --state

not running

2.開啟防火牆

[root@localhost

~]# systemctl start firewalld

3.關閉防火牆

[root@localhost

~]#systemctl stop firewalld

4.重啟防火牆

[root@localhost

~]# systemctl restart firewalld

5.設定防火牆開機自啟

[root@localhost

~]# systemctl enable firewalld

6.設定開放埠

[root@localhost

~]# firewall-cmd --add-port=

8080

/tcp --permanent

7.檢視已經開放的埠

[root@localhost

~]# firewall-cmd --list-port

8.設定開機禁止啟動

[root@localhost

~]# systemctl disable firewalld.service

後續繼續更新!!!!

記錄學習~

Linux防火牆關閉開啟

今日在linux測試環境上裝了乙個tomcat,在windows本機上訪問無果 在linux 192.168.10.97 機器上,執行wget 能夠正常獲取資料。於是斷定是防火牆開啟了。於是查詢linux防火牆關閉的方法 檢視防火牆狀態 chkconfig iptables list 1 重啟後生效...

Linux關閉 重啟防火牆命令

外部經常因防火牆問題無法訪問linux中的埠,就需要放通ip或徹底關閉防火牆 檢視防火狀態 systemctl status firewalld service iptables status暫時關閉防火牆 systemctl stop firewalld service iptables stop...

Linux 防火牆開啟和關閉 埠設定等

1 檢視firewall服務狀態 systemctl status firewalld 出現active active running 切高亮顯示則表示是啟動狀態。出現 active inactive dead 灰色表示停止,看單詞也行。2 檢視firewall的狀態 firewall cmd st...