Merge pull request #549 from BorysekOndrej/master

Updating ReadMe (regions support port forwarding) and PIA configs
This commit is contained in:
Kristian Haugene
2018-07-18 23:27:27 +02:00
committed by GitHub
254 changed files with 1949 additions and 209 deletions

View File

@@ -16,7 +16,7 @@ An example run command to get you going is provided below.
Also worth mentioning.
If you want to route web traffic through the same tunnel that Transmission is using there
is a pre-installed Tinyproxy which will expose a proxy on port 8888 when enabled.
And if you're using PIA as provider it will update Transmission hourly with assigned open port.
And if you're using PIA as provider it will update Transmission hourly with assigned open port (if the port forwarding feature is available in the selected region).
GL HF! And if you run into problems, please check the README twice and maybe try the gitter chat before opening an issue :)
@@ -45,7 +45,7 @@ $ docker run --cap-add=NET_ADMIN --device=/dev/net/tun -d \
-v /your/storage/path/:/data \
-v /etc/localtime:/etc/localtime:ro \
-e OPENVPN_PROVIDER=PIA \
-e OPENVPN_CONFIG=Netherlands \
-e OPENVPN_CONFIG=CA\ Toronto \
-e OPENVPN_USERNAME=user \
-e OPENVPN_PASSWORD=pass \
-e WEBPROXY_ENABLED=false \
@@ -151,7 +151,7 @@ If TRANSMISSION_PEER_PORT_RANDOM_ON_START is enabled then it allows traffic to t
|----------|----------|-------|
|`ENABLE_UFW` | Enables the firewall | `ENABLE_UFW=true`|
|`UFW_ALLOW_GW_NET` | Allows the gateway network through the firewall. Off defaults to only allowing the gateway. | `UFW_ALLOW_GW_NET=true`|
|`UFW_EXTRA_PORTS` | Allows the comma separated list of ports through the firewall. Respsects UFW_ALLOW_GW_NET. | `UFW_EXTRA_PORTS=9910,23561,443`|
|`UFW_EXTRA_PORTS` | Allows the comma separated list of ports through the firewall. Respects UFW_ALLOW_GW_NET. | `UFW_EXTRA_PORTS=9910,23561,443`|
### Alternative web UIs
You can override the default web UI by setting the ```TRANSMISSION_WEB_HOME``` environment variable. If set, Transmission will look there for the Web Interface files, such as the javascript, html, and graphics files.
@@ -209,7 +209,7 @@ You may set the following parameters to customize the user id that runs transmis
### Dropping default route from iptables (advanced)
Some VPNs do not override the default route, but rather set other routes with a lower metric.
This might lead to te default route (your untunneled connection) to be used.
This might lead to the default route (your untunneled connection) to be used.
To drop the default route set the environment variable `DROP_DEFAULT_ROUTE` to `true`.
@@ -304,14 +304,14 @@ Several popular NAS platforms supports Docker containers. You should be able to
#### Questions?
If you are having issues with this container please submit an issue on GitHub.
Please provide logs, docker version and other information that can simplify reproducing the issue.
Using the latest stable verison of Docker is always recommended. Support for older version is on a best-effort basis.
Using the latest stable version of Docker is always recommended. Support for older version is on a best-effort basis.
## Adding new providers
If your VPN provider is not in the list of supported providers you could always create an issue on GitHub and see if someone could add it for you. But if you're feeling up for doing it yourself, here's a couple of pointers.
You clone this repository and create a new folder under "openvpn" where you put the .ovpn files your provider gives you. Depending on the structure of these files you need to make some adjustments. For example if they come with a ca.crt file that is referenced in the config you need to update this reference to the path it will have inside the container (which is /etc/openvpn/...). You also have to set where to look for your username/password.
There is a script called adjustConfigs.sh that could help you. After putting your .ovpn files in a folder, run that script with your folder name as parameter and it will try to do the changes descibed above. If you use it or not, reading it might give you some help in what you're looking to change in the .ovpn files.
There is a script called adjustConfigs.sh that could help you. After putting your .ovpn files in a folder, run that script with your folder name as parameter and it will try to do the changes described above. If you use it or not, reading it might give you some help in what you're looking to change in the .ovpn files.
Once you've finished modifying configs, you build the container and run it with OPENVPN_PROVIDER set to the name of the folder of configs you just created (it will be lowercased to match the folder names). And that should be it!
@@ -388,7 +388,7 @@ nameserver 8.8.4.4
-v /volume1/foldername/resolv.conf:/etc/resolv.conf \
-v /volume1/yourpath/:/data \
-e "OPENVPN_PROVIDER=PIA" \
-e "OPENVPN_CONFIG=Netherlands" \
-e "OPENVPN_CONFIG=CA\ Toronto" \
-e "OPENVPN_USERNAME=XXXXX" \
-e "OPENVPN_PASSWORD=XXXXX" \
-e "LOCAL_NETWORK=192.168.0.0/24" \
@@ -433,7 +433,7 @@ ExecStart=/usr/bin/docker run \
-e "OPENVPN_PROVIDER=TORGUARD" \
-e "OPENVPN_USERNAME=bittorrent@example.com" \
-e "OPENVPN_PASSWORD=hunter2" \
-e "OPENVPN_CONFIG=Netherlands" \
-e "OPENVPN_CONFIG=CA\ Toronto" \
-e "OPENVPN_OPTS=--inactive 3600 --ping 10 --ping-exit 60" \
-e "TRANSMISSION_UMASK=0" \
-p 9091:9091 \

