Skip to content

Instantly share code, notes, and snippets.

@ksc91u
Created September 7, 2015 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksc91u/25f75afe31ea297a9360 to your computer and use it in GitHub Desktop.
Save ksc91u/25f75afe31ea297a9360 to your computer and use it in GitHub Desktop.
speed_test
#!/bin/bash
IP=`host developer.download.nvidia.com 139.175.1.1 | tail -n 1 |cut -f 4 -d " "`
FILE_PATH="mobile/tegra/l4t/r21.2.0/pm375_release_armhf/Tegra_Linux_Sample-Root-Filesystem_R21.2.0_armhf.tbz2"
/usr/bin/wget --header="Host: developer.download.nvidia.com" -Y off -O /dev/null http://$IP/$FILE_PATH 2>wget.2 1>wget.1
SPEED_SEED=`grep 100% wget.2`
echo $SPEED_SEED >> /root/speed.seednet
IP=`host developer.download.nvidia.com 168.95.1.1 | tail -n 1 |cut -f 4 -d " "`
wget --header="Host: developer.download.nvidia.com" -Y off -O /dev/null http://$IP/$FILE_PATH 2> wget.2 1> wget.1
SPEED_SEED=`grep 100% wget.2`
echo $SPEED_SEED >> /root/speed.hinet
@ksc91u
Copy link
Author

ksc91u commented Sep 7, 2015

Download from SEEDNET CDN peer, using SEEDNET VDSL

632850K .......... .......... .......... .......... .... 100% 69.9M=3m8s
632850K .......... .......... .......... .......... .... 100% 7.35M=7m35s
632850K .......... .......... .......... .......... .... 100% 49.8M=8m18s
632850K .......... .......... .......... .......... .... 100% 37.6M=3m7s
632850K .......... .......... .......... .......... .... 100% 45.5M=3m41s
632850K .......... .......... .......... .......... .... 100% 2.96M=10m14s
632850K .......... .......... .......... .......... .... 100% 3.38M=10m32s
632850K .......... .......... .......... .......... .... 100% 3.24M=10m29s
632850K .......... .......... .......... .......... .... 100% 3.03M=10m35s

@ksc91u
Copy link
Author

ksc91u commented Sep 7, 2015

Download from HINET CDN peer, using SEEDNET VDSL

632850K .......... .......... .......... .......... .... 100% 43.4M=7m17s
632850K .......... .......... .......... .......... .... 100% 6.99M=7m10s
632850K .......... .......... .......... .......... .... 100% 6.47M=2m26s
632850K .......... .......... .......... .......... .... 100% 7.19M=3m0s
632850K .......... .......... .......... .......... .... 100% 5.01M=2m30s
632850K .......... .......... .......... .......... .... 100% 3.98M=2m23s
632850K .......... .......... .......... .......... .... 100% 2.74M=2m21s
632850K .......... .......... .......... .......... .... 100% 32.7M=2m23s
632850K .......... .......... .......... .......... .... 100% 6.16M=2m20s

@ksc91u
Copy link
Author

ksc91u commented Sep 7, 2015

那一行xxx M = 的M 應該是wget 最後的速度 因為有可能斷掉又續抓 所以會有很怪的數字 可以忽略

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment