speedtest-cli

命令行下測試服務器外網速度

補充說明

speedtest-cli 是一個使用python編寫的命令行腳本,通過調用speedtest.net測試上下行的接口來完成速度測試,最後我會測試運維生存時間所在服務器的外網速度。項目地址:https://github.com/sivel/speedtest-cli

安裝speedtest-cli

speedtest-cli需要在python 2.4-3.4的環境下,安裝方法都很簡單,自己選擇以下最適合你的一種。

pip方式

1# pip install speedtest-cli

easy_install方式

1# easy_install speedtest-cli

github+pip方式

1# pip install git+https://github.com/sivel/speedtest-cli.git

或者

1# git clone https://github.com/sivel/speedtest-cli.git
2# python speedtest-cli/setup.py install

下載腳本方式

1# wget -O speedtest-cli https://raw.github.com/sivel/spe ... er/speedtest_cli.py
2# chmod +x speedtest-cli

或者

1# curl -o speedtest-cli https://raw.github.com/sivel/spe ... er/speedtest_cli.py
2# chmod +x speedtest-cli

直接下載腳本,給予執行權限即可。

用法

1-h, --help       show this help message and exit
2--share          分享你的網速,該命令會在speedtest網站上生成網速測試結果的圖片。
3--simple         Suppress verbose output, only show basic information
4--list           根據距離顯示speedtest.net的測試服務器列表。
5--server=SERVER  指定列表中id的服務器來做測試。
6--mini=MINI      URL of the Speedtest Mini server
7--source=SOURCE  Source ip address to bind to
8--version        Show the version number and exit

實例

列出所有在中國的測試服務器:

 1[root@li229-122 ~]# speedtest-cli --list | grep China
 21185) China Unicom (Changchun, China) [10534.35 km]
 33784) China Mobile (Urumqi, China) [10581.15 km]
 42667) Beijing Normal University (Beijing, China) [11117.03 km]
 52529) Beijing Normal University (Beijing, China) [11117.03 km]
 62816) Capital Online Data service (Beijing, China) [11117.03 km]
 74354) SXmobile (Taiyuan, China) [11383.17 km]
 83973) China Telecom (Lanzhou, China) [11615.43 km]
 93633) China Telecom (Shanghai, China) [11983.37 km]
103927) China Mobile Jiangsu Co., Ltd. (Suzhou, China) [11989.27 km]
112461) China Unicom (Chengdu, China) [12213.35 km]
121028) Shepherd Software (Xiamen, China) [12785.57 km]
131628) Xiamen Guangdian Xinxu (Xiamen, China) [12785.57 km]
143891) GZinternet (Guangzhou, China) [13005.36 km]
153871) SZWCDMA (Shenzhen, China) [13059.20 km]
163819) SZU (Shenzhen, China) [13059.20 km]
171536) STC (Hong Kong, China) [13088.37 km]
181890) Telin (Hong Kong, China) [13088.37 km]

結果解釋

13633) China Telecom (Shanghai, China) [11983.37 km]
13633: 服務器id
2china telecom:isp,這裏是中國電信
3shanghai,china :服務器所在地址
411983.37 km:兩臺服務器地理位置之間距離,我這臺機器在美國,和上海相距11983.37公里,很遠吶.

外網速度測試

 1[root@li229-122 ~]# speedtest-cli --server=3633 --share
 2Retrieving speedtest.net configuration...
 3Retrieving speedtest.net server list...
 4Testing from Linode (173.255.219.122)...
 5Hosted by China Telecom (Shanghai) [11983.37 km]: 23.603 ms
 6Testing download speed........................................
 7Download: 24.84 Mbit/s
 8Testing upload speed..................................................
 9Upload: 4.57 Mbit/s
10Share results: http://www.speedtest.net/result/3240988007.png

來源:https://github.com/jaywcjlove/linux-command

最後修改於: Wednesday, January 31, 2024

相關文章:

翻譯: