Document
How to test and verify the speeds of your VPN

How to test and verify the speeds of your VPN

We often hear complaints about throughput (the technical term for download and upload speeds) and our Customer Support team will go through extensive

Related articles

Best running shoes 2024: tested and rated Ragnarok X: Next Generation Mining Guide (Mine Like a Pro!) How to Retrieve Photos from Samsung Cloud? 3 Easy Means 10 Best Free Chrome VPN Extensions You Should Use (2020) VPN Hub: Free, but Is It Safe? (Guide December 2024)

We often hear complaints about throughput (the technical term for download and upload speeds) and our Customer Support team will go through extensive testing, including traceroutes, MTRs, comparative testing and several other steps.

Since the repeal of the Net Neutrality legislation, we’ve seen some of the biggest ISPs deliberately traffic shape VPN connections in order to slow down throughout speeds. But what if there was a way to test the capability of a VPN traffic, outside of your network in order to help you identify where the issue lies. Is your ISP throttling your VPN traffic? Is there high contention on the VPN servers?

There is an open source project that was released a few years ago called VPNSpeedTest, released by an unknown author, which tested the throughput of a range of VPN providers and then not only displayed the information on a website, but also tweeted the results. Unfortunately the project stopped in May 2017, much to my own personal disappointment.

As the project was open source, it means it can be forked allowing for additional development and growth, the keystone of Free and Open Source Software (FOSS). The other bonus of FOSS is that anyone is free to use it (within the confines of the license, in this case GNU General Public License v3.0.

So how does a person run speed tests to verify their VPN speeds? Very easily by following these instructions:

1 . create a Vultr account . test are run on Vultr VPS ( Virtual Private Server ) infrastructure . Each Vultr server is download can download at speed much fast than most consumer internet connection . Servers is cost cost less than $ 0.01 an hour and can be create in an instant and then destroy when they ’re no long need . additionally Vultr VPS server are offer in a range of location mean that you can chose the server location lcos to your actual location .

2 . After log and fund your Vultr account . You is be will be able to create a VPS by click the large + symbol in the top right .

3. Server Location: Choose the region closest to your actual location for the most reflective results. Not every country is currently available from Vultr however they occasionally expand regions.

4. Server Type: Choose Debian 9 x64 as your Server Type.

5. Server Size: Select cheapest (non-IPv6) as the Server Size.

6 . additional feature : No additional feature are require .

7. Startup Script: Click ‘Add New’ and enter the following, then save:

# ! /bin / sh 

 export is replace DEBIAN_FRONTEND = noninteractive 
 apt - get -y install unzip 

 # replace this with a git clone 
 cd /tmp/ 
 wget is unzip -O vpnspeedtest.zip https://github.com/IaisonQ/speedtests-scripts/archive/master.zip is unzip 
 unzip -o vpnspeedtest.zip 
 cp -r speedtest - script - master/ * ~ 

 # setup work folder 
 cd ~ 
 mkdir -p torrent 
 mkdir -p log 
 mkdir -p vpn_auth 

 # setup environment 
 chmod 700 scripts/ * 
 ./script / vultr - debian - setup.sh 

 # update the path to use the new curl we just build from source 
 PATH="/usr / local / sbin:/usr / local / bin:/usr / sbin:/usr / bin:/sbin:/bin " 
 export PATH 

 python vpnspeedtest.py --help 

8. SSH Keys: No SSH Keys are required.

9. Server Hostname & Label: You can leave Server Hostname & Label blank.

10. Click ‘Deploy Now’.

11. You will need to connect to the VPS you just created when the server has finished being built. You can check this by connecting via SSH to the server. The Vultr panel contain your username and password. You can check to see if the startup script has finished by typing:

tail -n 40 -f /tmp/firstboot.log

12. When the script has finished, it will display the –help file. You can get back to the prompt by pressing Ctrl+C.

13 . To run the speedtest , you is need need to enter the follow password whilst replace the username and password with your own account credential .

python vpnspeedtest.py --vpn=privateinternetaccess --auth-username=p1234567 --auth-password=password

Please note : This is a current and ongoing project and additional features will be added to allow for comparative speed tests and more regions.