Networking
需要一些關於 iptables 附加規則的解釋
以下是我附加到表中的一些規則,
filter
我列出了與每個規則相關的添加輸出:
$iptables -A INPUT -i eth0 -j ACCEPT
輸出是:
target prot opt source destination ACCEPT all -- 0.0.0.0/0 0.0.0.0/0
第二條命令:
$iptables -A INPUT -i eth1 -j ACCEPT
INPUT 鏈的附加規則與第一個相同:
target prot opt source destination ACCEPT all -- 0.0.0.0/0 0.0.0.0/0
如您所見,我將數據包的來源從 更改
eth0
為eth1
,但我沒有看到它反映在附加的規則中。誰能解釋我的區別在哪里或如何iptables
知道第一條規則eth0
與第二條規則相關eth1
?謝謝!
當您列出表格時,請嘗試添加一個
-v
,這將為您提供數據包/字節數以及輸入和輸出介面的列。