Linux防火牆iptables開放網路埠的方法

2021-09-30 11:27:02 字數 883 閱讀 8131

linux防火牆iptables開放網路埠的方法

-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 22 -j accept

-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 8080 -j accept

……2. 重啟iptalbes服務:/etc/init.d/iptables restart

注:新開了一台伺服器,伺服器預設防火牆大概是關閉的,沒有進行任何配置,所有的埠全部暴露在外,感覺很不安全。

執行# /etc/init.d/iptables status進行檢視,發現防火牆果然沒有執行。

執行以下命令開啟防火牆:# /etc/init.d/iptables start,但提示執行失敗。進入目錄/etc/init.d檢視,發現檔案iptables不存在。

然後從本地虛擬機器的centos6.5的相同目錄下照抄了乙份iptalbes:

然後再次執行相同命令,這次提示防火牆執行成功。

測試了一下,現在除了22埠,其他埠都被禁用了。防火牆起作用了!

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...