You are viewing a single comment's thread.

view the rest of the comments →

SharpSliceOfMango ago

It works perfectly for years now. I use it on a Banana PI router to put my whole outgoing traffic through PIA VPN. I use the Netherlands and Polish VPN exit servers, they work good.

They have OpenVPN config files on their website. I use the config files with:

openvpn --daemon --mute-replay-warnings --config Netherlands.ovpn

I changed the config a little bit, deactivated compression etc

client
dev tun
proto udp
remote nl.privateinternetaccess.com 1198
resolv-retry infinite
nobind
persist-key
persist-tun
cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-nocache
auth-retry interact
auth-user-pass /home/openvpn/pialogin.conf
pull-filter ignore "auth-token"
verb 1
reneg-sec 0

<crl-verify>
... 
</crl-verify>

<ca>
...
</ca>