OpenVPN low connection
Hello,
I installed OpenVPN on an Ubuntu virtual machine and the connection is very slow in the VPN.
I changed the location of my VPN and I have the same result. I have done several tests in torrent or direct download and it does not change anything.
I am trying to download the file with VPN:
Test without the VNP:
Here is my OpenVPN configuration:
I installed OpenVPN on an Ubuntu virtual machine and the connection is very slow in the VPN.
I changed the location of my VPN and I have the same result. I have done several tests in torrent or direct download and it does not change anything.
I am trying to download the file with VPN:
[email protected]:~ # sudo -u vpn wget -O /dev/null http://speedtest.wdc01.softlayer.com/downloads/test1000.zip
sudo: unable to resolve host down-torrent
--2018-06-18 18:10:39-- http://speedtest.wdc01.softlayer.com/downloads/test1000.zip
Resolving speedtest.wdc01.softlayer.com (speedtest.wdc01.softlayer.com)... 208.43.102.250, 2607:f0d0:3001:78::2
Connecting to speedtest.wdc01.softlayer.com (speedtest.wdc01.softlayer.com)|208.43.102.250|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1073741824 (1.0G) [application/zip]
Saving to: ‘/dev/null’
/dev/null 100%[=====================================================================================================================>] 1.00G 1.50MB/s in 3m 13s
2018-06-18 18:13:57 (5.31 MB/s) - ‘/dev/null’ saved [1073741824/1073741824]
Test without the VNP:
[email protected]:~ # wget -O /dev/null http://speedtest.wdc01.softlayer.com/downloads/test1000.zip
--2018-06-18 18:16:29-- http://speedtest.wdc01.softlayer.com/downloads/test1000.zip
Resolving speedtest.wdc01.softlayer.com (speedtest.wdc01.softlayer.com)... 208.43.102.250, 2607:f0d0:3001:78::2
Connecting to speedtest.wdc01.softlayer.com (speedtest.wdc01.softlayer.com)|208.43.102.250|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1073741824 (1.0G) [application/zip]
Saving to: ‘/dev/null’
/dev/null 100%[=====================================================================================================================>] 1.00G 34.4MB/s in 31s
2018-06-18 18:17:00 (32.7 MB/s) - ‘/dev/null’ saved [1073741824/1073741824]
Here is my OpenVPN configuration:
client
dev tun
proto udp
remote france.privateinternetaccess.com 1198
resolv-retry infinite
nobind
persist-key
persist-tun
cipher AES-128-CBC
auth SHA1
tls-client
remote-cert-tls server
auth-user-pass /etc/openvpn/login.txt
comp-lzo
verb 1
reneg-sec 0
crl-verify /etc/openvpn/crl.rsa.2048.pem
ca /etc/openvpn/ca.rsa.2048.crt
disable-occ
auth-nocache
script-security 2
route-noexec
mssfix 1300
tun-mtu 1500
#up and down scripts to be executed when VPN starts or stops
up /etc/openvpn/iptables.sh
down /etc/openvpn/update-resolv-conf
Comments