Written by James McDonald

October 9, 2019

Awaiting a speed increase on you Internet connection but it’s not there yet?

Want to know within an hour when the speed increase happens?

Create a crontab entry

crontab -e

With this content

MAILTO=""
0 * * * * /Users/username/sites/speedtest/speedtest.sh >> /Users/username/sites/speedtest/output.log 2>&1

Install speedtest-cli

brew install speedtest-cli
# for parsing the json output
brew install jq

Create a script that calculates the Mbps value and set a LOWER value to send an email at in this case

#!/bin/sh
PATH=/usr/local/bin:/usr/local/sbin:~/bin:/usr/bin:/bin:/usr/sbin:/sbin

BITS=`speedtest-cli --no-upload --json | jq '.download'`
MBITS=1000000
CALC=`echo $BITS / $MBITS | bc`
# lowest Mbps value you will accept as the speed increasing
LOWER=4

if [ "$CALC" -gt "$LOWER" ]
then
	echo "The internet speed has risen to $CALC Mbps" | mail -s "Internet SpeedTest" [email protected]
	echo `date` "Yas"
else
	echo `date` "MBITS = $CALC"

fi

2 Comments

  1. lonni j friedman

    How are you controlling which speedtest server the test is run against? In my experience, results vary, often significantly, based on the server that is used for the test.

    Reply
    • James McDonald

      In short i’m not. Australia doesn’t have too many options on the east coast so it will be Sydney or Melbourne. And given the choke point is my internet connection I wasn’t overly worried

      Reply

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Squarespace Image Export

To gain continued access to your Squarespace website images after cancelling your subscription you have several...

MySQL 8.x GRANT ALL STATEMENT

-- CREATE CREATE USER 'tgnrestoreuser'@'localhost' IDENTIFIED BY 'AppleSauceLoveBird2024'; GRANT ALL PRIVILEGES ON...

Exetel Opt-Out of CGNAT

If your port forwards and inbound and/or outbound site-to-site VPN's have failed when switching to Exetel due to their...