iptables有四张表,分别是raw,mangle,nat,filter;五张默认链:prerouting,input,output,forward,postrouting
查看规则:
- 查看filter表的INPUT链
iptables -t filter -n -L INPUT
- 查看nat表的PREROUTING链
iptables -t nat -n -L PREROUTING
- 如果需要在规则面前加上序号,则加上--line
iptables -t nat -n -L PREROUTING --line
- 如果想查看更详细的信息,加上-v参数
iptables -t nat -vn -L PREROUTING --line
20220310
<OVER>