Chinaunix首页 | 论坛 | 博客
  • 博客访问: 436357
  • 博文数量: 237
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 0
  • 用 户 组: 普通用户
  • 注册时间: 2016-06-12 14:40
个人简介

  每个人生的当口,都是会有一个孤独的时刻,四顾无人,只有自己,于是不得不看明白自己的脆弱,自己的欲望,自己的念想,自己的界限,还有,自己真正的梦想。

文章分类

全部博文(237)

文章存档

2017年(3)

2016年(234)

分类: LINUX

2016-05-11 15:40:56

下面是一个测试网卡流量的脚本,脚本内容如下:

#!/bin/bash
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@bogon 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

阅读(786) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~