监控网卡流量的shell脚本分享

发布时间:2020-04-27编辑:脚本学堂
本文介绍下,用于监测网卡流量的一段shell脚本,有需要的朋友参考下。

本节分享的这段shell/ target=_blank class=infotextkey>shell脚本,用于实现监控网卡的流量与速率。

代码如下:
 

复制代码 代码示例:

#!/bin/bash
#监测网卡流量
#edit by www.jb200.com

if [ -n "$1" ]; then
eth_name=$1
else
eth_name="eth0"
fi
i=0
send_o=`ifconfig $eth_name | grep bytes | linuxjishu/13830.html target=_blank class=infotextkey>awk '{print $6}' | awk -F : '{print $2}'`
recv_o=`ifconfig $eth_name | grep bytes | awk '{print $2}' | awk -F : '{print $2}'`
send_n=$send_o
recv_n=$recv_o
while [ $i -le 100000 ]; do
send_l=$send_n
recv_l=$recv_n
sleep 1
send_n=`ifconfig $eth_name | grep bytes | awk '{print $6}' | awk -F : '{print $2}'`
recv_n=`ifconfig $eth_name | grep bytes | awk '{print $2}' | awk -F : '{print $2}'`
i=`expr $i + 1`
send_r=`expr $send_n - $send_l`
recv_r=`expr $recv_n - $recv_l`
total_r=`expr $send_r + $recv_r`
send_ra=`expr ( $send_n - $send_o ) / $i`
recv_ra=`expr ( $recv_n - $recv_o ) / $i`
total_ra=`expr $send_ra + $recv_ra`
sendn=`ifconfig $eth_name | grep bytes | awk -F ( '{print $3}' | awk -F ) '{print $1}'`
recvn=`ifconfig $eth_name | grep bytes | awk -F ( '{print $2}' | awk -F ) '{print $1}'`
clear
echo "Last second : Send rate: $send_r Bytes/sec Recv rate: $recv_r Bytes/sec Total rate: $total_r Bytes/sec"
echo "Average value: Send rate: $send_ra Bytes/sec Recv rate: $recv_ra Bytes/sec Total rate: $total_ra Bytes/sec"
echo "Total traffic after startup: Send traffic: $sendn Recv traffic: $recvn"
done

默认是eth0,可带网卡名运行,例如:
 

复制代码 代码示例:
caltraffic bon1

您可能感兴趣的文章:
一个测试网卡流量的shell脚本
统计网卡流量的二个shell脚本(ifconfig)(图文)
linux下监控网卡流量的shell脚本(实例分享)(图文)
实时查看Linux网卡流量的shell脚本分享(图文)
检测网卡流量的shell脚本
实时监测vps主机流量的shell脚本
ifconfig统计网卡流量的shell脚本
使用awk统计网卡最大流量及单位换算的问题
使用shell监控网络的实时流量