免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1907 | 回复: 1
打印 上一主题 下一主题

[系统管理] 【已解决】路由器中如何统计单个ip地址的流量 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-07-15 10:06 |只看该作者 |倒序浏览
本帖最后由 txgc_wm 于 2013-07-15 10:49 编辑
  1. $ sudo iptables -F
  2. $ sudo iptables -L
  3. Chain INPUT (policy ACCEPT)
  4. target     prot opt source               destination         

  5. Chain FORWARD (policy ACCEPT)
  6. target     prot opt source               destination         

  7. Chain OUTPUT (policy ACCEPT)
  8. target     prot opt source               destination         
  9. $ sudo iptables -I INPUT -d 192.168.1.100
  10. $ sudo iptables -L
  11. Chain INPUT (policy ACCEPT)
  12. target     prot opt source               destination         
  13.            all  --  anywhere             txgcwm.local        

  14. Chain FORWARD (policy ACCEPT)
  15. target     prot opt source               destination         

  16. Chain OUTPUT (policy ACCEPT)
  17. target     prot opt source               destination         
  18. $ sudo iptables -nvx -L
  19. Chain INPUT (policy ACCEPT 28 packets, 1803 bytes)
  20.     pkts      bytes target     prot opt in     out     source               destination         
  21.        6      383            all  --  *      *       0.0.0.0/0            192.168.1.100      

  22. Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
  23.     pkts      bytes target     prot opt in     out     source               destination         

  24. Chain OUTPUT (policy ACCEPT 51 packets, 5132 bytes)
  25.     pkts      bytes target     prot opt in     out     source               destination
复制代码
在PC端使用以上的设置有包和字节数的计数,如下:
  1.     pkts      bytes target     prot opt in     out     source               destination         
  2.        6      383            all  --  *      *       0.0.0.0/0            192.168.1.100   
复制代码
在路由器中使用相同的设置却不能计数,这是为什么?路由器中如何统计某一个ip地址的流量?

论坛徽章:
0
2 [报告]
发表于 2013-07-15 10:51 |只看该作者
在网上找到了设置的一种方法,能够统计流量,作如下设置:
  1. $ iptables -I FORWARD -s 192.168.1.100 -j ACCEPT
  2. $ iptables -I FORWARD -d 192.168.1.100 -j ACCEPT
复制代码
查看其流量:
  1. # iptables -nvx -L
  2. Chain INPUT (policy DROP 115 packets, 15878 bytes)
  3.     pkts      bytes target     prot opt in     out     source               destination         
  4.     2887   291743 ACCEPT     all  --  *      *       0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED
  5.        0        0 DROP       tcp  --  eth1   *       0.0.0.0/0            172.30.31.107       tcp dpt:80
  6.        0        0 ACCEPT     udp  --  eth1   *       0.0.0.0/0            0.0.0.0/0           udp dpt:68
  7.        0        0 DROP       icmp --  eth1   *       0.0.0.0/0            172.30.31.107       icmp type 8
  8.        0        0 ACCEPT     2    --  eth1   *       0.0.0.0/0            0.0.0.0/0           
  9.     2167   127046 ACCEPT     all  --  br0    *       0.0.0.0/0            0.0.0.0/0           
  10.        0        0 ACCEPT     all  --  lo     *       0.0.0.0/0            0.0.0.0/0           

  11. Chain FORWARD (policy DROP 0 packets, 0 bytes)
  12.     pkts      bytes target     prot opt in     out     source               destination         
  13.     1691  1116807 ACCEPT     all  --  *      *       0.0.0.0/0            192.168.1.100      
  14.     1835   380824 ACCEPT     all  --  *      *       192.168.1.100        0.0.0.0/0           
  15.     2233   131496 TCPMSS     tcp  --  *      *       0.0.0.0/0            0.0.0.0/0           tcp flags:0x06/0x02 TCPMSS clamp to PMTU
  16.        0        0 ACCEPT     udp  --  *      *       0.0.0.0/0            0.0.0.0/0           udp spt:1701
  17.        0        0 ACCEPT     udp  --  *      *       0.0.0.0/0            0.0.0.0/0           udp dpt:1701
  18.        0        0 ACCEPT     tcp  --  *      *       0.0.0.0/0            0.0.0.0/0           tcp dpt:1723
  19.        0        0 ACCEPT     tcp  --  *      *       0.0.0.0/0            0.0.0.0/0           tcp spt:1723
  20.        0        0 ACCEPT     47   --  *      *       0.0.0.0/0            0.0.0.0/0           
  21.        0        0 ACCEPT     udp  --  eth1   *       0.0.0.0/0            224.0.0.0/4         udp
  22.    12903  2242279 ACCEPT     all  --  br0    *       0.0.0.0/0            0.0.0.0/0           
  23.        0        0 ACCEPT     udp  --  eth1   br0     0.0.0.0/0            0.0.0.0/0           udp dpt:500
  24.        0        0 ACCEPT     udp  --  eth1   *       0.0.0.0/0            224.0.0.0/4         udp
  25.        0        0 ACCEPT     esp  --  eth1   br0     0.0.0.0/0            0.0.0.0/0           
  26.    13092 10655061 ACCEPT     all  --  eth1   *       0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED

  27. Chain OUTPUT (policy ACCEPT 4413 packets, 2452299 bytes)
  28.     pkts      bytes target     prot opt in     out     source               destination
复制代码
以下的一小部分即是我所需要的信息:
  1. Chain FORWARD (policy DROP 0 packets, 0 bytes)
  2.     pkts      bytes target     prot opt in     out     source               destination         
  3.     1691  1116807 ACCEPT     all  --  *      *       0.0.0.0/0            192.168.1.100      
  4.     1835   380824 ACCEPT     all  --  *      *       192.168.1.100        0.0.0.0/0
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP