Skip to main content

Posts

Showing posts from January, 2015

Use Private Internet Access (PIA) in DigitalOcean

tags: PrivateInternetAccess, Digital Ocean, VPS, VPN This runs the PIA VPN using OpenVPN all from the command line. sudo apt-get install openvpn network-manager- openvpn Not sure if you need  network-manager- openvpn . sudo wget https://www.privateinternetaccess.com/openvpn/openvpn.zip Extract. Move ca.crt and crl.pem to /etc/openvpn Move "Hong Kong.ovpn" to "/etc/openvpn/Hong Kong.config" for example. Modified the following lines. auth-user-pass /etc/openvpn/login.conf route-up /etc/openvpn/route-up.sh These are the contents of these files. # cat /etc/openvpn/login.conf username password Replace with your username and password. # cat route-up.sh  #!/bin/bash ip route flush table 100 ip route flush cache ip rule add from x.x.x.x table 100 ip route add table 100 to y.y.y.y/y dev ethX ip route add table 100 default via z.z.z.z Replace x.x.x.x with your public IP address, y.y.y.y/y with your subnet. Compute using http://