码迷,mamicode.com
首页 > 系统相关 > 详细

linux下使用iptables统计ip/端口流量

时间:2017-05-26 15:58:39      阅读:490      评论:0      收藏:0      [点我收藏+]

标签:nat   pre   tables   des   nbsp   iptables   示例   统计信息   put   

1.添加ip/端口的流量统计

   入网流量:

iptables -A INPUT -d 0.0.0.0 -p tcp --dport 8087

 出网流量:

iptables -A OUTPUT -s 172.12.5.25 -p tcp --sport 8283

2.查看流量统计信息

iptables -L -v -n -x

 结果示例:

Chain INPUT (policy ACCEPT 29059 packets, 7794993 bytes)
    pkts      bytes target     prot opt in     out     source               destination
     327    17894            tcp  --  *      *       0.0.0.0/0            0.0.0.0/0           tcp dpt:8087

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

Chain OUTPUT (policy ACCEPT 29511 packets, 8006178 bytes)
    pkts      bytes target     prot opt in     out     source               destination

 

3.删除统计

iptables -D INPUT -d 0.0.0.0 -p tcp --dport 8087

 

linux下使用iptables统计ip/端口流量

标签:nat   pre   tables   des   nbsp   iptables   示例   统计信息   put   

原文地址:http://www.cnblogs.com/aviatorjeremy/p/6908658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!