1. 程式人生 > >Linux關閉防火牆指令(包括永久關閉)

Linux關閉防火牆指令(包括永久關閉)

檢視防火牆狀態:

service iptables status

這裡寫圖片描述

即時生效,重啟後復原

service iptables start  開
service iptables stop   關

永久性生效,重啟後不會復原

chkconfig iptables on
chkconfig iptables off

執行狀態下永遠關閉並可以立即使用不用重啟的指令是下面兩條的組合使用:

service iptables stop
chkconfig iptables off