Speedtest是用來測試網(wǎng)絡(luò)性能的開源軟件,在Linux下面安裝Speedtest可以用來測試網(wǎng)絡(luò)出口的上傳和下載速度,幫助排查網(wǎng)絡(luò)方面導(dǎo)致的故障。

Speedtest介紹
由于公司幾個(gè)項(xiàng)目用戶訪問的時(shí)候響應(yīng)較慢,項(xiàng)目本身沒問題,服務(wù)及調(diào)用的接口返回信息都比較正常,猜想是網(wǎng)絡(luò)方面造成的瓶頸,導(dǎo)致用戶請求的時(shí)候網(wǎng)絡(luò)響應(yīng)堵塞,拉長了響應(yīng)時(shí)間。
Speedtest.net是比較廣泛的用來測試寬帶速度的網(wǎng)站,Speedtest.net的工作原理并不復(fù)雜:它在你的瀏覽器中加載JavaScript代碼并自動檢測離你最近的Speedtest.net服務(wù)器,然后向服務(wù)器發(fā)送HTTP GET and POST請求來測試上行/下行網(wǎng)速。
但在沒有圖形化桌面時(shí)(例如,當(dāng)你通過命令行遠(yuǎn)程登陸服務(wù)器或使用沒有圖形界面的操作系統(tǒng)),基于flash、界面友好的Speedtest.net將無法工作。幸運(yùn)的是,Speedtest.net提供了一個(gè)命令行版本——speedtest-cli。下面我將向你演示如何在Linux的命令行中使用speedtest-cli來測試寬帶連接速度。
安裝speedtest-cli
Github鏈接:https://github.com/sivel/speedtest-cli
Speendtest.net官網(wǎng):http://www.speedtest.net/
測試本機(jī)所在網(wǎng)絡(luò)出口的帶寬,訪問Speendtest.net,點(diǎn)擊首頁的Begin開始測試,等待幾秒,查看測試結(jié)果:

pip安裝
speedtest是用python寫的,沒使用過pip的需要先安裝pip,
pip安裝:https://pip.pypa.io/en/stable/installing/
#開啟epel源
yum install python-pip –y
安裝speedtest-cli
pip install speedtest-cli
安裝完成測試
which speedtest-cli | bash –

github安裝
pip install git+https://github.com/sivel/speedtest-cli.git
或者
git clone https://github.com/sivel/speedtest-cli.git
python speedtest-cli/setup.py install
shell安裝
wget -O speedtest-cli https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest_cli.py
chmod +x speedtest-cli
./speedtest-cli
speedtest-cli使用
speedtest-cli –h
/usr/bin/speedtest-cli –share
/usr/bin/speedtest-cli –list

