快速业务通道

北京某机房网速测试

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-27
最近几天一直忙着做北京某机房多线,三线和双线的网速测试.

crontab -e
*/30 * * * * /bin/bash /root/wirespeed/test-wirespeed.sh
每半小时取一次值.

主要采用ping和wget的值来判断网速的优良.当然了traceroute也是很重要的参考项.

#!/bin/bash
#For testing the wirespeed of BJxxx
#Levin.

trap ''echo;exit 0'' 2 15

test_port=''1.2.3.2-->武汉电信 ###举例用的伪ip
12.2.2.22-->温州电信
5.6.3.2-->深圳电信
30.19.1.5-->宁波电信
1.1.2.5-->青岛网通
8.8.5.9-->哈尔滨网通
1.15.11.8-->北京网通
''
time=`date %F--%T`
packets=200

mkdir -p /root/wirespeed/datas/

cd /root/wirespeed/datas/

for i in $test_port;do

ip=`echo $i|awk -F''-->'' ''{print $1}''`
name=`echo $i|awk -F''-->'' ''{print $2}''`
echo "###### signlevin $time ######" >>speed.log.$time
echo "-----> levin-sign $ip $name <----- " >>speed.log.$time
ping -w $packets $ip >>speed.log.$time
wget http://$ip/ceshi 2>>speed.log.$time
echo -e "/n/n" >>speed.log.$time
done

egrep ''levin-sign'' speed.log.$time |awk ''{print $3" "$4}'' >1

egrep ''packet'' speed.log.$time |awk ''{print $6}'' >2

egrep ''rtt'' speed.log.$time |awk -F''= '' ''{print $2}''|awk -F''/'' ''{print $1" "$2" "$3}''>3

egrep ''saved'' speed.log.$time |awk -F''('' ''{print $2}''|awk -F'')'' ''{print $1}'' >4

sed ''s/ //'' 4 >5

paste 1 2 3 5|awk ''{printf "%-16s %-16s %-16s %-16s %-16s %-16s %-16sn",$1,$2,$3,$4,$5,$6,$7}''>result.log.$time

rm -f ceshi* 1 2 3 4 5
cat result.log.2009-12-18--10:00:01
1.2.3.2 武汉电信 0% 18.274 25.647 56.231 700KB/s
12.2.2.22 温州电信 2% 38.695 54.259 102.885 663KB/s
5.6.3.2 深圳电信 1% 39.096 49.529 89.068 364KB/s
30.19.1.5 宁波电信 1% 34.076 47.669 92.153 627KB/s
1.1.2.5 青岛网通 0% 10.043 17.313 34.967 2.70MB/s
8.8.5.9 哈尔滨网通 0% 16.236 23.168 48.117 2.20MB/s
1.15.11.8 北京网通 0% 1.555 1.987 5.869 6.69MB/s

用一条命令把产生的形如result.log.2009-12-18--10:00:01的文件内容汇总:

for i in result.log.*;do echo $i |awk -F. ''{print $NF}''>>results.log;cat $i >>results.log;echo "" >>results.log;done

然后贴在excel中整理一下就可以了.


凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站: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号