linux 關閉 禁用 防火牆

2021-07-03 08:04:13 字數 574 閱讀 3206

要關閉linux的防火牆,在system->administration->firewall and selinux下,選擇firewall的disable,確定後,再查,卻發現,仍然是enable。

上網查了一些辦法:

1)      重啟後生效:

開啟: chkconfig iptables on

關閉: chkconfig iptables off

2)      即時生效,重啟後失效:

開啟: service iptables start

關閉: service iptables stop

或者:/etc/init.d/iptables status 會得到一系列資訊,說明防火牆開著。

/etc/rc.d/init.d/iptables stop 關閉防火牆

或者:為了下次啟動不啟動防火牆,你必須刪除/etc/sysconfig/iptables。

但是都沒有用。

最後:在根使用者下輸入setup,進入乙個圖形介面,選擇firewall configuration,進入下一介面,選擇security level為disabled,儲存。重啟即可。

禁用防火牆

建立乙個自定義列表 如何建立乙個註腳 注釋也是必不可少的 katex數學公式 新的甘特圖功能,豐富你的文章 uml 圖表 flowchart流程圖 匯出與匯入 帶尺寸的 居中的 居中並且帶尺寸的 當然,我們為了讓使用者更加便捷,我們增加了拖拽功能。去部落格設定頁面,選擇一款你喜歡的 片高亮樣式,下面...

Linux 關閉防火牆

centos 6 中防火牆預設是 iptables,而 centos 7 中防火牆預設是 firewall。a 檢視防火牆狀態 service iptable statusb 臨時關閉防火牆 臨時關閉防火牆 servcie iptables stop 臨時啟動防火牆 service iptables...

Linux 關閉防火牆

一.linux下開啟 關閉防火牆命令 1 永久性生效,重啟後不會復原開啟 chkconfig iptables on關閉 chkconfig iptables off 2 即時生效,重啟後復原開啟 service iptables start關閉 service iptables stop 需要說明...