icehacker
Occasional Visitor
Hi Guys,
Just tested this tool works great. Just wanted to share
# REF http://www.tecmint.com/check-internet-speed-from-command-line-in-linux/
# login to router via ssh
ipkg update
ipkg upgrade
ipkg install python
cd /opt
wget https://github.com/sivel/speedtest-cli/archive/master.zip
unzip master.zip
cd speedtest-cli-master/
chmod 755 speedtes*.py
mv speedtest.py /opt/bin/.
cd/
speedtest.py
# ----------------------------- OutPut Begin -----------------------------
# Retrieving speedtest.net configuration...
# Testing from <Your ISP Name> (xxx.xxx.xxx.xxx)...
# Retrieving speedtest.net server list...
# Selecting best server based on ping...
# Hosted by <Company / Site Information> (<Location Of Server>) [8.28 km]: 11.302 ms
# Testing download speed................................................................................
# Download: 23.48 Mbit/s
# Testing upload speed....................................................................................................
# Upload: 23.29 Mbit/s
# ----------------------------- OutPut End -------------------------------
# Gives a approx 99% accuracy
HTH
icehacker
Just tested this tool works great. Just wanted to share
# REF http://www.tecmint.com/check-internet-speed-from-command-line-in-linux/
# login to router via ssh
ipkg update
ipkg upgrade
ipkg install python
cd /opt
wget https://github.com/sivel/speedtest-cli/archive/master.zip
unzip master.zip
cd speedtest-cli-master/
chmod 755 speedtes*.py
mv speedtest.py /opt/bin/.
cd/
speedtest.py
# ----------------------------- OutPut Begin -----------------------------
# Retrieving speedtest.net configuration...
# Testing from <Your ISP Name> (xxx.xxx.xxx.xxx)...
# Retrieving speedtest.net server list...
# Selecting best server based on ping...
# Hosted by <Company / Site Information> (<Location Of Server>) [8.28 km]: 11.302 ms
# Testing download speed................................................................................
# Download: 23.48 Mbit/s
# Testing upload speed....................................................................................................
# Upload: 23.29 Mbit/s
# ----------------------------- OutPut End -------------------------------
# Gives a approx 99% accuracy
HTH
icehacker