使用简单的linux shell脚本统计网卡流量和带宽

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用简单的linux shell脚本统计网卡流量和带宽相关的知识,希望对你有一定的参考价值。

不用安装其他软件,使用linux系统本身的统计信息就可以监控网卡的流量。

#!/bin/bash

if [ -z "$1" ]; then
echo usage: $0 network-interface
echo e.g. $0 eth0
echo
echo network-interfaces:
ifconfig | grep ^[a-z] | awk -F: print $1
exit
fi

IF=$1
while true
do
R1=`cat /sys/class/net/$1/statistics/rx_bytes`
T1=`cat /sys/class/net/$1/statistics/tx_bytes`
sleep 1
R2=`cat /sys/class/net/$1/statistics/rx_bytes`
T2=`cat /sys/class/net/$1/statistics/tx_bytes`
TBPS=`expr $T2 - $T1`
RBPS=`expr $R2 - $R1`
TKBPS=`expr $TBPS / 1024`
RKBPS=`expr $RBPS / 1024`
echo "tx $1: $TKBPS kb/s rx $1: $RKBPS kb/s"
done

代码比较简单,不在进一步赘述。

以上是关于使用简单的linux shell脚本统计网卡流量和带宽的主要内容,如果未能解决你的问题,请参考以下文章

网络分析shell脚本(实时流量+连接统计)

查看Linux服务器网卡流量小脚本shell

求一个linux将监控网卡出入流量的shell脚本,每隔设定的时间输出到文本或其他地方存储

linux服务器性能(网卡流量CPU内存磁盘使用率)监控

基于dstat监控网卡流量,服务器状态简单脚本

LINUX下网卡流量持续监控查看shell脚本实践