Script downloaded from ossguy to test bandwidth.
This commit is contained in:
parent
e284a1b644
commit
3ddc23d135
2 changed files with 33 additions and 0 deletions
18
Bandwidth-Testing/hosts
Normal file
18
Bandwidth-Testing/hosts
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
1222.ath.cx
|
||||||
|
64.15.152.44
|
||||||
|
apinc.org
|
||||||
|
astoria36.dyndns.org
|
||||||
|
bbc.co.uk
|
||||||
|
cityofperth.wa.gov.au
|
||||||
|
durban.kzn.org.za
|
||||||
|
dyzchyd.dyndns.org
|
||||||
|
fsf.org
|
||||||
|
mirror.cc.columbia.edu
|
||||||
|
oaks.barrettara.com
|
||||||
|
ossguy.com
|
||||||
|
apache2-rank.blade.dreamhost.com
|
||||||
|
blade.dreamhost.com
|
||||||
|
pocketmatrix.com
|
||||||
|
polarmobile.com
|
||||||
|
taurine.csclub.uwaterloo.ca
|
||||||
|
ubc.ca
|
15
Bandwidth-Testing/ping_trace_all.sh
Executable file
15
Bandwidth-Testing/ping_trace_all.sh
Executable file
|
@ -0,0 +1,15 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# Written by Denver Gingerich, downloaded from:
|
||||||
|
# wget http://ossguy.com/bandwidth/ping_trace_all.sh
|
||||||
|
# Denver told me:
|
||||||
|
# <denver> and I license it to you CC0
|
||||||
|
|
||||||
|
for host in `cat ../bin/hosts`
|
||||||
|
do
|
||||||
|
echo tracepath $host...
|
||||||
|
echo \$ tracepath $host > tracepath_$host
|
||||||
|
tracepath $host >> tracepath_$host
|
||||||
|
echo ping $host...
|
||||||
|
echo \$ ping -c10 $host > ping_$host
|
||||||
|
ping -c10 $host >> ping_$host
|
||||||
|
done
|
Loading…
Add table
Reference in a new issue