教程集 www.jiaochengji.com
教程集 >  脚本编程  >  shell  >  正文 一个测试网卡流量的shell脚本

一个测试网卡流量的shell脚本

发布时间:2014-11-17   编辑:jiaochengji.com
用shell脚本测试网卡的流量,简单而方便,这里为大家提供一段shell脚本,通过读取/proc/net/dev/中的数据来监测网卡流量。有需要的朋友参考下。

测试网卡流量的shell脚本:
 

复制代码 代码示例:

#!/bin/bash
#filename:monitor_interface.sh
function usage
{
   echo "use ./test_net.sh ethX time"
   echo "$1 is you network interface "
   echo "$2 is the last time!"
   echo "for example: ./test_net.sh eth0 2"
   exit 100
}

if [ $# -lt 2 -o $# -gt 2 ];then
  usage
fi

eth=$1
time=$2

old_inbw=`cat /proc/net/dev | grep $eth | awk -F'[: ]+' '{print $3}'`
old_outbw=`cat /proc/net/dev | grep $eth | awk -F'[: ]+' '{print $11}'`

while true
do
  sleep $time
  new_inbw=`cat /proc/net/dev | grep $eth | awk -F'[: ]+' '{print $3}'`
  new_outbw=`cat /proc/net/dev | grep $eth | awk -F'[: ]+' '{print $11}'`
  inbw=`expr $((($new_inbw-$old_inbw)/$time))`
  outbw=`expr $((($new_outbw-$old_outbw)/$time))`
  echo "$eth: IN:$inbw bytes  OUT:$outbw bytes"
  old_inbw=${new_inbw}
  old_outbw=${new_outbw}
done
exit 0

调用示例:
 

复制代码 代码示例:
[root@jbxue shell]# ./test_net.sh  eth0 2
eth0: IN:3097 bytes  OUT:50374 bytes
eth0: IN:3158 bytes  OUT:44202 bytes
eth0: IN:2587 bytes  OUT:58932 bytes
eth0: IN:2104 bytes  OUT:51543 bytes


您可能感兴趣的文章:
一个测试网卡流量的shell脚本
计算网卡流量的shell脚本(代码分享)
检测网卡流量的shell脚本
linux shell 监控网卡流量的脚本(入门参考)
监控网卡流量的shell脚本分享
统计网卡流量的二个shell脚本(ifconfig)(图文)
监测内存使用量、剩余量及网卡流量的shell脚本
shell脚本计算Linux网卡流量
实时监测vps主机流量的shell脚本
ifconfig统计网卡流量的shell脚本

关键词: linux shell  shell  网卡流量   
[关闭]
~ ~