Linux实时监控网卡入流量和出流量(iftop、dstat、nethogs、nload)
以下是使用iftop
、dstat
、nethogs
、nload
这四个工具来实时监控Linux网卡流量的示例代码:
- 安装
iftop
:
sudo apt-install iftop -y
- 使用
iftop
监控网卡流量:
sudo iftop
- 安装
dstat
:
sudo apt-get install dstat -y
- 使用
dstat
监控网卡流量:
dstat -tn
- 安装
nethogs
:
sudo apt-get install nethogs -y
- 使用
nethogs
监控网卡流量(需要指定网卡接口):
sudo nethogs eth0
- 安装
nload
:
sudo apt-get install nload -y
- 使用
nload
监控网卡流量:
nload
注意:请根据你的Linux发行版选择合适的包管理器安装命令,如yum
、dnf
、zypper
等,并替换eth0
为你实际使用的网卡接口名。
评论已关闭