本帖最后由 kashu 于 2013-7-2 09:51 编辑
源:http://blog.chinaunix.net/uid-23916356-id-2975043.html
原作者的脚本结果显示的单位和排版比较难看,而且最关键的是结果是错误的!遂,下面是我修正后的脚本内容:
脚本功能:实时显示eth0网卡的网络流量
注意:中间的sleep是1,有的人写成2……,单位就不是KB/s了,反正不知道是什么单位……
[Bash shell] 纯文本查看 复制代码 #!/bin/bash
#Corrector: kashu
#Date: 2013-06
#Description: Show the network traffic of eth0 in realtime.
NIC=eth0
while : ; do
TIME=`date "+%Y-%m-%d %H:%M:%S"`
rx_before=`ifconfig $NIC|awk '/RX b/{print $2}'|cut -d':' -f2`
tx_before=`ifconfig $NIC|awk '/TX b/{print $6}'|cut -d':' -f2`
sleep 1
rx_after=`ifconfig $NIC|awk '/RX b/{print $2}'|cut -d':' -f2`
tx_after=`ifconfig $NIC|awk '/TX b/{print $6}'|cut -d':' -f2`
rx_result=$(((rx_after-rx_before)/1024))
tx_result=$(((tx_after-tx_before)/1024))
printf "%-11s%-9s%-15s%-5s %-15s%-5s\n" \
`echo "$TIME D_Rate:$rx_result KB/s U_Rate:$tx_result KB/s"`
done
脚本测试结果:
[iyunv@kashu ~]# ./eth0_traffic.sh
2013-06-12 08:11:37 D_Rate:1 KB/s U_Rate:1 KB/s
2013-06-12 08:11:38 D_Rate:1 KB/s U_Rate:1 KB/s
2013-06-12 08:11:39 D_Rate:2 KB/s U_Rate:0 KB/s
2013-06-12 08:11:40 D_Rate:1944 KB/s U_Rate:76 KB/s
2013-06-12 08:11:41 D_Rate:2181 KB/s U_Rate:79 KB/s
2013-06-12 08:11:43 D_Rate:1722 KB/s U_Rate:59 KB/s
2013-06-12 08:11:44 D_Rate:2531 KB/s U_Rate:98 KB/s
2013-06-12 08:11:45 D_Rate:3229 KB/s U_Rate:127 KB/s
下载测试时的速度显示和脚本所显示的一致!
[iyunv@kashu ~]# wget http://download.imqq.com/?from=mainland
--2013-06-12 08:11:39-- http://download.imqq.com/?from=mainland
Resolving download.imqq.com... 124.89.30.158
Connecting to download.imqq.com|124.89.30.158|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://dl_dir.qq.com/qqfile/qq/QQ2013/QQIntl1.61.exe [following]
--2013-06-12 08:11:40-- http://dl_dir.qq.com/qqfile/qq/QQ2013/QQIntl1.61.exe
Resolving dl_dir.qq.com... 221.194.36.189, 221.194.36.191, 221.194.36.190, ...
Connecting to dl_dir.qq.com|221.194.36.189|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 41855000 (40M) [application/octet-stream]
Saving to: `QQIntl1.61.exe'
100%[=====================================================================================>] 41,855,000 1.85M/s in 22s
2013-06-12 08:12:03 (1.80 MB/s平均速度) - `QQIntl1.61.exe' saved [41855000/41855000]
|