1樓:匿名使用者
關閉防火牆的方法為:
1. 永久性生效
開啟:chkconfig iptables on關閉:chkconfig iptables off2. 即時生效,重啟後失效
開啟:service iptables start關閉:service iptables stop需要說明的是對於 linux 下的其它服務都可以用以上命令執行開啟和關閉操作
補充:a. 防火牆還需要關閉ipv6的防火牆:
chkconfig ip6tables off並且可以通過如下命令檢視狀態:
chkconfig --list iptables
2樓:騰訊電腦管家
linux下開啟和關閉防火牆
1.及時生效,重啟後復原
關閉:service iptables stop 開啟:service iptalbes start 檢視狀態:
service iptables status(關閉狀態的話會提示firewal is not running)
2.非及時性生效,重啟後永久性生效
關閉:chkconfig iptbales off 開啟:chkconfig iptables on 檢視狀態:chkconfig iptables --list
在開啟了防火牆時,做如下設定,開啟相關埠,
修改/etc/sysconfig/iptables 檔案,新增以下內容:
-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 80 -j accept
-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 22 -j accept
linux如何關閉防火牆
3樓:匿名使用者
linux系統關閉防火牆的步驟如下:
1.首先開啟ssh軟體,按回車鍵就會提示你進行登入,輸入ip和使用者名稱進行登入。
2.執行命令:/etc/init.d/iptables status,會得到一系列資訊,說明防火牆開著。
3.執行命令:/etc/init.d/iptables stop,停止服務。
4.執行命令:chkconfig --levels 35 iptables off,關閉防火牆服務開機啟動。這樣就解決了linux系統關閉防火牆的問題了。
4樓:可靠的夢想之星
關閉防火牆,就可以外部訪問了。不受埠限制。生產環境,最好開啟防火牆,開啟部分埠。
1.永久有效
開啟: chkconfig iptables on 關閉: chkconfig iptables off
2.即刻生效
開啟: service iptables start 關閉: service iptables stop
3.開啟部分埠
vim /etc/sysconfig/iptables
新增想要開啟的相關埠
-a input -m state --state new -m tcp -p tcp --dport 6379 -j accept
-a input -m state --state new -m tcp -p tcp --dport 8080 -j accept
-a input -m state --state new -m tcp -p tcp --dport 8081 -j accept
-a input -m state --state new -m tcp -p tcp --dport 8082 -j accept
-a input -m state --state new -m tcp -p tcp --dport 3306 -j accept
service iptables restart
更多詳細linux知識可參考《linux就該這麼學》。
5樓:樂樂愛知道
1) 重啟後生效
開啟: chkconfig iptables on
關閉: chkconfig iptables off
2) 即時生效,重啟後失效
開啟: service iptables start
關閉: service iptables stop
需要說明的是對於linux下的其它服務都可以用以上命令執行開啟和關閉操作。
在開啟了防火牆時,做如下設定,開啟相關埠,
修改/etc/sysconfig/iptables 檔案,新增以下內容:
-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 80 -j accept
-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 22 -j accept
6樓:匿名使用者
1./etc/init.d/iptables stop或者service iptables stop
2.chkconfig --level 35 iptables off
3.setenforce 0
4.vim /etc/sysconfig/selinux ,修改為:selinux=disabled並且selinuxtype=disabled.盧韜旭
7樓:吉祥二進位制
linux中的防火牆有多種,一般指的iptables。
1. linux防火牆(iptables)重啟系統生效開啟: chkconfig iptables on關閉:
chkconfig iptables off2.linux防火牆(iptables) 即時生效,重啟後失效開啟: service iptables start關閉:
service iptables stop3.其它linux防火牆,請自行參考說明文件。一般對於linux下的服務都可以用以上命令執行開啟和關閉操作,而防火牆通常都以服務形式執行,因此也算是一個通用的方法。
linux系統怎麼關閉防火牆
8樓:匿名使用者
linux系統關閉防火牆的步驟如下:
1.首先開啟ssh軟體,按回車鍵就會提示你進行登入,輸入ip和使用者名稱進行登入。
2.執行命令:/etc/init.d/iptables status,會得到一系列資訊,說明防火牆開著。
3.執行命令:/etc/init.d/iptables stop,停止服務。
4.執行命令:chkconfig --levels 35 iptables off,關閉防火牆服務開機啟動。這樣就解決了linux系統關閉防火牆的問題了。
9樓:教育知識問題解答
1、使用iptables --help可以檢視幫助使用命令,非常詳細的
2、可以使用以下命令檢視iptables的狀態service iptables status
3、當然還有其他的一些引數選擇,可以使用service iptables -help幫助一下,其實就是停止的意思,直接上命令如果需要永久關閉iptables,可以使用以下命令
4、chkconfig iptables off這樣以後開機也不需要再去做設定了,永久性的關閉了
5、其實我們還有一個圖形介面操作設定防火牆哦在命令列輸入setup,敲回車
6、彈出圖形介面,選擇firewall進去進行設定即可
10樓:吉祥二進位制
linux中的防火牆有多種,一般指的iptables。
1. linux防火牆(iptables)重啟系統生效開啟: chkconfig iptables on關閉:
chkconfig iptables off2.linux防火牆(iptables) 即時生效,重啟後失效開啟: service iptables start關閉:
service iptables stop3.其它linux防火牆,請自行參考說明文件。一般對於linux下的服務都可以用以上命令執行開啟和關閉操作,而防火牆通常都以服務形式執行,因此也算是一個通用的方法。
11樓:
set enforce 0 或者 chkconfig iptables off
linux 怎麼永久關閉防火牆
12樓:倒一杯愛情的香甜
win10怎麼關閉防火牆
13樓:
) 重啟後生效
開啟: chkconfig iptables on關閉: chkconfig iptables off2) 即時生效,重啟後失效
開啟: service iptables start關閉: service iptables stop需要說明的是對於linux下的其它服務都可以用以上命令執行開啟和關閉操作
14樓:臨冬世悲涼
linux中的防火牆有多種,一般指的iptables。
1. linux防火牆(iptables)重啟系統生效開啟: chkconfig iptables on 關閉: chkconfig iptables off
2.linux防火牆(iptables) 即時生效,重啟後失效開啟: service iptables start 關閉: service iptables stop
3.其它linux防火牆,請自行參考說明文件。一般對於linux下的服務都可以用以上命令執行開啟和關閉操作,而防火牆通常都以服務形式執行,因此也算是一個通用的方法。
15樓:
chkconfig --list 檢視啟動服務,找到要關閉服務名chkconfig --level 235 服務名 off235指的就是init 2、3、5,你只關閉一個也可以
linux如何關閉防火牆
16樓:基地更是長
1) 重啟後生效
開啟: chkconfig iptables on
關閉: chkconfig iptables off
2) 即時生效,重啟後失效
開啟: service iptables start
關閉: service iptables stop
需要說明的是對於linux下的其它服務都可以用以上命令執行開啟和關閉操作。
在開啟了防火牆時,做如下設定,開啟相關埠,改/etc/sysconfig/iptables 檔案,新增以下內容:《linux就該這麼學》這本linux工具書,值得參考。
-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 80 -j accept
-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 22 -j accept
怎麼關閉防火牆,怎麼關閉防火牆
在開始 控制面板 windows防火牆裡 或者開始 控制面板 安全中心 windows防火牆 在控制面板裡,第一排,第幾個我忘記了 看了就知道 進入系統管理器,將防火牆程序結束 在程序管理裡面關.很簡單.就按1個鍵 1.開啟360安全衛士 頁面左邊 木馬防火牆,開啟關閉都是在那裡 2.點選開始選單,...
防火牆怎麼關閉,怎麼關閉防火牆
怎麼關閉防火牆 以win10為例 1 電腦開啟設定。如下圖所示 2 進入介面後點選安全和更新。如下圖所示 3 點選windows安全中心。4 點選防火牆和網路保護。5 選擇你要開啟的防火牆。6 進入介面後勾選開啟或關閉即可。如下圖所示 1 打復開設定,進入設定頁面。2 找到更新和安全,點選進入。3 ...
防火牆怎麼關,怎麼關閉防火牆
我們知道防火牆是保護電腦的第一道屏障,所以一般應用我們都推薦開啟防火牆,但有時區域網聯機等其他操作確實要關閉防火牆,否則內網容易存在衝突,無法實現內網互聯,那麼對於內網使用者來說如何關閉防火牆呢?下面就與大家分享下怎麼關閉防火牆。關閉防火牆其實也比較簡單,下面介紹2種方法輕松實現關閉防火牆。怎麼關閉防...