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

 

相关文章:

  • 2021-05-16
  • 2021-12-05
  • 2021-12-06
  • 2022-12-23
  • 2021-07-20
猜你喜欢
  • 2021-11-11
  • 2022-12-23
  • 2022-02-22
  • 2022-01-28
  • 2021-12-26
  • 2021-07-02
  • 2021-06-29
相关资源
相似解决方案