- 论坛徽章:
- 0
|
以下是FORWARD链的显示
[root@SDNS ~]# iptables -L -nv
Chain INPUT (policy ACCEPT 225 packets, 21209 bytes)
pkts bytes target prot opt in out source destination
0 0 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0
Chain FORWARD (policy ACCEPT 821K packets, 44M bytes)
pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 134 packets, 19796 bytes)
pkts bytes target prot opt in out source destination
0 0 ACCEPT all -- * lo 0.0.0.0/0 0.0.0.0/0
以下是PREROUTING链的显示
[root@SDNS ~]# iptables -t nat -L -nv
Chain PREROUTING (policy ACCEPT 304 packets, 30723 bytes)
pkts bytes target prot opt in out source destination
Chain POSTROUTING (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
问题:为什么PREROUTING链不显示FORWARD的包?
是不是我哪里配置的不对?
|
|