iptables規則的檢視 新增 刪除和修改

2021-09-21 04:22:37 字數 3060 閱讀 1919

iptables規則的檢視、新增、刪除和修改

這裡只列出比較常用的引數,詳細的請檢視man iptables

1、檢視

iptables -nvl –line-number

-l 檢視當前表的所有規則,預設檢視的是filter表,如果要檢視nat表,可以加上-t nat引數

-n 不對ip位址進行反查,加上這個引數顯示速度會快很多

-v 輸出詳細資訊,包含通過該規則的資料報數量,總位元組數及相應的網路介面

–line-number 顯示規則的序列號,這個引數在刪除或修改規則時會用到

2、新增

新增規則有兩個引數:-a和-i。其中-a是新增到規則的末尾;-i可以插入到指定位置,沒有指定位置的話預設插入到規則的首部。

當前規則:

[root@test ~]# iptables -nl --line-number

chain input (policy accept)

num  target     prot opt source               destination

1    drop       all  --  192.168.1.1          0.0.0.0/0

2    drop       all  --  192.168.1.2          0.0.0.0/0

3    drop       all  --  192.168.1.4          0.0.0.0/0

新增一條規則到尾部:

[root@test ~]# iptables -a input -s 192.168.1.5 -j drop

再插入一條規則到第三行,將行數直接寫到規則鏈的後面:

[root@test ~]# iptables -i input 3 -s 192.168.1.3 -j drop

檢視:[root@test ~]# iptables -nl --line-number

chain input (policy accept)

num  target     prot opt source               destination

1    drop       all  --  192.168.1.1          0.0.0.0/0

2    drop       all  --  192.168.1.2          0.0.0.0/0

3    drop       all  --  192.168.1.3          0.0.0.0/0

4    drop       all  --  192.168.1.4          0.0.0.0/0

5    drop       all  --  192.168.1.5          0.0.0.0/0

可以看到192.168.1.3插入到第三行,而原來的第三行192.168.1.4變成了第四行。

3、刪除

刪除用-d引數

刪除之前新增的規則(iptables -a input -s 192.168.1.5 -j drop):

[root@test ~]# iptables -d input -s 192.168.1.5 -j drop

有時候要刪除的規則太長,刪除時要寫一大串,既浪費時間又容易寫錯,這時我們可以先使用–line-number找出該條規則的行號,再通過行號刪除規則。

[root@test ~]# iptables -nv --line-number

iptables v1.4.7: no command specified

try `iptables -h' or 'iptables --help' for more information.

[root@test ~]# iptables -nl --line-number

chain input (policy accept)

num  target     prot opt source               destination

1    drop       all  --  192.168.1.1          0.0.0.0/0

2    drop       all  --  192.168.1.2          0.0.0.0/0

3    drop       all  --  192.168.1.3          0.0.0.0/0

刪除第二行規則

[root@test ~]# iptables -d input 2

4、修改

修改使用-r引數

先看下當前規則:

[root@test ~]# iptables -nl --line-number

chain input (policy accept)

num  target     prot opt source               destination

1    drop       all  --  192.168.1.1          0.0.0.0/0

2    drop       all  --  192.168.1.2          0.0.0.0/0

3    drop       all  --  192.168.1.5          0.0.0.0/0

將第三條規則改為accept:

[root@test ~]# iptables -r input 3 -j accept

再檢視下:

[root@test ~]# iptables -nl --line-number

chain input (policy accept)

num  target     prot opt source               destination

1    drop       all  --  192.168.1.1          0.0.0.0/0

2    drop       all  --  192.168.1.2          0.0.0.0/0

3    accept     all  --  0.0.0.0/0            0.0.0.0/0

第三條規則的target已改為accept。

iptables檢視 新增 刪除規則

1 檢視 iptables nvl line number l 檢視當前表的所有規則,預設檢視的是filter表,如果要檢視nat表,可以加上 t nat引數 n 不對ip位址進行反查,加上這個引數顯示速度會快很多 v 輸出詳細資訊,包含通過該規則的資料報數量,總位元組數及相應的網路介面 line ...

iptables規則新增

編輯iptables.rules完後 執行 iptables restore etc iptables.rules debian系統這樣就預設開啟了防火牆規則,centos系統需要重新啟動防火牆。debian開機啟動iptables方式 vim etc network if pre up.d ipt...

iptables規則的檢視 新增 刪除和修改

這裡只列出比較常用的引數,詳細的man iptables 1 檢視 iptables nvl line number 2 新增 新增規則有兩個引數 a和 i。其中 a是新增到規則的末尾 i可以插入到指定位置,沒有指定位置的話預設插入到規則的首部 例如 當前規則 root test iptables ...