root@linux #iptables -L -nv
输出看起来像这样
Chain INPUT (policy ACCEPT 89658 packets, 116M bytes)
pkts bytes target prot opt in out source destination
122K 97M ACCEPT all -- * * 192.168.43.104 0.0.0.0/0
Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 70753 packets, 70M bytes)
pkts bytes target prot opt in out source destination
141K 61M ACCEPT all -- * * 0.0.0.0/0 192.168.43.104
Chain INPUT (policy ACCEPT 89658 packets, 116M bytes)
之间的关系
在那条线之下。
和Chain OUTPUT (policy ACCEPT 70753 packets, 70M bytes)
并且在线条下方。
我很困惑70753包vs 141K pkts和70M vs 61M是什么
答案 0 :(得分:0)
Chain INPUT表示您已收到多少流量 链式输出表示您的计算机发送到网络的流量。
因此到WEB页面的请求将创建传出流量(OUTPUT计数器将增加),并且在WEB服务器回复后,您将收到传入流量(INPUT计数器将增加)