centos系统中查看,监测网卡流量的命令
作为站长,运维,及linux服务器爱好者来说,能实时了解自己服务器上网卡的流量是非常重要的。
分享三种CentOS 查看/监测网卡流量的命令,方便你更快的查看跟检测自己服务器网卡流量情况。
1.
[[email protected] ~]# watch more /proc/net/dev
最左边的表示接口的名字,Receive表示收包,Transmit表示发包;
bytes表示收发的字节数;
packets表示收发正确的包量;
errs表示收发错误的包量;
drop表示收发丢弃的包量;
2.
[[email protected] ~]# watch ifconfig
这种就相当于windows系统中的网卡的本地连接
3.
[[email protected] ~]# iptraf
这种需要自己安装
1.yum安装iptraf
yum install -y iptraf
2.执行iptraf-ng命令
3.选择Detailed interface statistics
4.选择网卡,查看流量监控
5.选择IP traffic monitor
6.选择网卡,查看ip数据包监控
完
相关文章