Linux防火牆 Iptables 的開啟與關閉

2021-08-08 10:23:05 字數 649 閱讀 3171

在linux下想要對防火牆進行操作,就相當與對iptables進行操作,

開啟: chkconfig iptables on  

關閉: chkconfig iptables off

開啟: service iptables start  

關閉: service iptables stop

另外需要說明的是,linux是預設關閉所有的埠,如果有需要用到埠的地方,需要手動開啟。獲取遠端連線無法響應,或者ping雲端的ip可以響應,但是telnet埠,卻沒有了響應,那麼80%是因為沒有開端口。這個時候檢查2種。

1)有的伺服器廠家他會設定安全組,比如阿里雲,他們就是設定了安全組,來開啟埠,需要從頁面安全組進行設定。

2)可以通過linux上設定埠,比如

-a rh-firewall-1-input -m state --state new -p tcp -m tcp --dport 25 --syn -j accept  

-a rh-firewall-1-input -m state --state new -p tcp -m tcp --dport 110 --syn -j accept

iptable防火牆詳解

一.基本格式 1.iptable t 表 命令選項 連名 匹配條件 j 動作 2.常用命令選項如下 二.舉例 iptable t filter f 清空filter表中所有規則 iptable t filter z 清空filter表中的計數器值 iptable t filter x 清除filte...

iptable防火牆詳解

一.基本格式 1.iptable t 表 命令選項 連名 匹配條件 j 動作 2.常用命令選項如下 二.舉例 iptables t filter f 清空filter表中所有規則 iptables t filter z 清空filter表中的計數器值 iptables t filter x 清除fi...

iptable防火牆詳解

iptable防火牆詳解 一.基本格式 1.iptable t 表 命令選項 連名 匹配條件 j 動作 2.常用命令選項如下 二.舉例 iptable t filter f 清空filter表中所有規則 iptable t filter z 清空filter表中的計數器值 iptable t fil...