Skip to content

Instantly share code, notes, and snippets.

@n8kowald
Created November 24, 2015 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n8kowald/0bca2e13a17fe4ab761f to your computer and use it in GitHub Desktop.
Save n8kowald/0bca2e13a17fe4ab761f to your computer and use it in GitHub Desktop.
Test the speed between you and a server
#!/bin/bash
# scp-speed-test.sh
# Author: Alec Jacobson alecjacobsonATgmailDOTcom
#
# Test ssh connection speed by uploading and then downloading a 10000kB test
# file (optionally user-specified size)
#
# Usage:
# ./scp-speed-test.sh user@hostname [test file size in kBs]
#
ssh_server=$1
test_file=".scp-test-file"
# Optional: user specified test file size in kBs
if test -z "$2"
then
# default size is 10kB ~ 10mB
test_size="10000"
else
test_size=$2
fi
# generate a 10000kB file of all zeros
echo "Generating $test_size kB test file..."
`dd if=/dev/zero of=$test_file bs=$(echo "$test_size*1024" | bc) \
count=1 &> /dev/null`
# upload test
echo "Testing upload to $ssh_server..."
up_speed=`scp -v $test_file $ssh_server:$test_file 2>&1 | \
grep "Bytes per second" | \
sed "s/^[^0-9]*\([0-9.]*\)[^0-9]*\([0-9.]*\).*$/\1/g"`
up_speed=`echo "($up_speed*0.0009765625*100.0+0.5)/1*0.01" | bc`
# download test
echo "Testing download to $ssh_server..."
down_speed=`scp -v $ssh_server:$test_file $test_file 2>&1 | \
grep "Bytes per second" | \
sed "s/^[^0-9]*\([0-9.]*\)[^0-9]*\([0-9.]*\).*$/\2/g"`
down_speed=`echo "($down_speed*0.0009765625*100.0+0.5)/1*0.01" | bc`
# clean up
echo "Removing test file on $ssh_server..."
`ssh $ssh_server "rm $test_file"`
echo "Removing test file locally..."
`rm $test_file`
# print result
#echo ""
#echo "Upload speed: $up_speed kB/s"
#echo "Download speed: $down_speed kB/s"
up_megabytes_ps=$(echo "scale=0; $up_speed/1000" | bc)
down_megabytes_ps=$(echo "scale=0; $down_speed/1000" | bc)
up_megabits_ps=$(echo "scale=0; $up_speed/125" | bc)
down_megabits_ps=$(echo "scale=0; $down_speed/125" | bc)
echo ""
echo "Upload speed: $up_megabytes_ps MB/s"
echo "Download speed: $down_megabytes_ps MB/s"
echo "Upload speed: $up_megabits_ps Mbps"
echo "Download speed: $down_megabits_ps Mbps"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment