长期测量网络流量

长期测量网络流量

我想知道我的计算机使用了多少网络流量,即 30GB 的传输限制是否会太少。测量它的最佳工具是什么?

使用 Linux Mint 17

答案1

vnstat 是一个 CLI 选项。 vnstat 可以作为可以从 CLI 查询的守护进程运行。

apt-get install -y vnstat # install the software
vnstat -u -i eth0 # enable monitoring of eth0 by default
service vnstat restart # this may not work on Mint, I don't have a system to test with, but it does work on CentOS
vnstat -h # show per-hour breakdown of traffic for the past 24 hours

相关内容