Merge pull request #1398 from haugene/feature/fetch-pia-configs-on-startup
Fetch PIA configs on startup - change to nextgen servers
This commit is contained in:
@@ -1,6 +1,12 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo "Modify chosen OpenVPN config for best behaviour in this container"
|
if [ "$#" -ne 1 ]; then
|
||||||
|
echo "Illegal number of parameters"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
CONFIG=$1
|
||||||
|
|
||||||
|
[[ "${DEBUG}" == "true" ]] && echo "Modifying $CONFIG for best behaviour in this container"
|
||||||
|
|
||||||
# Every config modification have its own environemnt variable that can configure the behaviour.
|
# Every config modification have its own environemnt variable that can configure the behaviour.
|
||||||
# Different users, providers or host systems might have specific preferences.
|
# Different users, providers or host systems might have specific preferences.
|
||||||
@@ -11,6 +17,6 @@ CONFIG_MOD_USERPASS=${CONFIG_MOD_USERPASS:-"1"}
|
|||||||
|
|
||||||
## Option 1 - Change the auth-user-pass line to point to credentials file
|
## Option 1 - Change the auth-user-pass line to point to credentials file
|
||||||
if [[ $CONFIG_MOD_USERPASS == "1" ]]; then
|
if [[ $CONFIG_MOD_USERPASS == "1" ]]; then
|
||||||
echo "Point auth-user-pass option to the username/password file"
|
[[ "${DEBUG}" == "true" ]] && echo "Point auth-user-pass option to the username/password file"
|
||||||
sed -i "s/auth-user-pass/auth-user-pass \/config\/openvpn-credentials.txt/" "$CHOSEN_OPENVPN_CONFIG"
|
sed -i "s/auth-user-pass/auth-user-pass \/config\/openvpn-credentials.txt/" "$CONFIG"
|
||||||
fi
|
fi
|
||||||
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote au-melbourne.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote au-perth.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote au-sydney.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote austria.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote belgium.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote brazil.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote ca-montreal.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote ca-toronto.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote ca-vancouver.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote czech.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote de-berlin.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote de-frankfurt.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote denmark.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote fi.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote hungary.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote in.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote ireland.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote israel.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote italy.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote japan.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote mexico.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
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-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote nz.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote no.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote poland.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote ro.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote sg.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote spain.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote sweden.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote swiss.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote turkey.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote uk-london.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote uk-manchester.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote uk-southampton.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-atlanta.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-california.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-chicago.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-dal.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-east.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-florida.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-houston.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-lasvegas.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-midwest.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-nyc.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-sea.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-siliconvalley.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-washingtondc.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote us-west.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 /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,33 +0,0 @@
|
|||||||
-----BEGIN CERTIFICATE-----
|
|
||||||
MIIFqzCCBJOgAwIBAgIJAKZ7D5Yv87qDMA0GCSqGSIb3DQEBDQUAMIHoMQswCQYD
|
|
||||||
VQQGEwJVUzELMAkGA1UECBMCQ0ExEzARBgNVBAcTCkxvc0FuZ2VsZXMxIDAeBgNV
|
|
||||||
BAoTF1ByaXZhdGUgSW50ZXJuZXQgQWNjZXNzMSAwHgYDVQQLExdQcml2YXRlIElu
|
|
||||||
dGVybmV0IEFjY2VzczEgMB4GA1UEAxMXUHJpdmF0ZSBJbnRlcm5ldCBBY2Nlc3Mx
|
|
||||||
IDAeBgNVBCkTF1ByaXZhdGUgSW50ZXJuZXQgQWNjZXNzMS8wLQYJKoZIhvcNAQkB
|
|
||||||
FiBzZWN1cmVAcHJpdmF0ZWludGVybmV0YWNjZXNzLmNvbTAeFw0xNDA0MTcxNzM1
|
|
||||||
MThaFw0zNDA0MTIxNzM1MThaMIHoMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0Ex
|
|
||||||
EzARBgNVBAcTCkxvc0FuZ2VsZXMxIDAeBgNVBAoTF1ByaXZhdGUgSW50ZXJuZXQg
|
|
||||||
QWNjZXNzMSAwHgYDVQQLExdQcml2YXRlIEludGVybmV0IEFjY2VzczEgMB4GA1UE
|
|
||||||
AxMXUHJpdmF0ZSBJbnRlcm5ldCBBY2Nlc3MxIDAeBgNVBCkTF1ByaXZhdGUgSW50
|
|
||||||
ZXJuZXQgQWNjZXNzMS8wLQYJKoZIhvcNAQkBFiBzZWN1cmVAcHJpdmF0ZWludGVy
|
|
||||||
bmV0YWNjZXNzLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPXD
|
|
||||||
L1L9tX6DGf36liA7UBTy5I869z0UVo3lImfOs/GSiFKPtInlesP65577nd7UNzzX
|
|
||||||
lH/P/CnFPdBWlLp5ze3HRBCc/Avgr5CdMRkEsySL5GHBZsx6w2cayQ2EcRhVTwWp
|
|
||||||
cdldeNO+pPr9rIgPrtXqT4SWViTQRBeGM8CDxAyTopTsobjSiYZCF9Ta1gunl0G/
|
|
||||||
8Vfp+SXfYCC+ZzWvP+L1pFhPRqzQQ8k+wMZIovObK1s+nlwPaLyayzw9a8sUnvWB
|
|
||||||
/5rGPdIYnQWPgoNlLN9HpSmsAcw2z8DXI9pIxbr74cb3/HSfuYGOLkRqrOk6h4RC
|
|
||||||
OfuWoTrZup1uEOn+fw8CAwEAAaOCAVQwggFQMB0GA1UdDgQWBBQv63nQ/pJAt5tL
|
|
||||||
y8VJcbHe22ZOsjCCAR8GA1UdIwSCARYwggESgBQv63nQ/pJAt5tLy8VJcbHe22ZO
|
|
||||||
sqGB7qSB6zCB6DELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRMwEQYDVQQHEwpM
|
|
||||||
b3NBbmdlbGVzMSAwHgYDVQQKExdQcml2YXRlIEludGVybmV0IEFjY2VzczEgMB4G
|
|
||||||
A1UECxMXUHJpdmF0ZSBJbnRlcm5ldCBBY2Nlc3MxIDAeBgNVBAMTF1ByaXZhdGUg
|
|
||||||
SW50ZXJuZXQgQWNjZXNzMSAwHgYDVQQpExdQcml2YXRlIEludGVybmV0IEFjY2Vz
|
|
||||||
czEvMC0GCSqGSIb3DQEJARYgc2VjdXJlQHByaXZhdGVpbnRlcm5ldGFjY2Vzcy5j
|
|
||||||
b22CCQCmew+WL/O6gzAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBDQUAA4IBAQAn
|
|
||||||
a5PgrtxfwTumD4+3/SYvwoD66cB8IcK//h1mCzAduU8KgUXocLx7QgJWo9lnZ8xU
|
|
||||||
ryXvWab2usg4fqk7FPi00bED4f4qVQFVfGfPZIH9QQ7/48bPM9RyfzImZWUCenK3
|
|
||||||
7pdw4Bvgoys2rHLHbGen7f28knT2j/cbMxd78tQc20TIObGjo8+ISTRclSTRBtyC
|
|
||||||
GohseKYpTS9himFERpUgNtefvYHbn70mIOzfOJFTVqfrptf9jXa9N8Mpy3ayfodz
|
|
||||||
1wiqdteqFXkTYoSDctgKMiZ6GdocK9nMroQipIQtpnwd4yBDWIyC6Bvlkrq5TQUt
|
|
||||||
YDQ8z9v+DMO6iwyIDRiU
|
|
||||||
-----END CERTIFICATE-----
|
|
34
openvpn/pia/configure-openvpn.sh
Executable file
34
openvpn/pia/configure-openvpn.sh
Executable file
@@ -0,0 +1,34 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# These are the possible bundles from PIA
|
||||||
|
# https://www.privateinternetaccess.com/openvpn/openvpn-nextgen.zip
|
||||||
|
# https://www.privateinternetaccess.com/openvpn/openvpn-strong-nextgen.zip
|
||||||
|
# https://www.privateinternetaccess.com/openvpn/openvpn-ip-nextgen.zip
|
||||||
|
# https://www.privateinternetaccess.com/openvpn/openvpn-tcp-nextgen.zip
|
||||||
|
# https://www.privateinternetaccess.com/openvpn/openvpn-strong-tcp-nextgen.zip
|
||||||
|
|
||||||
|
baseURL="https://www.privateinternetaccess.com/openvpn"
|
||||||
|
PIA_OPENVPN_CONFIG_BUNDLE=${PIA_OPENVPN_CONFIG_BUNDLE:-"openvpn-nextgen"}
|
||||||
|
|
||||||
|
if [ -z "$VPN_PROVIDER_HOME" ]; then
|
||||||
|
echo "ERROR: Need to have VPN_PROVIDER_HOME set to call this script" && exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Delete all files for PIA provider, except scripts
|
||||||
|
find "$VPN_PROVIDER_HOME" -type f ! -name "*.sh" -delete
|
||||||
|
|
||||||
|
# Download and extract wanted bundle into temporary file
|
||||||
|
tmp_file=$(mktemp)
|
||||||
|
echo "Downloading OpenVPN config bundle $PIA_OPENVPN_CONFIG_BUNDLE into temporary file $tmp_file"
|
||||||
|
curl -sSL "${baseURL}/${PIA_OPENVPN_CONFIG_BUNDLE}.zip" -o "$tmp_file"
|
||||||
|
|
||||||
|
echo "Extract OpenVPN config bundle into PIA directory $VPN_PROVIDER_HOME"
|
||||||
|
unzip -qjo "$tmp_file" -d "$VPN_PROVIDER_HOME"
|
||||||
|
|
||||||
|
echo "Modify configs for this container"
|
||||||
|
find "$VPN_PROVIDER_HOME" -type f -name "*.ovpn" -exec /etc/openvpn/modify-openvpn-config.sh {} \;
|
||||||
|
|
||||||
|
# Select a random server as default.ovpn
|
||||||
|
ln -sf "$(find "$VPN_PROVIDER_HOME" -name "*.ovpn" | shuf -n 1)" "$VPN_PROVIDER_HOME"/default.ovpn
|
@@ -1,15 +0,0 @@
|
|||||||
-----BEGIN X509 CRL-----
|
|
||||||
MIICWDCCAUAwDQYJKoZIhvcNAQENBQAwgegxCzAJBgNVBAYTAlVTMQswCQYDVQQI
|
|
||||||
EwJDQTETMBEGA1UEBxMKTG9zQW5nZWxlczEgMB4GA1UEChMXUHJpdmF0ZSBJbnRl
|
|
||||||
cm5ldCBBY2Nlc3MxIDAeBgNVBAsTF1ByaXZhdGUgSW50ZXJuZXQgQWNjZXNzMSAw
|
|
||||||
HgYDVQQDExdQcml2YXRlIEludGVybmV0IEFjY2VzczEgMB4GA1UEKRMXUHJpdmF0
|
|
||||||
ZSBJbnRlcm5ldCBBY2Nlc3MxLzAtBgkqhkiG9w0BCQEWIHNlY3VyZUBwcml2YXRl
|
|
||||||
aW50ZXJuZXRhY2Nlc3MuY29tFw0xNjA3MDgxOTAwNDZaFw0zNjA3MDMxOTAwNDZa
|
|
||||||
MCYwEQIBARcMMTYwNzA4MTkwMDQ2MBECAQYXDDE2MDcwODE5MDA0NjANBgkqhkiG
|
|
||||||
9w0BAQ0FAAOCAQEAQZo9X97ci8EcPYu/uK2HB152OZbeZCINmYyluLDOdcSvg6B5
|
|
||||||
jI+ffKN3laDvczsG6CxmY3jNyc79XVpEYUnq4rT3FfveW1+Ralf+Vf38HdpwB8EW
|
|
||||||
B4hZlQ205+21CALLvZvR8HcPxC9KEnev1mU46wkTiov0EKc+EdRxkj5yMgv0V2Re
|
|
||||||
ze7AP+NQ9ykvDScH4eYCsmufNpIjBLhpLE2cuZZXBLcPhuRzVoU3l7A9lvzG9mjA
|
|
||||||
5YijHJGHNjlWFqyrn1CfYS6koa4TGEPngBoAziWRbDGdhEgJABHrpoaFYaL61zqy
|
|
||||||
MR6jC0K2ps9qyZAN74LEBedEfK7tBOzWMwr58A==
|
|
||||||
-----END X509 CRL-----
|
|
@@ -1 +0,0 @@
|
|||||||
CA Toronto.ovpn
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 168.1.99.208 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 137.59.252.166 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 185.216.34.236 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 77.243.191.19 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 177.154.139.203 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 199.229.249.142 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 172.98.67.60 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 172.83.40.26 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 185.242.6.28 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 193.176.86.166 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 185.220.70.165 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 82.102.20.180 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 192.40.95.18 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 185.128.25.158 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 185.128.26.20 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 138.128.180.74 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 23.92.127.42 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 31.168.172.145 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 82.102.21.215 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 103.208.220.138 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 169.57.0.233 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 109.201.154.140 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 103.231.90.172 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 82.102.27.54 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 185.244.214.199 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 185.210.218.99 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 216.185.103.160 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 194.99.104.28 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 46.246.123.2 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 82.102.24.163 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 176.53.21.213 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 89.238.154.233 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 89.238.139.8 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 31.24.226.231 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 66.115.168.14 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 91.207.175.38 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 104.200.153.81 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 193.37.253.228 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 193.37.252.41 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 205.251.148.58 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 162.251.236.5 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 104.207.136.29 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 156.146.54.117 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 212.102.47.134 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 199.116.118.154 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
@@ -1,20 +0,0 @@
|
|||||||
client
|
|
||||||
dev tun
|
|
||||||
proto udp
|
|
||||||
remote 162.216.46.18 1198
|
|
||||||
resolv-retry infinite
|
|
||||||
nobind
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
cipher aes-128-cbc
|
|
||||||
auth sha1
|
|
||||||
tls-client
|
|
||||||
remote-cert-tls server
|
|
||||||
|
|
||||||
auth-user-pass /config/openvpn-credentials.txt
|
|
||||||
comp-lzo
|
|
||||||
verb 1
|
|
||||||
reneg-sec 0
|
|
||||||
crl-verify /etc/openvpn/pia/ip/crl.rsa.2048.pem
|
|
||||||
ca /etc/openvpn/pia/ip/ca.rsa.2048.crt
|
|
||||||
disable-occ
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user