Linux基础
1 前言
一个问题,一篇文章,一出故事。
最近笔者需要实时测量网络的吞吐量,于是整理此文。
2 最佳实践
2.1 安装软件包
dnf install -y tcpdump pv
以上是类RedHat系统,如果是类Debian系统,请使用如下命令安装,
apt install -y tcpdump pv
2.2 测量实时网卡的吞吐量
tcpdump -i team0 -w - | pv -bert > /dev/null
可见如下显示,
tcpdump: listening on team0, link-type EN10MB (Ethernet), capture size 65535 bytes 1.8GiB 0:05:49 [3.08MiB/s]
需要注意的是,
– 其中“1.8GiB”是当前网卡的总流量
– 其中“3.08MiB/s”是当前网卡的实时流量
没有评论