View File

@@ -1,7 +1,7 @@
client
dev tun
proto udp
remote aus-melbourne.privateinternetaccess.com 1198
remote au-melbourne.privateinternetaccess.com 1198
resolv-retry infinite
nobind
persist-key
@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -1,7 +1,7 @@
client
dev tun
proto udp
remote aus.privateinternetaccess.com 1198
remote au-sydney.privateinternetaccess.com 1198
resolv-retry infinite
nobind
persist-key
@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -1,7 +1,7 @@
client
dev tun
proto udp
remote ca.privateinternetaccess.com 1198
remote ca-montreal.privateinternetaccess.com 1198
resolv-retry infinite
nobind
persist-key
@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -0,0 +1,20 @@
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

View File

@@ -0,0 +1,20 @@
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

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -1,7 +1,7 @@
client
dev tun
proto tcp
remote germany.privateinternetaccess.com 502
proto udp
remote hungary.privateinternetaccess.com 1198
resolv-retry infinite
nobind
persist-key
@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -1,7 +1,7 @@
client
dev tun
proto udp
remote germany.privateinternetaccess.com 1198
remote poland.privateinternetaccess.com 1198
resolv-retry infinite
nobind
persist-key
@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -0,0 +1,20 @@
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

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -0,0 +1,20 @@
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

View File

@@ -10,6 +10,7 @@ cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass /config/openvpn-credentials.txt
comp-lzo
verb 1

View File

@@ -1 +1 @@
Germany.ovpn
CA Toronto.ovpn

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 168.1.75.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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 137.59.252.151 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 185.210.219.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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 185.232.21.27 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 177.234.153.130 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 173.199.65.57 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 172.98.67.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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 107.181.189.75 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 89.238.186.227 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 185.230.127.232 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 185.220.70.130 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 82.102.20.176 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 192.40.95.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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 194.187.249.35 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 119.81.135.51 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

View File

@@ -0,0 +1,20 @@
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

20
openvpn/pia/ip/India.ovpn Normal file
View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 138.128.180.66 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 23.92.127.34 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 31.168.172.143 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

20
openvpn/pia/ip/Italy.ovpn Normal file
View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 82.102.21.218 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

20
openvpn/pia/ip/Japan.ovpn Normal file
View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 103.208.220.139 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 169.57.0.225 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 109.201.152.245 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 103.231.91.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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 82.102.27.57 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 185.244.214.200 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

View File

@@ -0,0 +1,20 @@
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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 216.185.103.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

20
openvpn/pia/ip/Spain.ovpn Normal file
View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 194.99.104.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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 46.246.123.9 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 185.230.125.94 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 176.53.21.211 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 89.238.154.118 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 89.238.139.12 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 31.24.226.207 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 107.181.176.100 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 185.245.87.221 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 104.200.153.80 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 64.237.52.132 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 104.156.240.207 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 205.251.151.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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 162.251.236.4 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

View File

@@ -0,0 +1,20 @@
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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 209.95.50.61 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 104.200.154.15 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 104.156.228.195 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 162.216.46.131 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 70.32.0.78 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

View File

@@ -0,0 +1,20 @@
client
dev tun
proto udp
remote 104.200.151.86 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