Answer the question
In order to leave comments, you need to log in
Analogue of speedtest.net, testing constantly
We are looking for a tool that measures the speed (like speedtest.net) not once, but periodically, say, every five minutes and keeps a log. Under web or linux.
Thanks in advance.
Answer the question
In order to leave comments, you need to log in
curl -o /usr/bin/speedtest-cli https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py
chmod +x /usr/bin/speedtest-cli
#!/bin/bash
log_file="/var/log/speedtest.log"
date >> ${log_file}
/usr/bin/speedtest-cli --simple >> ${log_file}
echo -e "\n\n" >> ${log_file}
iperf + bash wrapping as an option (requires server to install iperf counterpart)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question