快速业务通道

Linux读取网卡流量脚本

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-03-23

此脚本是在linux中读取网卡每秒钟的实时流量.

创建脚本net.sh 复制一下脚本内容到文件中,保存. Chmod x net.sh 赋予执行权限. 运行 ./net.sh etch0 Eth0是所要监控的网卡. 代码内容如下: #!/bin/bash #eval `date " day=%d; month=%m; year=%Y; hour=%H; minute=%M second=%S"` #INSTFIL="$year-$month-$day $hour:$minute:$second" #INSTFIL1="$year-$month-$day" #INSTFIL2="$hour:$minute" #INSTFIL3="$month-$day" #INSTFIL4="$hour:$minute:$second" R2=`cat /sys/class/net/$1/statistics/rx_bytes` T2=`cat /sys/class/net/$1/statistics/tx_bytes` NUM=100000 if [ -z "$1" ]; then echo echo usage: $0 network-interface echo echo e.g. $0 eth0 echo 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` TBPS=`expr $T1 - $T2` RBPS=`expr $R1 - $R2` TKBPS=`expr $TBPS / 100` RKBPS=`expr $RBPS / 100` RKBPS1=`echo "scale=3; $RBPS/$NUM"|bc` eval `date " day=%d; month=%m; year=%Y; hour=%H; minute=%M second=%S"` INSTFIL4="$hour:$minute:$second" echo "$INSTFIL4 tx $1: $TKBPS KB/ rx $RKBPS kb/s 0$RKBPS1 bits/s" R2=`cat /sys/class/net/$1/statistics/rx_bytes` T2=`cat /sys/class/net/$1/statistics/tx_bytes` sleep 1s done

本文出自 “随风奔跑-运维” 博客,请务必保留此出处http://lzf8989.blog.51cto.com/697220/756812

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号