From 2c444551d7b666439ce339d7f58f808db8c9abb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Bor=C3=BDsek?= Date: Wed, 27 Jun 2018 00:05:39 +0200 Subject: [PATCH 1/4] update readme (PIA port forwarding) Updating ReadMe to note, that PIA port forwarding is not available in all regions. Also some typo fixes. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index abbb3dea2..191c258a8 100644 --- a/README.md +++ b/README.md @@ -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 :) @@ -149,7 +149,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. @@ -205,7 +205,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`. @@ -295,14 +295,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! From d302efa3a4be210cab53907c362d999b16aee3bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Bor=C3=BDsek?= Date: Tue, 10 Jul 2018 02:58:06 +0200 Subject: [PATCH 2/4] PIA modified update script --- openvpn/pia/updateConfigs.sh | 43 ++++++++++++++++++++++++++++-------- 1 file changed, 34 insertions(+), 9 deletions(-) diff --git a/openvpn/pia/updateConfigs.sh b/openvpn/pia/updateConfigs.sh index 6ca92fb66..b4ef76b1c 100755 --- a/openvpn/pia/updateConfigs.sh +++ b/openvpn/pia/updateConfigs.sh @@ -8,17 +8,42 @@ cd "${0%/*}" # Delete everything (not this script though) find . ! -name '*.sh' -delete -# Get updated configuration zip -curl -kL https://www.privateinternetaccess.com/openvpn/openvpn.zip -o openvpn.zip \ - && unzip -j openvpn.zip && rm openvpn.zip +baseURL="https://www.privateinternetaccess.com/openvpn/openvpn" +extension=".zip" +declare -a configsURLs=( "" "-strong" "-tcp" "-strong-tcp" "-ip") +declare -a configsFolders=( "" "strong" "tcp" "tcp-strong" "ip") -# Ensure linux line endings -dos2unix * +# warning: keeping folder name "tcp-strong" for legacy reasons, but the url is "strong-tcp". -# Update configs with correct paths -sed -i "s/ca ca\.rsa\.2048\.crt/ca \/etc\/openvpn\/pia\/ca\.rsa\.2048\.crt/" *.ovpn -sed -i "s/crl-verify crl\.rsa\.2048\.pem/crl-verify \/etc\/openvpn\/pia\/crl\.rsa\.2048\.pem/" *.ovpn -sed -i "s/auth-user-pass/auth-user-pass \/config\/openvpn-credentials.txt/" *.ovpn +numberOfConfigTypes=${#configsURLs[@]} + +for (( i=1; i<${numberOfConfigTypes}+1; i++ )); +do + requestURL="$baseURL${configsURLs[$i-1]}$extension" + if [ ! -z "${configsFolders[$i-1]}" ] + then + mkdir -p ${configsFolders[$i-1]} && cd ${configsFolders[$i-1]} + fi + curl -kL $requestURL -o openvpn.zip \ + && unzip -j openvpn.zip && rm openvpn.zip + + # Ensure linux line endings + dos2unix * + + # Update configs with correct paths + folderNameWithEscapedSlash="" + if [ ! -z "${configsFolders[$i-1]}" ] + then + folderNameWithEscapedSlash="${configsFolders[$i-1]}\/" + fi + sed -i "s/auth-user-pass/auth-user-pass \/config\/openvpn-credentials.txt/" *.ovpn + sed -i "s/ca ca\.rsa\.\([0-9]*\)\.crt/ca \/etc\/openvpn\/pia\/${folderNameWithEscapedSlash}ca\.rsa\.\1\.crt/" *.ovpn + sed -i "s/crl-verify crl\.rsa\.\([0-9]*\)\.pem/crl-verify \/etc\/openvpn\/pia\/${folderNameWithEscapedSlash}crl\.rsa\.\1\.pem/" *.ovpn + if [ ! -z "${configsFolders[$i-1]}" ] + then + cd .. + fi +done # Create symlink for default.ovpn ln -s Netherlands.ovpn default.ovpn From 1311b9d679cf5c42402f64fc17a658f1d9861853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Bor=C3=BDsek?= Date: Tue, 10 Jul 2018 02:59:05 +0200 Subject: [PATCH 3/4] PIA updates configs ref #554 --- openvpn/pia/AU Melbourne.ovpn | 3 +- openvpn/pia/AU Sydney.ovpn | 3 +- openvpn/pia/Austria.ovpn | 1 + openvpn/pia/Belgium.ovpn | 1 + openvpn/pia/Brazil.ovpn | 1 + openvpn/pia/CA Montreal.ovpn | 3 +- openvpn/pia/CA Toronto.ovpn | 1 + openvpn/pia/CA Vancouver.ovpn | 1 + openvpn/pia/Czech Republic.ovpn | 1 + openvpn/pia/DE Berlin.ovpn | 20 +++++++++ openvpn/pia/DE Frankfurt.ovpn | 20 +++++++++ openvpn/pia/Denmark.ovpn | 1 + openvpn/pia/Finland.ovpn | 1 + openvpn/pia/France.ovpn | 1 + openvpn/pia/Hong Kong.ovpn | 1 + .../pia/{tcp/Germany.ovpn => Hungary.ovpn} | 5 ++- openvpn/pia/India.ovpn | 1 + openvpn/pia/Ireland.ovpn | 1 + openvpn/pia/Israel.ovpn | 1 + openvpn/pia/Italy.ovpn | 1 + openvpn/pia/Japan.ovpn | 1 + openvpn/pia/Mexico.ovpn | 1 + openvpn/pia/Netherlands.ovpn | 1 + openvpn/pia/New Zealand.ovpn | 1 + openvpn/pia/Norway.ovpn | 1 + openvpn/pia/{Germany.ovpn => Poland.ovpn} | 3 +- openvpn/pia/Romania.ovpn | 1 + openvpn/pia/Singapore.ovpn | 1 + openvpn/pia/Spain.ovpn | 1 + openvpn/pia/Sweden.ovpn | 1 + openvpn/pia/Switzerland.ovpn | 1 + openvpn/pia/Turkey.ovpn | 1 + openvpn/pia/UK London.ovpn | 1 + openvpn/pia/UK Manchester.ovpn | 1 + openvpn/pia/UK Southampton.ovpn | 1 + openvpn/pia/US Atlanta.ovpn | 1 + openvpn/pia/US California.ovpn | 1 + openvpn/pia/US Chicago.ovpn | 1 + openvpn/pia/US East.ovpn | 1 + openvpn/pia/US Florida.ovpn | 1 + openvpn/pia/US Houston.ovpn | 20 +++++++++ openvpn/pia/US Las Vegas.ovpn | 1 + openvpn/pia/US Midwest.ovpn | 1 + openvpn/pia/US New York City.ovpn | 1 + openvpn/pia/US Seattle.ovpn | 1 + openvpn/pia/US Silicon Valley.ovpn | 1 + openvpn/pia/US Texas.ovpn | 1 + openvpn/pia/US Washington DC.ovpn | 20 +++++++++ openvpn/pia/US West.ovpn | 1 + openvpn/pia/ip/AU Melbourne.ovpn | 20 +++++++++ openvpn/pia/ip/AU Sydney.ovpn | 20 +++++++++ openvpn/pia/ip/Austria.ovpn | 20 +++++++++ openvpn/pia/ip/Belgium.ovpn | 20 +++++++++ openvpn/pia/ip/Brazil.ovpn | 20 +++++++++ openvpn/pia/ip/CA Montreal.ovpn | 20 +++++++++ openvpn/pia/ip/CA Toronto.ovpn | 20 +++++++++ openvpn/pia/ip/CA Vancouver.ovpn | 20 +++++++++ openvpn/pia/ip/Czech Republic.ovpn | 20 +++++++++ openvpn/pia/ip/DE Berlin.ovpn | 20 +++++++++ openvpn/pia/ip/DE Frankfurt.ovpn | 20 +++++++++ openvpn/pia/ip/Denmark.ovpn | 20 +++++++++ openvpn/pia/ip/Finland.ovpn | 20 +++++++++ openvpn/pia/ip/France.ovpn | 20 +++++++++ openvpn/pia/ip/Hong Kong.ovpn | 20 +++++++++ openvpn/pia/ip/Hungary.ovpn | 20 +++++++++ openvpn/pia/ip/India.ovpn | 20 +++++++++ openvpn/pia/ip/Ireland.ovpn | 20 +++++++++ openvpn/pia/ip/Israel.ovpn | 20 +++++++++ openvpn/pia/ip/Italy.ovpn | 20 +++++++++ openvpn/pia/ip/Japan.ovpn | 20 +++++++++ openvpn/pia/ip/Mexico.ovpn | 20 +++++++++ openvpn/pia/ip/Netherlands.ovpn | 20 +++++++++ openvpn/pia/ip/New Zealand.ovpn | 20 +++++++++ openvpn/pia/ip/Norway.ovpn | 20 +++++++++ openvpn/pia/ip/Poland.ovpn | 20 +++++++++ openvpn/pia/ip/Romania.ovpn | 20 +++++++++ openvpn/pia/ip/Singapore.ovpn | 20 +++++++++ openvpn/pia/ip/Spain.ovpn | 20 +++++++++ openvpn/pia/ip/Sweden.ovpn | 20 +++++++++ openvpn/pia/ip/Switzerland.ovpn | 20 +++++++++ openvpn/pia/ip/Turkey.ovpn | 20 +++++++++ openvpn/pia/ip/UK London.ovpn | 20 +++++++++ openvpn/pia/ip/UK Manchester.ovpn | 20 +++++++++ openvpn/pia/ip/UK Southampton.ovpn | 20 +++++++++ openvpn/pia/ip/US Atlanta.ovpn | 20 +++++++++ openvpn/pia/ip/US California.ovpn | 20 +++++++++ openvpn/pia/ip/US Chicago.ovpn | 20 +++++++++ openvpn/pia/ip/US East.ovpn | 20 +++++++++ openvpn/pia/ip/US Florida.ovpn | 20 +++++++++ openvpn/pia/ip/US Houston.ovpn | 20 +++++++++ openvpn/pia/ip/US Las Vegas.ovpn | 20 +++++++++ openvpn/pia/ip/US Midwest.ovpn | 20 +++++++++ openvpn/pia/ip/US New York City.ovpn | 20 +++++++++ openvpn/pia/ip/US Seattle.ovpn | 20 +++++++++ openvpn/pia/ip/US Silicon Valley.ovpn | 20 +++++++++ openvpn/pia/ip/US Texas.ovpn | 20 +++++++++ openvpn/pia/ip/US Washington DC.ovpn | 20 +++++++++ openvpn/pia/ip/US West.ovpn | 20 +++++++++ openvpn/pia/ip/ca.rsa.2048.crt | 33 ++++++++++++++ openvpn/pia/ip/crl.rsa.2048.pem | 15 +++++++ openvpn/pia/strong/AU Melbourne.ovpn | 3 +- openvpn/pia/strong/AU Sydney.ovpn | 3 +- openvpn/pia/strong/Austria.ovpn | 1 + openvpn/pia/strong/Belgium.ovpn | 1 + openvpn/pia/strong/Brazil.ovpn | 1 + openvpn/pia/strong/CA Montreal.ovpn | 3 +- openvpn/pia/strong/CA Toronto.ovpn | 1 + openvpn/pia/strong/CA Vancouver.ovpn | 1 + openvpn/pia/strong/Czech Republic.ovpn | 1 + openvpn/pia/strong/DE Berlin.ovpn | 20 +++++++++ openvpn/pia/strong/DE Frankfurt.ovpn | 20 +++++++++ openvpn/pia/strong/Denmark.ovpn | 1 + openvpn/pia/strong/Finland.ovpn | 1 + openvpn/pia/strong/France.ovpn | 1 + openvpn/pia/strong/Hong Kong.ovpn | 1 + .../Germany.ovpn => strong/Hungary.ovpn} | 5 ++- openvpn/pia/strong/India.ovpn | 1 + openvpn/pia/strong/Ireland.ovpn | 1 + openvpn/pia/strong/Israel.ovpn | 1 + openvpn/pia/strong/Italy.ovpn | 1 + openvpn/pia/strong/Japan.ovpn | 1 + openvpn/pia/strong/Mexico.ovpn | 1 + openvpn/pia/strong/Netherlands.ovpn | 1 + openvpn/pia/strong/New Zealand.ovpn | 1 + openvpn/pia/strong/Norway.ovpn | 1 + .../pia/strong/{Germany.ovpn => Poland.ovpn} | 3 +- openvpn/pia/strong/Romania.ovpn | 1 + openvpn/pia/strong/Singapore.ovpn | 1 + openvpn/pia/strong/Spain.ovpn | 1 + openvpn/pia/strong/Sweden.ovpn | 1 + openvpn/pia/strong/Switzerland.ovpn | 1 + openvpn/pia/strong/Turkey.ovpn | 1 + openvpn/pia/strong/UK London.ovpn | 1 + openvpn/pia/strong/UK Manchester.ovpn | 1 + openvpn/pia/strong/UK Southampton.ovpn | 1 + openvpn/pia/strong/US Atlanta.ovpn | 1 + openvpn/pia/strong/US California.ovpn | 1 + openvpn/pia/strong/US Chicago.ovpn | 1 + openvpn/pia/strong/US East.ovpn | 1 + openvpn/pia/strong/US Florida.ovpn | 1 + openvpn/pia/strong/US Houston.ovpn | 20 +++++++++ openvpn/pia/strong/US Las Vegas.ovpn | 1 + openvpn/pia/strong/US Midwest.ovpn | 1 + openvpn/pia/strong/US New York City.ovpn | 1 + openvpn/pia/strong/US Seattle.ovpn | 1 + openvpn/pia/strong/US Silicon Valley.ovpn | 1 + openvpn/pia/strong/US Texas.ovpn | 1 + openvpn/pia/strong/US Washington DC.ovpn | 20 +++++++++ openvpn/pia/strong/US West.ovpn | 1 + openvpn/pia/tcp-strong/AU Melbourne.ovpn | 7 +-- openvpn/pia/tcp-strong/AU Sydney.ovpn | 7 +-- openvpn/pia/tcp-strong/Austria.ovpn | 5 ++- openvpn/pia/tcp-strong/Belgium.ovpn | 5 ++- openvpn/pia/tcp-strong/Brazil.ovpn | 5 ++- openvpn/pia/tcp-strong/CA Montreal.ovpn | 7 +-- openvpn/pia/tcp-strong/CA Toronto.ovpn | 5 ++- openvpn/pia/tcp-strong/CA Vancouver.ovpn | 5 ++- openvpn/pia/tcp-strong/Czech Republic.ovpn | 5 ++- openvpn/pia/tcp-strong/DE Berlin.ovpn | 20 +++++++++ openvpn/pia/tcp-strong/DE Frankfurt.ovpn | 20 +++++++++ openvpn/pia/tcp-strong/Denmark.ovpn | 5 ++- openvpn/pia/tcp-strong/Finland.ovpn | 5 ++- openvpn/pia/tcp-strong/France.ovpn | 5 ++- openvpn/pia/tcp-strong/Hong Kong.ovpn | 5 ++- openvpn/pia/tcp-strong/Hungary.ovpn | 20 +++++++++ openvpn/pia/tcp-strong/India.ovpn | 5 ++- openvpn/pia/tcp-strong/Ireland.ovpn | 5 ++- openvpn/pia/tcp-strong/Israel.ovpn | 5 ++- openvpn/pia/tcp-strong/Italy.ovpn | 5 ++- openvpn/pia/tcp-strong/Japan.ovpn | 5 ++- openvpn/pia/tcp-strong/Mexico.ovpn | 5 ++- openvpn/pia/tcp-strong/Netherlands.ovpn | 5 ++- openvpn/pia/tcp-strong/New Zealand.ovpn | 5 ++- openvpn/pia/tcp-strong/Norway.ovpn | 5 ++- openvpn/pia/tcp-strong/Poland.ovpn | 20 +++++++++ openvpn/pia/tcp-strong/Romania.ovpn | 5 ++- openvpn/pia/tcp-strong/Singapore.ovpn | 5 ++- openvpn/pia/tcp-strong/Spain.ovpn | 5 ++- openvpn/pia/tcp-strong/Sweden.ovpn | 5 ++- openvpn/pia/tcp-strong/Switzerland.ovpn | 5 ++- openvpn/pia/tcp-strong/Turkey.ovpn | 5 ++- openvpn/pia/tcp-strong/UK London.ovpn | 5 ++- openvpn/pia/tcp-strong/UK Manchester.ovpn | 5 ++- openvpn/pia/tcp-strong/UK Southampton.ovpn | 5 ++- openvpn/pia/tcp-strong/US Atlanta.ovpn | 5 ++- openvpn/pia/tcp-strong/US California.ovpn | 5 ++- openvpn/pia/tcp-strong/US Chicago.ovpn | 5 ++- openvpn/pia/tcp-strong/US East.ovpn | 5 ++- openvpn/pia/tcp-strong/US Florida.ovpn | 5 ++- openvpn/pia/tcp-strong/US Houston.ovpn | 20 +++++++++ openvpn/pia/tcp-strong/US Las Vegas.ovpn | 5 ++- openvpn/pia/tcp-strong/US Midwest.ovpn | 5 ++- openvpn/pia/tcp-strong/US New York City.ovpn | 5 ++- openvpn/pia/tcp-strong/US Seattle.ovpn | 5 ++- openvpn/pia/tcp-strong/US Silicon Valley.ovpn | 5 ++- openvpn/pia/tcp-strong/US Texas.ovpn | 5 ++- openvpn/pia/tcp-strong/US Washington DC.ovpn | 20 +++++++++ openvpn/pia/tcp-strong/US West.ovpn | 5 ++- openvpn/pia/tcp-strong/ca.rsa.4096.crt | 43 +++++++++++++++++++ openvpn/pia/tcp-strong/crl.rsa.4096.pem | 20 +++++++++ openvpn/pia/tcp/AU Melbourne.ovpn | 7 +-- openvpn/pia/tcp/AU Sydney.ovpn | 7 +-- openvpn/pia/tcp/Austria.ovpn | 5 ++- openvpn/pia/tcp/Belgium.ovpn | 5 ++- openvpn/pia/tcp/Brazil.ovpn | 5 ++- openvpn/pia/tcp/CA Montreal.ovpn | 7 +-- openvpn/pia/tcp/CA Toronto.ovpn | 5 ++- openvpn/pia/tcp/CA Vancouver.ovpn | 5 ++- openvpn/pia/tcp/Czech Republic.ovpn | 5 ++- openvpn/pia/tcp/DE Berlin.ovpn | 20 +++++++++ openvpn/pia/tcp/DE Frankfurt.ovpn | 20 +++++++++ openvpn/pia/tcp/Denmark.ovpn | 5 ++- openvpn/pia/tcp/Finland.ovpn | 5 ++- openvpn/pia/tcp/France.ovpn | 5 ++- openvpn/pia/tcp/Hong Kong.ovpn | 5 ++- openvpn/pia/tcp/Hungary.ovpn | 20 +++++++++ openvpn/pia/tcp/India.ovpn | 5 ++- openvpn/pia/tcp/Ireland.ovpn | 5 ++- openvpn/pia/tcp/Israel.ovpn | 5 ++- openvpn/pia/tcp/Italy.ovpn | 5 ++- openvpn/pia/tcp/Japan.ovpn | 5 ++- openvpn/pia/tcp/Mexico.ovpn | 5 ++- openvpn/pia/tcp/Netherlands.ovpn | 5 ++- openvpn/pia/tcp/New Zealand.ovpn | 5 ++- openvpn/pia/tcp/Norway.ovpn | 5 ++- openvpn/pia/tcp/Poland.ovpn | 20 +++++++++ openvpn/pia/tcp/Romania.ovpn | 5 ++- openvpn/pia/tcp/Singapore.ovpn | 5 ++- openvpn/pia/tcp/Spain.ovpn | 5 ++- openvpn/pia/tcp/Sweden.ovpn | 5 ++- openvpn/pia/tcp/Switzerland.ovpn | 5 ++- openvpn/pia/tcp/Turkey.ovpn | 5 ++- openvpn/pia/tcp/UK London.ovpn | 5 ++- openvpn/pia/tcp/UK Manchester.ovpn | 5 ++- openvpn/pia/tcp/UK Southampton.ovpn | 5 ++- openvpn/pia/tcp/US Atlanta.ovpn | 5 ++- openvpn/pia/tcp/US California.ovpn | 5 ++- openvpn/pia/tcp/US Chicago.ovpn | 5 ++- openvpn/pia/tcp/US East.ovpn | 5 ++- openvpn/pia/tcp/US Florida.ovpn | 5 ++- openvpn/pia/tcp/US Houston.ovpn | 20 +++++++++ openvpn/pia/tcp/US Las Vegas.ovpn | 5 ++- openvpn/pia/tcp/US Midwest.ovpn | 5 ++- openvpn/pia/tcp/US New York City.ovpn | 5 ++- openvpn/pia/tcp/US Seattle.ovpn | 5 ++- openvpn/pia/tcp/US Silicon Valley.ovpn | 5 ++- openvpn/pia/tcp/US Texas.ovpn | 5 ++- openvpn/pia/tcp/US Washington DC.ovpn | 20 +++++++++ openvpn/pia/tcp/US West.ovpn | 5 ++- openvpn/pia/tcp/ca.rsa.2048.crt | 33 ++++++++++++++ openvpn/pia/tcp/crl.rsa.2048.pem | 15 +++++++ 251 files changed, 1905 insertions(+), 190 deletions(-) create mode 100644 openvpn/pia/DE Berlin.ovpn create mode 100644 openvpn/pia/DE Frankfurt.ovpn rename openvpn/pia/{tcp/Germany.ovpn => Hungary.ovpn} (83%) rename openvpn/pia/{Germany.ovpn => Poland.ovpn} (87%) create mode 100644 openvpn/pia/US Houston.ovpn create mode 100644 openvpn/pia/US Washington DC.ovpn create mode 100644 openvpn/pia/ip/AU Melbourne.ovpn create mode 100644 openvpn/pia/ip/AU Sydney.ovpn create mode 100644 openvpn/pia/ip/Austria.ovpn create mode 100644 openvpn/pia/ip/Belgium.ovpn create mode 100644 openvpn/pia/ip/Brazil.ovpn create mode 100644 openvpn/pia/ip/CA Montreal.ovpn create mode 100644 openvpn/pia/ip/CA Toronto.ovpn create mode 100644 openvpn/pia/ip/CA Vancouver.ovpn create mode 100644 openvpn/pia/ip/Czech Republic.ovpn create mode 100644 openvpn/pia/ip/DE Berlin.ovpn create mode 100644 openvpn/pia/ip/DE Frankfurt.ovpn create mode 100644 openvpn/pia/ip/Denmark.ovpn create mode 100644 openvpn/pia/ip/Finland.ovpn create mode 100644 openvpn/pia/ip/France.ovpn create mode 100644 openvpn/pia/ip/Hong Kong.ovpn create mode 100644 openvpn/pia/ip/Hungary.ovpn create mode 100644 openvpn/pia/ip/India.ovpn create mode 100644 openvpn/pia/ip/Ireland.ovpn create mode 100644 openvpn/pia/ip/Israel.ovpn create mode 100644 openvpn/pia/ip/Italy.ovpn create mode 100644 openvpn/pia/ip/Japan.ovpn create mode 100644 openvpn/pia/ip/Mexico.ovpn create mode 100644 openvpn/pia/ip/Netherlands.ovpn create mode 100644 openvpn/pia/ip/New Zealand.ovpn create mode 100644 openvpn/pia/ip/Norway.ovpn create mode 100644 openvpn/pia/ip/Poland.ovpn create mode 100644 openvpn/pia/ip/Romania.ovpn create mode 100644 openvpn/pia/ip/Singapore.ovpn create mode 100644 openvpn/pia/ip/Spain.ovpn create mode 100644 openvpn/pia/ip/Sweden.ovpn create mode 100644 openvpn/pia/ip/Switzerland.ovpn create mode 100644 openvpn/pia/ip/Turkey.ovpn create mode 100644 openvpn/pia/ip/UK London.ovpn create mode 100644 openvpn/pia/ip/UK Manchester.ovpn create mode 100644 openvpn/pia/ip/UK Southampton.ovpn create mode 100644 openvpn/pia/ip/US Atlanta.ovpn create mode 100644 openvpn/pia/ip/US California.ovpn create mode 100644 openvpn/pia/ip/US Chicago.ovpn create mode 100644 openvpn/pia/ip/US East.ovpn create mode 100644 openvpn/pia/ip/US Florida.ovpn create mode 100644 openvpn/pia/ip/US Houston.ovpn create mode 100644 openvpn/pia/ip/US Las Vegas.ovpn create mode 100644 openvpn/pia/ip/US Midwest.ovpn create mode 100644 openvpn/pia/ip/US New York City.ovpn create mode 100644 openvpn/pia/ip/US Seattle.ovpn create mode 100644 openvpn/pia/ip/US Silicon Valley.ovpn create mode 100644 openvpn/pia/ip/US Texas.ovpn create mode 100644 openvpn/pia/ip/US Washington DC.ovpn create mode 100644 openvpn/pia/ip/US West.ovpn create mode 100644 openvpn/pia/ip/ca.rsa.2048.crt create mode 100644 openvpn/pia/ip/crl.rsa.2048.pem create mode 100644 openvpn/pia/strong/DE Berlin.ovpn create mode 100644 openvpn/pia/strong/DE Frankfurt.ovpn rename openvpn/pia/{tcp-strong/Germany.ovpn => strong/Hungary.ovpn} (84%) rename openvpn/pia/strong/{Germany.ovpn => Poland.ovpn} (87%) create mode 100644 openvpn/pia/strong/US Houston.ovpn create mode 100644 openvpn/pia/strong/US Washington DC.ovpn create mode 100644 openvpn/pia/tcp-strong/DE Berlin.ovpn create mode 100644 openvpn/pia/tcp-strong/DE Frankfurt.ovpn create mode 100644 openvpn/pia/tcp-strong/Hungary.ovpn create mode 100644 openvpn/pia/tcp-strong/Poland.ovpn create mode 100644 openvpn/pia/tcp-strong/US Houston.ovpn create mode 100644 openvpn/pia/tcp-strong/US Washington DC.ovpn create mode 100644 openvpn/pia/tcp-strong/ca.rsa.4096.crt create mode 100644 openvpn/pia/tcp-strong/crl.rsa.4096.pem create mode 100644 openvpn/pia/tcp/DE Berlin.ovpn create mode 100644 openvpn/pia/tcp/DE Frankfurt.ovpn create mode 100644 openvpn/pia/tcp/Hungary.ovpn create mode 100644 openvpn/pia/tcp/Poland.ovpn create mode 100644 openvpn/pia/tcp/US Houston.ovpn create mode 100644 openvpn/pia/tcp/US Washington DC.ovpn create mode 100644 openvpn/pia/tcp/ca.rsa.2048.crt create mode 100644 openvpn/pia/tcp/crl.rsa.2048.pem diff --git a/openvpn/pia/AU Melbourne.ovpn b/openvpn/pia/AU Melbourne.ovpn index 2a22a1576..4201c8148 100644 --- a/openvpn/pia/AU Melbourne.ovpn +++ b/openvpn/pia/AU Melbourne.ovpn @@ -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 diff --git a/openvpn/pia/AU Sydney.ovpn b/openvpn/pia/AU Sydney.ovpn index f2d309a8e..90b233508 100644 --- a/openvpn/pia/AU Sydney.ovpn +++ b/openvpn/pia/AU Sydney.ovpn @@ -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 diff --git a/openvpn/pia/Austria.ovpn b/openvpn/pia/Austria.ovpn index 20c63cd0a..dfcc79e32 100644 --- a/openvpn/pia/Austria.ovpn +++ b/openvpn/pia/Austria.ovpn @@ -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 diff --git a/openvpn/pia/Belgium.ovpn b/openvpn/pia/Belgium.ovpn index 61b996cc7..661e565d6 100644 --- a/openvpn/pia/Belgium.ovpn +++ b/openvpn/pia/Belgium.ovpn @@ -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 diff --git a/openvpn/pia/Brazil.ovpn b/openvpn/pia/Brazil.ovpn index 6ef4d13e1..83c8e9cbe 100644 --- a/openvpn/pia/Brazil.ovpn +++ b/openvpn/pia/Brazil.ovpn @@ -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 diff --git a/openvpn/pia/CA Montreal.ovpn b/openvpn/pia/CA Montreal.ovpn index eb335e554..69e8b9681 100644 --- a/openvpn/pia/CA Montreal.ovpn +++ b/openvpn/pia/CA Montreal.ovpn @@ -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 diff --git a/openvpn/pia/CA Toronto.ovpn b/openvpn/pia/CA Toronto.ovpn index 3e5257e13..447b9121c 100644 --- a/openvpn/pia/CA Toronto.ovpn +++ b/openvpn/pia/CA Toronto.ovpn @@ -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 diff --git a/openvpn/pia/CA Vancouver.ovpn b/openvpn/pia/CA Vancouver.ovpn index be593cb57..5b615dbf1 100644 --- a/openvpn/pia/CA Vancouver.ovpn +++ b/openvpn/pia/CA Vancouver.ovpn @@ -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 diff --git a/openvpn/pia/Czech Republic.ovpn b/openvpn/pia/Czech Republic.ovpn index 742088df9..99df485d9 100644 --- a/openvpn/pia/Czech Republic.ovpn +++ b/openvpn/pia/Czech Republic.ovpn @@ -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 diff --git a/openvpn/pia/DE Berlin.ovpn b/openvpn/pia/DE Berlin.ovpn new file mode 100644 index 000000000..63c965f29 --- /dev/null +++ b/openvpn/pia/DE Berlin.ovpn @@ -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 diff --git a/openvpn/pia/DE Frankfurt.ovpn b/openvpn/pia/DE Frankfurt.ovpn new file mode 100644 index 000000000..2c88755b9 --- /dev/null +++ b/openvpn/pia/DE Frankfurt.ovpn @@ -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 diff --git a/openvpn/pia/Denmark.ovpn b/openvpn/pia/Denmark.ovpn index 7fafd9859..f584bee5a 100644 --- a/openvpn/pia/Denmark.ovpn +++ b/openvpn/pia/Denmark.ovpn @@ -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 diff --git a/openvpn/pia/Finland.ovpn b/openvpn/pia/Finland.ovpn index 1931617b9..f8c475ebd 100644 --- a/openvpn/pia/Finland.ovpn +++ b/openvpn/pia/Finland.ovpn @@ -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 diff --git a/openvpn/pia/France.ovpn b/openvpn/pia/France.ovpn index 8d6f31e5b..f98da530f 100644 --- a/openvpn/pia/France.ovpn +++ b/openvpn/pia/France.ovpn @@ -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 diff --git a/openvpn/pia/Hong Kong.ovpn b/openvpn/pia/Hong Kong.ovpn index 19c5c2e28..7302b2b6d 100644 --- a/openvpn/pia/Hong Kong.ovpn +++ b/openvpn/pia/Hong Kong.ovpn @@ -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 diff --git a/openvpn/pia/tcp/Germany.ovpn b/openvpn/pia/Hungary.ovpn similarity index 83% rename from openvpn/pia/tcp/Germany.ovpn rename to openvpn/pia/Hungary.ovpn index 5025b9c44..93fa8213f 100644 --- a/openvpn/pia/tcp/Germany.ovpn +++ b/openvpn/pia/Hungary.ovpn @@ -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 diff --git a/openvpn/pia/India.ovpn b/openvpn/pia/India.ovpn index f5e17bffd..9924efd3b 100644 --- a/openvpn/pia/India.ovpn +++ b/openvpn/pia/India.ovpn @@ -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 diff --git a/openvpn/pia/Ireland.ovpn b/openvpn/pia/Ireland.ovpn index 57bb1cb3b..3ac16d7da 100644 --- a/openvpn/pia/Ireland.ovpn +++ b/openvpn/pia/Ireland.ovpn @@ -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 diff --git a/openvpn/pia/Israel.ovpn b/openvpn/pia/Israel.ovpn index ce9a1b6e0..3c0ddb10c 100644 --- a/openvpn/pia/Israel.ovpn +++ b/openvpn/pia/Israel.ovpn @@ -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 diff --git a/openvpn/pia/Italy.ovpn b/openvpn/pia/Italy.ovpn index 62bf3afbc..60f58e800 100644 --- a/openvpn/pia/Italy.ovpn +++ b/openvpn/pia/Italy.ovpn @@ -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 diff --git a/openvpn/pia/Japan.ovpn b/openvpn/pia/Japan.ovpn index 53e3988e5..fbf8eb12b 100644 --- a/openvpn/pia/Japan.ovpn +++ b/openvpn/pia/Japan.ovpn @@ -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 diff --git a/openvpn/pia/Mexico.ovpn b/openvpn/pia/Mexico.ovpn index 4965ce3ca..e6dfe6a79 100644 --- a/openvpn/pia/Mexico.ovpn +++ b/openvpn/pia/Mexico.ovpn @@ -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 diff --git a/openvpn/pia/Netherlands.ovpn b/openvpn/pia/Netherlands.ovpn index d9e9f1037..2c3893b22 100644 --- a/openvpn/pia/Netherlands.ovpn +++ b/openvpn/pia/Netherlands.ovpn @@ -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 diff --git a/openvpn/pia/New Zealand.ovpn b/openvpn/pia/New Zealand.ovpn index c69079198..a1d9bf41b 100644 --- a/openvpn/pia/New Zealand.ovpn +++ b/openvpn/pia/New Zealand.ovpn @@ -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 diff --git a/openvpn/pia/Norway.ovpn b/openvpn/pia/Norway.ovpn index 962689b1a..87b0d6528 100644 --- a/openvpn/pia/Norway.ovpn +++ b/openvpn/pia/Norway.ovpn @@ -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 diff --git a/openvpn/pia/Germany.ovpn b/openvpn/pia/Poland.ovpn similarity index 87% rename from openvpn/pia/Germany.ovpn rename to openvpn/pia/Poland.ovpn index 1ba9b9e7a..839de0fc7 100644 --- a/openvpn/pia/Germany.ovpn +++ b/openvpn/pia/Poland.ovpn @@ -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 diff --git a/openvpn/pia/Romania.ovpn b/openvpn/pia/Romania.ovpn index c5fd06669..9ec3a134a 100644 --- a/openvpn/pia/Romania.ovpn +++ b/openvpn/pia/Romania.ovpn @@ -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 diff --git a/openvpn/pia/Singapore.ovpn b/openvpn/pia/Singapore.ovpn index 18be75fcc..56e8faec9 100644 --- a/openvpn/pia/Singapore.ovpn +++ b/openvpn/pia/Singapore.ovpn @@ -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 diff --git a/openvpn/pia/Spain.ovpn b/openvpn/pia/Spain.ovpn index 241ce0867..08e8c736c 100644 --- a/openvpn/pia/Spain.ovpn +++ b/openvpn/pia/Spain.ovpn @@ -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 diff --git a/openvpn/pia/Sweden.ovpn b/openvpn/pia/Sweden.ovpn index 9f4ca0bcc..fa999e6c3 100644 --- a/openvpn/pia/Sweden.ovpn +++ b/openvpn/pia/Sweden.ovpn @@ -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 diff --git a/openvpn/pia/Switzerland.ovpn b/openvpn/pia/Switzerland.ovpn index 4c7bff6c6..dfa02d9c3 100644 --- a/openvpn/pia/Switzerland.ovpn +++ b/openvpn/pia/Switzerland.ovpn @@ -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 diff --git a/openvpn/pia/Turkey.ovpn b/openvpn/pia/Turkey.ovpn index e192e6062..0c245b00f 100644 --- a/openvpn/pia/Turkey.ovpn +++ b/openvpn/pia/Turkey.ovpn @@ -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 diff --git a/openvpn/pia/UK London.ovpn b/openvpn/pia/UK London.ovpn index a51f949b6..44455efd3 100644 --- a/openvpn/pia/UK London.ovpn +++ b/openvpn/pia/UK London.ovpn @@ -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 diff --git a/openvpn/pia/UK Manchester.ovpn b/openvpn/pia/UK Manchester.ovpn index f52541684..9fcb2b529 100644 --- a/openvpn/pia/UK Manchester.ovpn +++ b/openvpn/pia/UK Manchester.ovpn @@ -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 diff --git a/openvpn/pia/UK Southampton.ovpn b/openvpn/pia/UK Southampton.ovpn index 5b00774a4..a7ba36377 100644 --- a/openvpn/pia/UK Southampton.ovpn +++ b/openvpn/pia/UK Southampton.ovpn @@ -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 diff --git a/openvpn/pia/US Atlanta.ovpn b/openvpn/pia/US Atlanta.ovpn index a5484fa01..1ba7b62e5 100644 --- a/openvpn/pia/US Atlanta.ovpn +++ b/openvpn/pia/US Atlanta.ovpn @@ -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 diff --git a/openvpn/pia/US California.ovpn b/openvpn/pia/US California.ovpn index bfc4aaa73..21343c7ce 100644 --- a/openvpn/pia/US California.ovpn +++ b/openvpn/pia/US California.ovpn @@ -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 diff --git a/openvpn/pia/US Chicago.ovpn b/openvpn/pia/US Chicago.ovpn index 725b22808..63cf48651 100644 --- a/openvpn/pia/US Chicago.ovpn +++ b/openvpn/pia/US Chicago.ovpn @@ -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 diff --git a/openvpn/pia/US East.ovpn b/openvpn/pia/US East.ovpn index 11dfe60d2..63a92b6b0 100644 --- a/openvpn/pia/US East.ovpn +++ b/openvpn/pia/US East.ovpn @@ -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 diff --git a/openvpn/pia/US Florida.ovpn b/openvpn/pia/US Florida.ovpn index 683164e89..4112938cc 100644 --- a/openvpn/pia/US Florida.ovpn +++ b/openvpn/pia/US Florida.ovpn @@ -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 diff --git a/openvpn/pia/US Houston.ovpn b/openvpn/pia/US Houston.ovpn new file mode 100644 index 000000000..4366a569c --- /dev/null +++ b/openvpn/pia/US Houston.ovpn @@ -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 diff --git a/openvpn/pia/US Las Vegas.ovpn b/openvpn/pia/US Las Vegas.ovpn index edf7df493..d65667d8c 100644 --- a/openvpn/pia/US Las Vegas.ovpn +++ b/openvpn/pia/US Las Vegas.ovpn @@ -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 diff --git a/openvpn/pia/US Midwest.ovpn b/openvpn/pia/US Midwest.ovpn index c6dd1e6a3..7790e03fd 100644 --- a/openvpn/pia/US Midwest.ovpn +++ b/openvpn/pia/US Midwest.ovpn @@ -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 diff --git a/openvpn/pia/US New York City.ovpn b/openvpn/pia/US New York City.ovpn index 811bb703a..1fa87ccbf 100644 --- a/openvpn/pia/US New York City.ovpn +++ b/openvpn/pia/US New York City.ovpn @@ -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 diff --git a/openvpn/pia/US Seattle.ovpn b/openvpn/pia/US Seattle.ovpn index 72a03794f..781edc1c4 100644 --- a/openvpn/pia/US Seattle.ovpn +++ b/openvpn/pia/US Seattle.ovpn @@ -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 diff --git a/openvpn/pia/US Silicon Valley.ovpn b/openvpn/pia/US Silicon Valley.ovpn index f8af22177..10a504aab 100644 --- a/openvpn/pia/US Silicon Valley.ovpn +++ b/openvpn/pia/US Silicon Valley.ovpn @@ -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 diff --git a/openvpn/pia/US Texas.ovpn b/openvpn/pia/US Texas.ovpn index 1f265ffd1..75588e806 100644 --- a/openvpn/pia/US Texas.ovpn +++ b/openvpn/pia/US Texas.ovpn @@ -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 diff --git a/openvpn/pia/US Washington DC.ovpn b/openvpn/pia/US Washington DC.ovpn new file mode 100644 index 000000000..2af008418 --- /dev/null +++ b/openvpn/pia/US Washington DC.ovpn @@ -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 diff --git a/openvpn/pia/US West.ovpn b/openvpn/pia/US West.ovpn index 467d4e506..0c660e06c 100644 --- a/openvpn/pia/US West.ovpn +++ b/openvpn/pia/US West.ovpn @@ -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 diff --git a/openvpn/pia/ip/AU Melbourne.ovpn b/openvpn/pia/ip/AU Melbourne.ovpn new file mode 100644 index 000000000..020f94a38 --- /dev/null +++ b/openvpn/pia/ip/AU Melbourne.ovpn @@ -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 diff --git a/openvpn/pia/ip/AU Sydney.ovpn b/openvpn/pia/ip/AU Sydney.ovpn new file mode 100644 index 000000000..8028ed62e --- /dev/null +++ b/openvpn/pia/ip/AU Sydney.ovpn @@ -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 diff --git a/openvpn/pia/ip/Austria.ovpn b/openvpn/pia/ip/Austria.ovpn new file mode 100644 index 000000000..f0ca7e62a --- /dev/null +++ b/openvpn/pia/ip/Austria.ovpn @@ -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 diff --git a/openvpn/pia/ip/Belgium.ovpn b/openvpn/pia/ip/Belgium.ovpn new file mode 100644 index 000000000..d1c1c9d87 --- /dev/null +++ b/openvpn/pia/ip/Belgium.ovpn @@ -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 diff --git a/openvpn/pia/ip/Brazil.ovpn b/openvpn/pia/ip/Brazil.ovpn new file mode 100644 index 000000000..eadf4f1f9 --- /dev/null +++ b/openvpn/pia/ip/Brazil.ovpn @@ -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 diff --git a/openvpn/pia/ip/CA Montreal.ovpn b/openvpn/pia/ip/CA Montreal.ovpn new file mode 100644 index 000000000..99187305e --- /dev/null +++ b/openvpn/pia/ip/CA Montreal.ovpn @@ -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 diff --git a/openvpn/pia/ip/CA Toronto.ovpn b/openvpn/pia/ip/CA Toronto.ovpn new file mode 100644 index 000000000..56f422587 --- /dev/null +++ b/openvpn/pia/ip/CA Toronto.ovpn @@ -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 diff --git a/openvpn/pia/ip/CA Vancouver.ovpn b/openvpn/pia/ip/CA Vancouver.ovpn new file mode 100644 index 000000000..f51efdcb2 --- /dev/null +++ b/openvpn/pia/ip/CA Vancouver.ovpn @@ -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 diff --git a/openvpn/pia/ip/Czech Republic.ovpn b/openvpn/pia/ip/Czech Republic.ovpn new file mode 100644 index 000000000..2ec44e055 --- /dev/null +++ b/openvpn/pia/ip/Czech Republic.ovpn @@ -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 diff --git a/openvpn/pia/ip/DE Berlin.ovpn b/openvpn/pia/ip/DE Berlin.ovpn new file mode 100644 index 000000000..ed1b506f7 --- /dev/null +++ b/openvpn/pia/ip/DE Berlin.ovpn @@ -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 diff --git a/openvpn/pia/ip/DE Frankfurt.ovpn b/openvpn/pia/ip/DE Frankfurt.ovpn new file mode 100644 index 000000000..03b8e4315 --- /dev/null +++ b/openvpn/pia/ip/DE Frankfurt.ovpn @@ -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 diff --git a/openvpn/pia/ip/Denmark.ovpn b/openvpn/pia/ip/Denmark.ovpn new file mode 100644 index 000000000..5f560b4d9 --- /dev/null +++ b/openvpn/pia/ip/Denmark.ovpn @@ -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 diff --git a/openvpn/pia/ip/Finland.ovpn b/openvpn/pia/ip/Finland.ovpn new file mode 100644 index 000000000..263053f5e --- /dev/null +++ b/openvpn/pia/ip/Finland.ovpn @@ -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 diff --git a/openvpn/pia/ip/France.ovpn b/openvpn/pia/ip/France.ovpn new file mode 100644 index 000000000..0774ed7f1 --- /dev/null +++ b/openvpn/pia/ip/France.ovpn @@ -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 diff --git a/openvpn/pia/ip/Hong Kong.ovpn b/openvpn/pia/ip/Hong Kong.ovpn new file mode 100644 index 000000000..bd59cfb5c --- /dev/null +++ b/openvpn/pia/ip/Hong Kong.ovpn @@ -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 diff --git a/openvpn/pia/ip/Hungary.ovpn b/openvpn/pia/ip/Hungary.ovpn new file mode 100644 index 000000000..bf6594bd8 --- /dev/null +++ b/openvpn/pia/ip/Hungary.ovpn @@ -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 diff --git a/openvpn/pia/ip/India.ovpn b/openvpn/pia/ip/India.ovpn new file mode 100644 index 000000000..61a2d39f8 --- /dev/null +++ b/openvpn/pia/ip/India.ovpn @@ -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 diff --git a/openvpn/pia/ip/Ireland.ovpn b/openvpn/pia/ip/Ireland.ovpn new file mode 100644 index 000000000..9350e9bf8 --- /dev/null +++ b/openvpn/pia/ip/Ireland.ovpn @@ -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 diff --git a/openvpn/pia/ip/Israel.ovpn b/openvpn/pia/ip/Israel.ovpn new file mode 100644 index 000000000..3cc03cd36 --- /dev/null +++ b/openvpn/pia/ip/Israel.ovpn @@ -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 diff --git a/openvpn/pia/ip/Italy.ovpn b/openvpn/pia/ip/Italy.ovpn new file mode 100644 index 000000000..4b0bfac4e --- /dev/null +++ b/openvpn/pia/ip/Italy.ovpn @@ -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 diff --git a/openvpn/pia/ip/Japan.ovpn b/openvpn/pia/ip/Japan.ovpn new file mode 100644 index 000000000..580016a5f --- /dev/null +++ b/openvpn/pia/ip/Japan.ovpn @@ -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 diff --git a/openvpn/pia/ip/Mexico.ovpn b/openvpn/pia/ip/Mexico.ovpn new file mode 100644 index 000000000..21d19bfd5 --- /dev/null +++ b/openvpn/pia/ip/Mexico.ovpn @@ -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 diff --git a/openvpn/pia/ip/Netherlands.ovpn b/openvpn/pia/ip/Netherlands.ovpn new file mode 100644 index 000000000..b49087dac --- /dev/null +++ b/openvpn/pia/ip/Netherlands.ovpn @@ -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 diff --git a/openvpn/pia/ip/New Zealand.ovpn b/openvpn/pia/ip/New Zealand.ovpn new file mode 100644 index 000000000..a1806d302 --- /dev/null +++ b/openvpn/pia/ip/New Zealand.ovpn @@ -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 diff --git a/openvpn/pia/ip/Norway.ovpn b/openvpn/pia/ip/Norway.ovpn new file mode 100644 index 000000000..617e1f90b --- /dev/null +++ b/openvpn/pia/ip/Norway.ovpn @@ -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 diff --git a/openvpn/pia/ip/Poland.ovpn b/openvpn/pia/ip/Poland.ovpn new file mode 100644 index 000000000..8ec3b1524 --- /dev/null +++ b/openvpn/pia/ip/Poland.ovpn @@ -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 diff --git a/openvpn/pia/ip/Romania.ovpn b/openvpn/pia/ip/Romania.ovpn new file mode 100644 index 000000000..440f3b291 --- /dev/null +++ b/openvpn/pia/ip/Romania.ovpn @@ -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 diff --git a/openvpn/pia/ip/Singapore.ovpn b/openvpn/pia/ip/Singapore.ovpn new file mode 100644 index 000000000..c6a7ff23e --- /dev/null +++ b/openvpn/pia/ip/Singapore.ovpn @@ -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 diff --git a/openvpn/pia/ip/Spain.ovpn b/openvpn/pia/ip/Spain.ovpn new file mode 100644 index 000000000..83f381733 --- /dev/null +++ b/openvpn/pia/ip/Spain.ovpn @@ -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 diff --git a/openvpn/pia/ip/Sweden.ovpn b/openvpn/pia/ip/Sweden.ovpn new file mode 100644 index 000000000..4bc998bba --- /dev/null +++ b/openvpn/pia/ip/Sweden.ovpn @@ -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 diff --git a/openvpn/pia/ip/Switzerland.ovpn b/openvpn/pia/ip/Switzerland.ovpn new file mode 100644 index 000000000..01e5224cd --- /dev/null +++ b/openvpn/pia/ip/Switzerland.ovpn @@ -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 diff --git a/openvpn/pia/ip/Turkey.ovpn b/openvpn/pia/ip/Turkey.ovpn new file mode 100644 index 000000000..cb91cc53e --- /dev/null +++ b/openvpn/pia/ip/Turkey.ovpn @@ -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 diff --git a/openvpn/pia/ip/UK London.ovpn b/openvpn/pia/ip/UK London.ovpn new file mode 100644 index 000000000..2f602f419 --- /dev/null +++ b/openvpn/pia/ip/UK London.ovpn @@ -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 diff --git a/openvpn/pia/ip/UK Manchester.ovpn b/openvpn/pia/ip/UK Manchester.ovpn new file mode 100644 index 000000000..8f521614f --- /dev/null +++ b/openvpn/pia/ip/UK Manchester.ovpn @@ -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 diff --git a/openvpn/pia/ip/UK Southampton.ovpn b/openvpn/pia/ip/UK Southampton.ovpn new file mode 100644 index 000000000..18241924f --- /dev/null +++ b/openvpn/pia/ip/UK Southampton.ovpn @@ -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 diff --git a/openvpn/pia/ip/US Atlanta.ovpn b/openvpn/pia/ip/US Atlanta.ovpn new file mode 100644 index 000000000..cf1b73310 --- /dev/null +++ b/openvpn/pia/ip/US Atlanta.ovpn @@ -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 diff --git a/openvpn/pia/ip/US California.ovpn b/openvpn/pia/ip/US California.ovpn new file mode 100644 index 000000000..ac9534b38 --- /dev/null +++ b/openvpn/pia/ip/US California.ovpn @@ -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 diff --git a/openvpn/pia/ip/US Chicago.ovpn b/openvpn/pia/ip/US Chicago.ovpn new file mode 100644 index 000000000..adba70acd --- /dev/null +++ b/openvpn/pia/ip/US Chicago.ovpn @@ -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 diff --git a/openvpn/pia/ip/US East.ovpn b/openvpn/pia/ip/US East.ovpn new file mode 100644 index 000000000..7156b50a0 --- /dev/null +++ b/openvpn/pia/ip/US East.ovpn @@ -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 diff --git a/openvpn/pia/ip/US Florida.ovpn b/openvpn/pia/ip/US Florida.ovpn new file mode 100644 index 000000000..0e571ce71 --- /dev/null +++ b/openvpn/pia/ip/US Florida.ovpn @@ -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 diff --git a/openvpn/pia/ip/US Houston.ovpn b/openvpn/pia/ip/US Houston.ovpn new file mode 100644 index 000000000..8ea774a9d --- /dev/null +++ b/openvpn/pia/ip/US Houston.ovpn @@ -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 diff --git a/openvpn/pia/ip/US Las Vegas.ovpn b/openvpn/pia/ip/US Las Vegas.ovpn new file mode 100644 index 000000000..975c58d05 --- /dev/null +++ b/openvpn/pia/ip/US Las Vegas.ovpn @@ -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 diff --git a/openvpn/pia/ip/US Midwest.ovpn b/openvpn/pia/ip/US Midwest.ovpn new file mode 100644 index 000000000..e64d299db --- /dev/null +++ b/openvpn/pia/ip/US Midwest.ovpn @@ -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 diff --git a/openvpn/pia/ip/US New York City.ovpn b/openvpn/pia/ip/US New York City.ovpn new file mode 100644 index 000000000..db1f68744 --- /dev/null +++ b/openvpn/pia/ip/US New York City.ovpn @@ -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 diff --git a/openvpn/pia/ip/US Seattle.ovpn b/openvpn/pia/ip/US Seattle.ovpn new file mode 100644 index 000000000..75ff6daf0 --- /dev/null +++ b/openvpn/pia/ip/US Seattle.ovpn @@ -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 diff --git a/openvpn/pia/ip/US Silicon Valley.ovpn b/openvpn/pia/ip/US Silicon Valley.ovpn new file mode 100644 index 000000000..df182414f --- /dev/null +++ b/openvpn/pia/ip/US Silicon Valley.ovpn @@ -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 diff --git a/openvpn/pia/ip/US Texas.ovpn b/openvpn/pia/ip/US Texas.ovpn new file mode 100644 index 000000000..5eac9503c --- /dev/null +++ b/openvpn/pia/ip/US Texas.ovpn @@ -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 diff --git a/openvpn/pia/ip/US Washington DC.ovpn b/openvpn/pia/ip/US Washington DC.ovpn new file mode 100644 index 000000000..dd3e5bdfc --- /dev/null +++ b/openvpn/pia/ip/US Washington DC.ovpn @@ -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 diff --git a/openvpn/pia/ip/US West.ovpn b/openvpn/pia/ip/US West.ovpn new file mode 100644 index 000000000..9cdb1b01f --- /dev/null +++ b/openvpn/pia/ip/US West.ovpn @@ -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 diff --git a/openvpn/pia/ip/ca.rsa.2048.crt b/openvpn/pia/ip/ca.rsa.2048.crt new file mode 100644 index 000000000..6deea6063 --- /dev/null +++ b/openvpn/pia/ip/ca.rsa.2048.crt @@ -0,0 +1,33 @@ +-----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----- diff --git a/openvpn/pia/ip/crl.rsa.2048.pem b/openvpn/pia/ip/crl.rsa.2048.pem new file mode 100644 index 000000000..a58ef56cf --- /dev/null +++ b/openvpn/pia/ip/crl.rsa.2048.pem @@ -0,0 +1,15 @@ +-----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----- diff --git a/openvpn/pia/strong/AU Melbourne.ovpn b/openvpn/pia/strong/AU Melbourne.ovpn index 7dcbb0755..e54a83fa6 100644 --- a/openvpn/pia/strong/AU Melbourne.ovpn +++ b/openvpn/pia/strong/AU Melbourne.ovpn @@ -1,7 +1,7 @@ client dev tun proto udp -remote aus-melbourne.privateinternetaccess.com 1197 +remote au-melbourne.privateinternetaccess.com 1197 resolv-retry infinite nobind persist-key @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/AU Sydney.ovpn b/openvpn/pia/strong/AU Sydney.ovpn index e37fbd2be..774983b12 100644 --- a/openvpn/pia/strong/AU Sydney.ovpn +++ b/openvpn/pia/strong/AU Sydney.ovpn @@ -1,7 +1,7 @@ client dev tun proto udp -remote aus.privateinternetaccess.com 1197 +remote au-sydney.privateinternetaccess.com 1197 resolv-retry infinite nobind persist-key @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Austria.ovpn b/openvpn/pia/strong/Austria.ovpn index 590056f6e..7397c8949 100644 --- a/openvpn/pia/strong/Austria.ovpn +++ b/openvpn/pia/strong/Austria.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Belgium.ovpn b/openvpn/pia/strong/Belgium.ovpn index af40170c7..c665d883d 100644 --- a/openvpn/pia/strong/Belgium.ovpn +++ b/openvpn/pia/strong/Belgium.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Brazil.ovpn b/openvpn/pia/strong/Brazil.ovpn index 30a6b6cac..94506b6f5 100644 --- a/openvpn/pia/strong/Brazil.ovpn +++ b/openvpn/pia/strong/Brazil.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/CA Montreal.ovpn b/openvpn/pia/strong/CA Montreal.ovpn index fba251f0f..11e8155a3 100644 --- a/openvpn/pia/strong/CA Montreal.ovpn +++ b/openvpn/pia/strong/CA Montreal.ovpn @@ -1,7 +1,7 @@ client dev tun proto udp -remote ca.privateinternetaccess.com 1197 +remote ca-montreal.privateinternetaccess.com 1197 resolv-retry infinite nobind persist-key @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/CA Toronto.ovpn b/openvpn/pia/strong/CA Toronto.ovpn index fe15b0ce7..032f37e6f 100644 --- a/openvpn/pia/strong/CA Toronto.ovpn +++ b/openvpn/pia/strong/CA Toronto.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/CA Vancouver.ovpn b/openvpn/pia/strong/CA Vancouver.ovpn index 4a7b7eaea..3ef327b92 100644 --- a/openvpn/pia/strong/CA Vancouver.ovpn +++ b/openvpn/pia/strong/CA Vancouver.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Czech Republic.ovpn b/openvpn/pia/strong/Czech Republic.ovpn index cf31d73a1..6eb356f0d 100644 --- a/openvpn/pia/strong/Czech Republic.ovpn +++ b/openvpn/pia/strong/Czech Republic.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/DE Berlin.ovpn b/openvpn/pia/strong/DE Berlin.ovpn new file mode 100644 index 000000000..be6ea57c0 --- /dev/null +++ b/openvpn/pia/strong/DE Berlin.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto udp +remote de-berlin.privateinternetaccess.com 1197 +resolv-retry infinite +nobind +persist-key +persist-tun +cipher aes-256-cbc +auth sha256 +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/strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +disable-occ diff --git a/openvpn/pia/strong/DE Frankfurt.ovpn b/openvpn/pia/strong/DE Frankfurt.ovpn new file mode 100644 index 000000000..64a442382 --- /dev/null +++ b/openvpn/pia/strong/DE Frankfurt.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto udp +remote de-frankfurt.privateinternetaccess.com 1197 +resolv-retry infinite +nobind +persist-key +persist-tun +cipher aes-256-cbc +auth sha256 +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/strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +disable-occ diff --git a/openvpn/pia/strong/Denmark.ovpn b/openvpn/pia/strong/Denmark.ovpn index c7f6fbe58..7441bd754 100644 --- a/openvpn/pia/strong/Denmark.ovpn +++ b/openvpn/pia/strong/Denmark.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Finland.ovpn b/openvpn/pia/strong/Finland.ovpn index 5caf2f740..a0b672b89 100644 --- a/openvpn/pia/strong/Finland.ovpn +++ b/openvpn/pia/strong/Finland.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/France.ovpn b/openvpn/pia/strong/France.ovpn index c664eaf18..cc0d082e3 100644 --- a/openvpn/pia/strong/France.ovpn +++ b/openvpn/pia/strong/France.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Hong Kong.ovpn b/openvpn/pia/strong/Hong Kong.ovpn index 5d900730e..842a9d49b 100644 --- a/openvpn/pia/strong/Hong Kong.ovpn +++ b/openvpn/pia/strong/Hong Kong.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/tcp-strong/Germany.ovpn b/openvpn/pia/strong/Hungary.ovpn similarity index 84% rename from openvpn/pia/tcp-strong/Germany.ovpn rename to openvpn/pia/strong/Hungary.ovpn index 86c7abc7d..0d229a23b 100644 --- a/openvpn/pia/tcp-strong/Germany.ovpn +++ b/openvpn/pia/strong/Hungary.ovpn @@ -1,7 +1,7 @@ client dev tun -proto tcp -remote germany.privateinternetaccess.com 501 +proto udp +remote hungary.privateinternetaccess.com 1197 resolv-retry infinite nobind persist-key @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/India.ovpn b/openvpn/pia/strong/India.ovpn index d10340220..04b0312d7 100644 --- a/openvpn/pia/strong/India.ovpn +++ b/openvpn/pia/strong/India.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Ireland.ovpn b/openvpn/pia/strong/Ireland.ovpn index 53493930a..6371dc8e9 100644 --- a/openvpn/pia/strong/Ireland.ovpn +++ b/openvpn/pia/strong/Ireland.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Israel.ovpn b/openvpn/pia/strong/Israel.ovpn index 0c043ee4c..40b8ee09d 100644 --- a/openvpn/pia/strong/Israel.ovpn +++ b/openvpn/pia/strong/Israel.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Italy.ovpn b/openvpn/pia/strong/Italy.ovpn index 3e628585b..7a1fceeae 100644 --- a/openvpn/pia/strong/Italy.ovpn +++ b/openvpn/pia/strong/Italy.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Japan.ovpn b/openvpn/pia/strong/Japan.ovpn index f56ac4d88..0168f43c2 100644 --- a/openvpn/pia/strong/Japan.ovpn +++ b/openvpn/pia/strong/Japan.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Mexico.ovpn b/openvpn/pia/strong/Mexico.ovpn index 590816a00..fa9c3bafd 100644 --- a/openvpn/pia/strong/Mexico.ovpn +++ b/openvpn/pia/strong/Mexico.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Netherlands.ovpn b/openvpn/pia/strong/Netherlands.ovpn index f4370dd8b..7c69e22e6 100644 --- a/openvpn/pia/strong/Netherlands.ovpn +++ b/openvpn/pia/strong/Netherlands.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/New Zealand.ovpn b/openvpn/pia/strong/New Zealand.ovpn index f8d0c1b88..f2f95b40a 100644 --- a/openvpn/pia/strong/New Zealand.ovpn +++ b/openvpn/pia/strong/New Zealand.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Norway.ovpn b/openvpn/pia/strong/Norway.ovpn index 9cb56174b..c3f27b0c7 100644 --- a/openvpn/pia/strong/Norway.ovpn +++ b/openvpn/pia/strong/Norway.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Germany.ovpn b/openvpn/pia/strong/Poland.ovpn similarity index 87% rename from openvpn/pia/strong/Germany.ovpn rename to openvpn/pia/strong/Poland.ovpn index 7425b2cb2..cbacab0d9 100644 --- a/openvpn/pia/strong/Germany.ovpn +++ b/openvpn/pia/strong/Poland.ovpn @@ -1,7 +1,7 @@ client dev tun proto udp -remote germany.privateinternetaccess.com 1197 +remote poland.privateinternetaccess.com 1197 resolv-retry infinite nobind persist-key @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Romania.ovpn b/openvpn/pia/strong/Romania.ovpn index 44ce55ee0..7d2a9189f 100644 --- a/openvpn/pia/strong/Romania.ovpn +++ b/openvpn/pia/strong/Romania.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Singapore.ovpn b/openvpn/pia/strong/Singapore.ovpn index e5ee6fc69..94ebf6ca9 100644 --- a/openvpn/pia/strong/Singapore.ovpn +++ b/openvpn/pia/strong/Singapore.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Spain.ovpn b/openvpn/pia/strong/Spain.ovpn index 7d3f229f0..ac650f40b 100644 --- a/openvpn/pia/strong/Spain.ovpn +++ b/openvpn/pia/strong/Spain.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Sweden.ovpn b/openvpn/pia/strong/Sweden.ovpn index de30ce47b..c634c1184 100644 --- a/openvpn/pia/strong/Sweden.ovpn +++ b/openvpn/pia/strong/Sweden.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Switzerland.ovpn b/openvpn/pia/strong/Switzerland.ovpn index b40ff63b4..ca5e7ed70 100644 --- a/openvpn/pia/strong/Switzerland.ovpn +++ b/openvpn/pia/strong/Switzerland.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/Turkey.ovpn b/openvpn/pia/strong/Turkey.ovpn index 9c86658ac..94414d631 100644 --- a/openvpn/pia/strong/Turkey.ovpn +++ b/openvpn/pia/strong/Turkey.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/UK London.ovpn b/openvpn/pia/strong/UK London.ovpn index 37e5ae588..38b9b3af8 100644 --- a/openvpn/pia/strong/UK London.ovpn +++ b/openvpn/pia/strong/UK London.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/UK Manchester.ovpn b/openvpn/pia/strong/UK Manchester.ovpn index 2e9197e3e..278c69ab0 100644 --- a/openvpn/pia/strong/UK Manchester.ovpn +++ b/openvpn/pia/strong/UK Manchester.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/UK Southampton.ovpn b/openvpn/pia/strong/UK Southampton.ovpn index a86803259..2d9046d84 100644 --- a/openvpn/pia/strong/UK Southampton.ovpn +++ b/openvpn/pia/strong/UK Southampton.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US Atlanta.ovpn b/openvpn/pia/strong/US Atlanta.ovpn index e497ae32d..1add974e8 100644 --- a/openvpn/pia/strong/US Atlanta.ovpn +++ b/openvpn/pia/strong/US Atlanta.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US California.ovpn b/openvpn/pia/strong/US California.ovpn index 86ddde00c..f08671cf2 100644 --- a/openvpn/pia/strong/US California.ovpn +++ b/openvpn/pia/strong/US California.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US Chicago.ovpn b/openvpn/pia/strong/US Chicago.ovpn index efcf9c249..28dd1f5e6 100644 --- a/openvpn/pia/strong/US Chicago.ovpn +++ b/openvpn/pia/strong/US Chicago.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US East.ovpn b/openvpn/pia/strong/US East.ovpn index cf100c88c..83f80336d 100644 --- a/openvpn/pia/strong/US East.ovpn +++ b/openvpn/pia/strong/US East.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US Florida.ovpn b/openvpn/pia/strong/US Florida.ovpn index 21b83fbc4..3a6a74303 100644 --- a/openvpn/pia/strong/US Florida.ovpn +++ b/openvpn/pia/strong/US Florida.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US Houston.ovpn b/openvpn/pia/strong/US Houston.ovpn new file mode 100644 index 000000000..00e15c3c0 --- /dev/null +++ b/openvpn/pia/strong/US Houston.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto udp +remote us-houston.privateinternetaccess.com 1197 +resolv-retry infinite +nobind +persist-key +persist-tun +cipher aes-256-cbc +auth sha256 +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/strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +disable-occ diff --git a/openvpn/pia/strong/US Las Vegas.ovpn b/openvpn/pia/strong/US Las Vegas.ovpn index 639f83dd0..cdbe9305a 100644 --- a/openvpn/pia/strong/US Las Vegas.ovpn +++ b/openvpn/pia/strong/US Las Vegas.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US Midwest.ovpn b/openvpn/pia/strong/US Midwest.ovpn index 72887a01c..71cb16917 100644 --- a/openvpn/pia/strong/US Midwest.ovpn +++ b/openvpn/pia/strong/US Midwest.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US New York City.ovpn b/openvpn/pia/strong/US New York City.ovpn index 08998b7c0..f16acbbe0 100644 --- a/openvpn/pia/strong/US New York City.ovpn +++ b/openvpn/pia/strong/US New York City.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US Seattle.ovpn b/openvpn/pia/strong/US Seattle.ovpn index df79720e3..ed851028b 100644 --- a/openvpn/pia/strong/US Seattle.ovpn +++ b/openvpn/pia/strong/US Seattle.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US Silicon Valley.ovpn b/openvpn/pia/strong/US Silicon Valley.ovpn index 8b2d47a24..72d2fcc55 100644 --- a/openvpn/pia/strong/US Silicon Valley.ovpn +++ b/openvpn/pia/strong/US Silicon Valley.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US Texas.ovpn b/openvpn/pia/strong/US Texas.ovpn index c7bf2180b..f127b57d3 100644 --- a/openvpn/pia/strong/US Texas.ovpn +++ b/openvpn/pia/strong/US Texas.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/strong/US Washington DC.ovpn b/openvpn/pia/strong/US Washington DC.ovpn new file mode 100644 index 000000000..07a4625cc --- /dev/null +++ b/openvpn/pia/strong/US Washington DC.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto udp +remote us-washingtondc.privateinternetaccess.com 1197 +resolv-retry infinite +nobind +persist-key +persist-tun +cipher aes-256-cbc +auth sha256 +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/strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +disable-occ diff --git a/openvpn/pia/strong/US West.ovpn b/openvpn/pia/strong/US West.ovpn index ee37ace68..66b4dbfbf 100644 --- a/openvpn/pia/strong/US West.ovpn +++ b/openvpn/pia/strong/US West.ovpn @@ -10,6 +10,7 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 diff --git a/openvpn/pia/tcp-strong/AU Melbourne.ovpn b/openvpn/pia/tcp-strong/AU Melbourne.ovpn index 4c3829ebe..7dea517bd 100644 --- a/openvpn/pia/tcp-strong/AU Melbourne.ovpn +++ b/openvpn/pia/tcp-strong/AU Melbourne.ovpn @@ -1,7 +1,7 @@ client dev tun proto tcp -remote aus-melbourne.privateinternetaccess.com 501 +remote au-melbourne.privateinternetaccess.com 501 resolv-retry infinite nobind persist-key @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/AU Sydney.ovpn b/openvpn/pia/tcp-strong/AU Sydney.ovpn index 8dc65a4dd..ec6064760 100644 --- a/openvpn/pia/tcp-strong/AU Sydney.ovpn +++ b/openvpn/pia/tcp-strong/AU Sydney.ovpn @@ -1,7 +1,7 @@ client dev tun proto tcp -remote aus.privateinternetaccess.com 501 +remote au-sydney.privateinternetaccess.com 501 resolv-retry infinite nobind persist-key @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Austria.ovpn b/openvpn/pia/tcp-strong/Austria.ovpn index aa45e62e0..0952dd62c 100644 --- a/openvpn/pia/tcp-strong/Austria.ovpn +++ b/openvpn/pia/tcp-strong/Austria.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Belgium.ovpn b/openvpn/pia/tcp-strong/Belgium.ovpn index 23ee8db26..ea18c9469 100644 --- a/openvpn/pia/tcp-strong/Belgium.ovpn +++ b/openvpn/pia/tcp-strong/Belgium.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Brazil.ovpn b/openvpn/pia/tcp-strong/Brazil.ovpn index 30c5b5d05..c4569e626 100644 --- a/openvpn/pia/tcp-strong/Brazil.ovpn +++ b/openvpn/pia/tcp-strong/Brazil.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/CA Montreal.ovpn b/openvpn/pia/tcp-strong/CA Montreal.ovpn index 15ff23be3..c491bfb6b 100644 --- a/openvpn/pia/tcp-strong/CA Montreal.ovpn +++ b/openvpn/pia/tcp-strong/CA Montreal.ovpn @@ -1,7 +1,7 @@ client dev tun proto tcp -remote ca.privateinternetaccess.com 501 +remote ca-montreal.privateinternetaccess.com 501 resolv-retry infinite nobind persist-key @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/CA Toronto.ovpn b/openvpn/pia/tcp-strong/CA Toronto.ovpn index aef2f399b..86801c752 100644 --- a/openvpn/pia/tcp-strong/CA Toronto.ovpn +++ b/openvpn/pia/tcp-strong/CA Toronto.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/CA Vancouver.ovpn b/openvpn/pia/tcp-strong/CA Vancouver.ovpn index 8fdc9081f..40560532e 100644 --- a/openvpn/pia/tcp-strong/CA Vancouver.ovpn +++ b/openvpn/pia/tcp-strong/CA Vancouver.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Czech Republic.ovpn b/openvpn/pia/tcp-strong/Czech Republic.ovpn index d0b6b79f4..60d73a386 100644 --- a/openvpn/pia/tcp-strong/Czech Republic.ovpn +++ b/openvpn/pia/tcp-strong/Czech Republic.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/DE Berlin.ovpn b/openvpn/pia/tcp-strong/DE Berlin.ovpn new file mode 100644 index 000000000..ddf17474d --- /dev/null +++ b/openvpn/pia/tcp-strong/DE Berlin.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote de-berlin.privateinternetaccess.com 501 +resolv-retry infinite +nobind +persist-key +persist-tun +cipher aes-256-cbc +auth sha256 +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/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt +disable-occ diff --git a/openvpn/pia/tcp-strong/DE Frankfurt.ovpn b/openvpn/pia/tcp-strong/DE Frankfurt.ovpn new file mode 100644 index 000000000..44a6496e6 --- /dev/null +++ b/openvpn/pia/tcp-strong/DE Frankfurt.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote de-frankfurt.privateinternetaccess.com 501 +resolv-retry infinite +nobind +persist-key +persist-tun +cipher aes-256-cbc +auth sha256 +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/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt +disable-occ diff --git a/openvpn/pia/tcp-strong/Denmark.ovpn b/openvpn/pia/tcp-strong/Denmark.ovpn index d48598a7c..f81bc6d04 100644 --- a/openvpn/pia/tcp-strong/Denmark.ovpn +++ b/openvpn/pia/tcp-strong/Denmark.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Finland.ovpn b/openvpn/pia/tcp-strong/Finland.ovpn index 7c77a46d3..f5c41f82d 100644 --- a/openvpn/pia/tcp-strong/Finland.ovpn +++ b/openvpn/pia/tcp-strong/Finland.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/France.ovpn b/openvpn/pia/tcp-strong/France.ovpn index 1ddc331d8..de19664d5 100644 --- a/openvpn/pia/tcp-strong/France.ovpn +++ b/openvpn/pia/tcp-strong/France.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Hong Kong.ovpn b/openvpn/pia/tcp-strong/Hong Kong.ovpn index 0321cc0b8..359200ac5 100644 --- a/openvpn/pia/tcp-strong/Hong Kong.ovpn +++ b/openvpn/pia/tcp-strong/Hong Kong.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Hungary.ovpn b/openvpn/pia/tcp-strong/Hungary.ovpn new file mode 100644 index 000000000..db0cf0f25 --- /dev/null +++ b/openvpn/pia/tcp-strong/Hungary.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote hungary.privateinternetaccess.com 501 +resolv-retry infinite +nobind +persist-key +persist-tun +cipher aes-256-cbc +auth sha256 +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/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt +disable-occ diff --git a/openvpn/pia/tcp-strong/India.ovpn b/openvpn/pia/tcp-strong/India.ovpn index 36f8a9d11..c0669dd5b 100644 --- a/openvpn/pia/tcp-strong/India.ovpn +++ b/openvpn/pia/tcp-strong/India.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Ireland.ovpn b/openvpn/pia/tcp-strong/Ireland.ovpn index ec312fb08..e48e8937a 100644 --- a/openvpn/pia/tcp-strong/Ireland.ovpn +++ b/openvpn/pia/tcp-strong/Ireland.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Israel.ovpn b/openvpn/pia/tcp-strong/Israel.ovpn index 15748021c..1a5b71f0b 100644 --- a/openvpn/pia/tcp-strong/Israel.ovpn +++ b/openvpn/pia/tcp-strong/Israel.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Italy.ovpn b/openvpn/pia/tcp-strong/Italy.ovpn index 6a434c94e..79d433737 100644 --- a/openvpn/pia/tcp-strong/Italy.ovpn +++ b/openvpn/pia/tcp-strong/Italy.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Japan.ovpn b/openvpn/pia/tcp-strong/Japan.ovpn index 1a63ccdc9..5eb3e8252 100644 --- a/openvpn/pia/tcp-strong/Japan.ovpn +++ b/openvpn/pia/tcp-strong/Japan.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Mexico.ovpn b/openvpn/pia/tcp-strong/Mexico.ovpn index d3af438b4..4287a37a1 100644 --- a/openvpn/pia/tcp-strong/Mexico.ovpn +++ b/openvpn/pia/tcp-strong/Mexico.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Netherlands.ovpn b/openvpn/pia/tcp-strong/Netherlands.ovpn index a2148f873..ecdb560ad 100644 --- a/openvpn/pia/tcp-strong/Netherlands.ovpn +++ b/openvpn/pia/tcp-strong/Netherlands.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/New Zealand.ovpn b/openvpn/pia/tcp-strong/New Zealand.ovpn index ddd0541f7..1100f08a5 100644 --- a/openvpn/pia/tcp-strong/New Zealand.ovpn +++ b/openvpn/pia/tcp-strong/New Zealand.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 tls-client remote-cert-tls server + auth-user-pass /config/openvpn-credentials.txt comp-lzo verb 1 reneg-sec 0 -crl-verify crl.rsa.4096.pem -ca ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Norway.ovpn b/openvpn/pia/tcp-strong/Norway.ovpn index e1cbfcd63..0e8b20e0d 100644 --- a/openvpn/pia/tcp-strong/Norway.ovpn +++ b/openvpn/pia/tcp-strong/Norway.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Poland.ovpn b/openvpn/pia/tcp-strong/Poland.ovpn new file mode 100644 index 000000000..45512698a --- /dev/null +++ b/openvpn/pia/tcp-strong/Poland.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote poland.privateinternetaccess.com 501 +resolv-retry infinite +nobind +persist-key +persist-tun +cipher aes-256-cbc +auth sha256 +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/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt +disable-occ diff --git a/openvpn/pia/tcp-strong/Romania.ovpn b/openvpn/pia/tcp-strong/Romania.ovpn index 35c6948fd..c0703e360 100644 --- a/openvpn/pia/tcp-strong/Romania.ovpn +++ b/openvpn/pia/tcp-strong/Romania.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Singapore.ovpn b/openvpn/pia/tcp-strong/Singapore.ovpn index 6a5ca192c..262a1b598 100644 --- a/openvpn/pia/tcp-strong/Singapore.ovpn +++ b/openvpn/pia/tcp-strong/Singapore.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Spain.ovpn b/openvpn/pia/tcp-strong/Spain.ovpn index dc0b81a61..c21599867 100644 --- a/openvpn/pia/tcp-strong/Spain.ovpn +++ b/openvpn/pia/tcp-strong/Spain.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Sweden.ovpn b/openvpn/pia/tcp-strong/Sweden.ovpn index d272dbabd..6d7338165 100644 --- a/openvpn/pia/tcp-strong/Sweden.ovpn +++ b/openvpn/pia/tcp-strong/Sweden.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Switzerland.ovpn b/openvpn/pia/tcp-strong/Switzerland.ovpn index 63d06ad03..5067f845c 100644 --- a/openvpn/pia/tcp-strong/Switzerland.ovpn +++ b/openvpn/pia/tcp-strong/Switzerland.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/Turkey.ovpn b/openvpn/pia/tcp-strong/Turkey.ovpn index 31b7081a9..a98da629b 100644 --- a/openvpn/pia/tcp-strong/Turkey.ovpn +++ b/openvpn/pia/tcp-strong/Turkey.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/UK London.ovpn b/openvpn/pia/tcp-strong/UK London.ovpn index ccc9b8a5e..24653384b 100644 --- a/openvpn/pia/tcp-strong/UK London.ovpn +++ b/openvpn/pia/tcp-strong/UK London.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/UK Manchester.ovpn b/openvpn/pia/tcp-strong/UK Manchester.ovpn index c97a2982c..e0959d092 100644 --- a/openvpn/pia/tcp-strong/UK Manchester.ovpn +++ b/openvpn/pia/tcp-strong/UK Manchester.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/UK Southampton.ovpn b/openvpn/pia/tcp-strong/UK Southampton.ovpn index 70401ed77..b21f47256 100644 --- a/openvpn/pia/tcp-strong/UK Southampton.ovpn +++ b/openvpn/pia/tcp-strong/UK Southampton.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US Atlanta.ovpn b/openvpn/pia/tcp-strong/US Atlanta.ovpn index f64ac750f..86f777936 100644 --- a/openvpn/pia/tcp-strong/US Atlanta.ovpn +++ b/openvpn/pia/tcp-strong/US Atlanta.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US California.ovpn b/openvpn/pia/tcp-strong/US California.ovpn index 81cdbe257..2912106e4 100644 --- a/openvpn/pia/tcp-strong/US California.ovpn +++ b/openvpn/pia/tcp-strong/US California.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US Chicago.ovpn b/openvpn/pia/tcp-strong/US Chicago.ovpn index aaf03de96..2459d898a 100644 --- a/openvpn/pia/tcp-strong/US Chicago.ovpn +++ b/openvpn/pia/tcp-strong/US Chicago.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US East.ovpn b/openvpn/pia/tcp-strong/US East.ovpn index b453767a4..3b3cde98f 100644 --- a/openvpn/pia/tcp-strong/US East.ovpn +++ b/openvpn/pia/tcp-strong/US East.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US Florida.ovpn b/openvpn/pia/tcp-strong/US Florida.ovpn index f06d1c395..b2461df4d 100644 --- a/openvpn/pia/tcp-strong/US Florida.ovpn +++ b/openvpn/pia/tcp-strong/US Florida.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US Houston.ovpn b/openvpn/pia/tcp-strong/US Houston.ovpn new file mode 100644 index 000000000..07230b456 --- /dev/null +++ b/openvpn/pia/tcp-strong/US Houston.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote us-houston.privateinternetaccess.com 501 +resolv-retry infinite +nobind +persist-key +persist-tun +cipher aes-256-cbc +auth sha256 +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/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt +disable-occ diff --git a/openvpn/pia/tcp-strong/US Las Vegas.ovpn b/openvpn/pia/tcp-strong/US Las Vegas.ovpn index c3870b397..7c131a94d 100644 --- a/openvpn/pia/tcp-strong/US Las Vegas.ovpn +++ b/openvpn/pia/tcp-strong/US Las Vegas.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US Midwest.ovpn b/openvpn/pia/tcp-strong/US Midwest.ovpn index 158358e72..b29a0ff15 100644 --- a/openvpn/pia/tcp-strong/US Midwest.ovpn +++ b/openvpn/pia/tcp-strong/US Midwest.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US New York City.ovpn b/openvpn/pia/tcp-strong/US New York City.ovpn index afc4d2907..d64c96819 100644 --- a/openvpn/pia/tcp-strong/US New York City.ovpn +++ b/openvpn/pia/tcp-strong/US New York City.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US Seattle.ovpn b/openvpn/pia/tcp-strong/US Seattle.ovpn index c176f1ffa..262382e9b 100644 --- a/openvpn/pia/tcp-strong/US Seattle.ovpn +++ b/openvpn/pia/tcp-strong/US Seattle.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US Silicon Valley.ovpn b/openvpn/pia/tcp-strong/US Silicon Valley.ovpn index 77cf5a946..108ece334 100644 --- a/openvpn/pia/tcp-strong/US Silicon Valley.ovpn +++ b/openvpn/pia/tcp-strong/US Silicon Valley.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US Texas.ovpn b/openvpn/pia/tcp-strong/US Texas.ovpn index 3669f17ab..d503d4886 100644 --- a/openvpn/pia/tcp-strong/US Texas.ovpn +++ b/openvpn/pia/tcp-strong/US Texas.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/US Washington DC.ovpn b/openvpn/pia/tcp-strong/US Washington DC.ovpn new file mode 100644 index 000000000..643c780c7 --- /dev/null +++ b/openvpn/pia/tcp-strong/US Washington DC.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote us-washingtondc.privateinternetaccess.com 501 +resolv-retry infinite +nobind +persist-key +persist-tun +cipher aes-256-cbc +auth sha256 +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/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt +disable-occ diff --git a/openvpn/pia/tcp-strong/US West.ovpn b/openvpn/pia/tcp-strong/US West.ovpn index a2038cfcc..1207c5396 100644 --- a/openvpn/pia/tcp-strong/US West.ovpn +++ b/openvpn/pia/tcp-strong/US West.ovpn @@ -10,10 +10,11 @@ cipher aes-256-cbc auth sha256 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/strong/crl.rsa.4096.pem -ca /etc/openvpn/pia/strong/ca.rsa.4096.crt +crl-verify /etc/openvpn/pia/tcp-strong/crl.rsa.4096.pem +ca /etc/openvpn/pia/tcp-strong/ca.rsa.4096.crt disable-occ diff --git a/openvpn/pia/tcp-strong/ca.rsa.4096.crt b/openvpn/pia/tcp-strong/ca.rsa.4096.crt new file mode 100644 index 000000000..82dec692d --- /dev/null +++ b/openvpn/pia/tcp-strong/ca.rsa.4096.crt @@ -0,0 +1,43 @@ +-----BEGIN CERTIFICATE----- +MIIHqzCCBZOgAwIBAgIJAJ0u+vODZJntMA0GCSqGSIb3DQEBDQUAMIHoMQswCQYD +VQQGEwJVUzELMAkGA1UECBMCQ0ExEzARBgNVBAcTCkxvc0FuZ2VsZXMxIDAeBgNV +BAoTF1ByaXZhdGUgSW50ZXJuZXQgQWNjZXNzMSAwHgYDVQQLExdQcml2YXRlIElu +dGVybmV0IEFjY2VzczEgMB4GA1UEAxMXUHJpdmF0ZSBJbnRlcm5ldCBBY2Nlc3Mx +IDAeBgNVBCkTF1ByaXZhdGUgSW50ZXJuZXQgQWNjZXNzMS8wLQYJKoZIhvcNAQkB +FiBzZWN1cmVAcHJpdmF0ZWludGVybmV0YWNjZXNzLmNvbTAeFw0xNDA0MTcxNzQw +MzNaFw0zNDA0MTIxNzQwMzNaMIHoMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0Ex +EzARBgNVBAcTCkxvc0FuZ2VsZXMxIDAeBgNVBAoTF1ByaXZhdGUgSW50ZXJuZXQg +QWNjZXNzMSAwHgYDVQQLExdQcml2YXRlIEludGVybmV0IEFjY2VzczEgMB4GA1UE +AxMXUHJpdmF0ZSBJbnRlcm5ldCBBY2Nlc3MxIDAeBgNVBCkTF1ByaXZhdGUgSW50 +ZXJuZXQgQWNjZXNzMS8wLQYJKoZIhvcNAQkBFiBzZWN1cmVAcHJpdmF0ZWludGVy +bmV0YWNjZXNzLmNvbTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALVk +hjumaqBbL8aSgj6xbX1QPTfTd1qHsAZd2B97m8Vw31c/2yQgZNf5qZY0+jOIHULN +De4R9TIvyBEbvnAg/OkPw8n/+ScgYOeH876VUXzjLDBnDb8DLr/+w9oVsuDeFJ9K +V2UFM1OYX0SnkHnrYAN2QLF98ESK4NCSU01h5zkcgmQ+qKSfA9Ny0/UpsKPBFqsQ +25NvjDWFhCpeqCHKUJ4Be27CDbSl7lAkBuHMPHJs8f8xPgAbHRXZOxVCpayZ2SND +fCwsnGWpWFoMGvdMbygngCn6jA/W1VSFOlRlfLuuGe7QFfDwA0jaLCxuWt/BgZyl +p7tAzYKR8lnWmtUCPm4+BtjyVDYtDCiGBD9Z4P13RFWvJHw5aapx/5W/CuvVyI7p +Kwvc2IT+KPxCUhH1XI8ca5RN3C9NoPJJf6qpg4g0rJH3aaWkoMRrYvQ+5PXXYUzj +tRHImghRGd/ydERYoAZXuGSbPkm9Y/p2X8unLcW+F0xpJD98+ZI+tzSsI99Zs5wi +jSUGYr9/j18KHFTMQ8n+1jauc5bCCegN27dPeKXNSZ5riXFL2XX6BkY68y58UaNz +meGMiUL9BOV1iV+PMb7B7PYs7oFLjAhh0EdyvfHkrh/ZV9BEhtFa7yXp8XR0J6vz +1YV9R6DYJmLjOEbhU8N0gc3tZm4Qz39lIIG6w3FDAgMBAAGjggFUMIIBUDAdBgNV +HQ4EFgQUrsRtyWJftjpdRM0+925Y6Cl08SUwggEfBgNVHSMEggEWMIIBEoAUrsRt +yWJftjpdRM0+925Y6Cl08SWhge6kgeswgegxCzAJBgNVBAYTAlVTMQswCQYDVQQI +EwJDQTETMBEGA1UEBxMKTG9zQW5nZWxlczEgMB4GA1UEChMXUHJpdmF0ZSBJbnRl +cm5ldCBBY2Nlc3MxIDAeBgNVBAsTF1ByaXZhdGUgSW50ZXJuZXQgQWNjZXNzMSAw +HgYDVQQDExdQcml2YXRlIEludGVybmV0IEFjY2VzczEgMB4GA1UEKRMXUHJpdmF0 +ZSBJbnRlcm5ldCBBY2Nlc3MxLzAtBgkqhkiG9w0BCQEWIHNlY3VyZUBwcml2YXRl +aW50ZXJuZXRhY2Nlc3MuY29tggkAnS7684Nkme0wDAYDVR0TBAUwAwEB/zANBgkq +hkiG9w0BAQ0FAAOCAgEAJsfhsPk3r8kLXLxY+v+vHzbr4ufNtqnL9/1Uuf8NrsCt +pXAoyZ0YqfbkWx3NHTZ7OE9ZRhdMP/RqHQE1p4N4Sa1nZKhTKasV6KhHDqSCt/dv +Em89xWm2MVA7nyzQxVlHa9AkcBaemcXEiyT19XdpiXOP4Vhs+J1R5m8zQOxZlV1G +tF9vsXmJqWZpOVPmZ8f35BCsYPvv4yMewnrtAC8PFEK/bOPeYcKN50bol22QYaZu +LfpkHfNiFTnfMh8sl/ablPyNY7DUNiP5DRcMdIwmfGQxR5WEQoHL3yPJ42LkB5zs +6jIm26DGNXfwura/mi105+ENH1CaROtRYwkiHb08U6qLXXJz80mWJkT90nr8Asj3 +5xN2cUppg74nG3YVav/38P48T56hG1NHbYF5uOCske19F6wi9maUoto/3vEr0rnX +JUp2KODmKdvBI7co245lHBABWikk8VfejQSlCtDBXn644ZMtAdoxKNfR2WTFVEwJ +iyd1Fzx0yujuiXDROLhISLQDRjVVAvawrAtLZWYK31bY7KlezPlQnl/D9Asxe85l +8jO5+0LdJ6VyOs/Hd4w52alDW/MFySDZSfQHMTIc30hLBJ8OnCEIvluVQQ2UQvoW ++no177N9L2Y+M9TcTA62ZyMXShHQGeh20rb4kK8f+iFX8NxtdHVSkxMEFSfDDyQ= +-----END CERTIFICATE----- diff --git a/openvpn/pia/tcp-strong/crl.rsa.4096.pem b/openvpn/pia/tcp-strong/crl.rsa.4096.pem new file mode 100644 index 000000000..dbc26b216 --- /dev/null +++ b/openvpn/pia/tcp-strong/crl.rsa.4096.pem @@ -0,0 +1,20 @@ +-----BEGIN X509 CRL----- +MIIDWDCCAUAwDQYJKoZIhvcNAQENBQAwgegxCzAJBgNVBAYTAlVTMQswCQYDVQQI +EwJDQTETMBEGA1UEBxMKTG9zQW5nZWxlczEgMB4GA1UEChMXUHJpdmF0ZSBJbnRl +cm5ldCBBY2Nlc3MxIDAeBgNVBAsTF1ByaXZhdGUgSW50ZXJuZXQgQWNjZXNzMSAw +HgYDVQQDExdQcml2YXRlIEludGVybmV0IEFjY2VzczEgMB4GA1UEKRMXUHJpdmF0 +ZSBJbnRlcm5ldCBBY2Nlc3MxLzAtBgkqhkiG9w0BCQEWIHNlY3VyZUBwcml2YXRl +aW50ZXJuZXRhY2Nlc3MuY29tFw0xNjA3MDgxOTAwNDZaFw0zNjA3MDMxOTAwNDZa +MCYwEQIBARcMMTYwNzA4MTkwMDQ2MBECAQYXDDE2MDcwODE5MDA0NjANBgkqhkiG +9w0BAQ0FAAOCAgEAppFfEpGsasjB1QgJcosGpzbf2kfRhM84o2TlqY1ua+Gi5TMd +KydA3LJcNTjlI9a0TYAJfeRX5IkpoglSUuHuJgXhP3nEvX10mjXDpcu/YvM8TdE5 +JV2+EGqZ80kFtBeOq94WcpiVKFTR4fO+VkOK9zwspFfb1cNs9rHvgJ1QMkRUF8Pp +LN6AkntHY0+6DnigtSaKqldqjKTDTv2OeH3nPoh80SGrt0oCOmYKfWTJGpggMGKv +IdvU3vH9+EuILZKKIskt+1dwdfA5Bkz1GLmiQG7+9ZZBQUjBG9Dos4hfX/rwJ3eU +8oUIm4WoTz9rb71SOEuUUjP5NPy9HNx2vx+cVvLsTF4ZDZaUztW9o9JmIURDtbey +qxuHN3prlPWB6aj73IIm2dsDQvs3XXwRIxs8NwLbJ6CyEuvEOVCskdM8rdADWx1J +0lRNlOJ0Z8ieLLEmYAA834VN1SboB6wJIAPxQU3rcBhXqO9y8aa2oRMg8NxZ5gr+ +PnKVMqag1x0IxbIgLxtkXQvxXxQHEMSODzvcOfK/nBRBsqTj30P+R87sU8titOox +NeRnBDRNhdEy/QGAqGh62ShPpQUCJdnKRiRTjnil9hMQHevoSuFKeEMO30FQL7BZ +yo37GFU+q1WPCplVZgCP9hC8Rn5K2+f6KLFo5bhtowSmu+GY1yZtg+RTtsA= +-----END X509 CRL----- diff --git a/openvpn/pia/tcp/AU Melbourne.ovpn b/openvpn/pia/tcp/AU Melbourne.ovpn index 6ec3fc9a8..33c4ec3fe 100644 --- a/openvpn/pia/tcp/AU Melbourne.ovpn +++ b/openvpn/pia/tcp/AU Melbourne.ovpn @@ -1,7 +1,7 @@ client dev tun proto tcp -remote aus-melbourne.privateinternetaccess.com 502 +remote au-melbourne.privateinternetaccess.com 502 resolv-retry infinite nobind persist-key @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/AU Sydney.ovpn b/openvpn/pia/tcp/AU Sydney.ovpn index 938da8778..bea18f4bd 100644 --- a/openvpn/pia/tcp/AU Sydney.ovpn +++ b/openvpn/pia/tcp/AU Sydney.ovpn @@ -1,7 +1,7 @@ client dev tun proto tcp -remote aus.privateinternetaccess.com 502 +remote au-sydney.privateinternetaccess.com 502 resolv-retry infinite nobind persist-key @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Austria.ovpn b/openvpn/pia/tcp/Austria.ovpn index c733d79ae..d4ffceff9 100644 --- a/openvpn/pia/tcp/Austria.ovpn +++ b/openvpn/pia/tcp/Austria.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Belgium.ovpn b/openvpn/pia/tcp/Belgium.ovpn index 97d5662ee..b1dbc5e06 100644 --- a/openvpn/pia/tcp/Belgium.ovpn +++ b/openvpn/pia/tcp/Belgium.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Brazil.ovpn b/openvpn/pia/tcp/Brazil.ovpn index 1acc44716..632a45374 100644 --- a/openvpn/pia/tcp/Brazil.ovpn +++ b/openvpn/pia/tcp/Brazil.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/CA Montreal.ovpn b/openvpn/pia/tcp/CA Montreal.ovpn index 06f467bc7..38bff6c6d 100644 --- a/openvpn/pia/tcp/CA Montreal.ovpn +++ b/openvpn/pia/tcp/CA Montreal.ovpn @@ -1,7 +1,7 @@ client dev tun proto tcp -remote ca.privateinternetaccess.com 502 +remote ca-montreal.privateinternetaccess.com 502 resolv-retry infinite nobind persist-key @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/CA Toronto.ovpn b/openvpn/pia/tcp/CA Toronto.ovpn index bffa61946..d21ffbf23 100644 --- a/openvpn/pia/tcp/CA Toronto.ovpn +++ b/openvpn/pia/tcp/CA Toronto.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/CA Vancouver.ovpn b/openvpn/pia/tcp/CA Vancouver.ovpn index 484529ad3..e2669a5fa 100644 --- a/openvpn/pia/tcp/CA Vancouver.ovpn +++ b/openvpn/pia/tcp/CA Vancouver.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Czech Republic.ovpn b/openvpn/pia/tcp/Czech Republic.ovpn index 4f8ed4853..fe316f4f1 100644 --- a/openvpn/pia/tcp/Czech Republic.ovpn +++ b/openvpn/pia/tcp/Czech Republic.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/DE Berlin.ovpn b/openvpn/pia/tcp/DE Berlin.ovpn new file mode 100644 index 000000000..d731101a0 --- /dev/null +++ b/openvpn/pia/tcp/DE Berlin.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote de-berlin.privateinternetaccess.com 502 +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/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt +disable-occ diff --git a/openvpn/pia/tcp/DE Frankfurt.ovpn b/openvpn/pia/tcp/DE Frankfurt.ovpn new file mode 100644 index 000000000..f8a7b6141 --- /dev/null +++ b/openvpn/pia/tcp/DE Frankfurt.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote de-frankfurt.privateinternetaccess.com 502 +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/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt +disable-occ diff --git a/openvpn/pia/tcp/Denmark.ovpn b/openvpn/pia/tcp/Denmark.ovpn index 2972ed89f..e21cc80a3 100644 --- a/openvpn/pia/tcp/Denmark.ovpn +++ b/openvpn/pia/tcp/Denmark.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Finland.ovpn b/openvpn/pia/tcp/Finland.ovpn index 83600970e..7f7d00810 100644 --- a/openvpn/pia/tcp/Finland.ovpn +++ b/openvpn/pia/tcp/Finland.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/France.ovpn b/openvpn/pia/tcp/France.ovpn index 32fb0207c..42927afb1 100644 --- a/openvpn/pia/tcp/France.ovpn +++ b/openvpn/pia/tcp/France.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Hong Kong.ovpn b/openvpn/pia/tcp/Hong Kong.ovpn index 8371a77e2..a93e90397 100644 --- a/openvpn/pia/tcp/Hong Kong.ovpn +++ b/openvpn/pia/tcp/Hong Kong.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Hungary.ovpn b/openvpn/pia/tcp/Hungary.ovpn new file mode 100644 index 000000000..8967c855b --- /dev/null +++ b/openvpn/pia/tcp/Hungary.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote hungary.privateinternetaccess.com 502 +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/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt +disable-occ diff --git a/openvpn/pia/tcp/India.ovpn b/openvpn/pia/tcp/India.ovpn index ad0b41dce..ced9305f8 100644 --- a/openvpn/pia/tcp/India.ovpn +++ b/openvpn/pia/tcp/India.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Ireland.ovpn b/openvpn/pia/tcp/Ireland.ovpn index 621b89856..0d662c6d4 100644 --- a/openvpn/pia/tcp/Ireland.ovpn +++ b/openvpn/pia/tcp/Ireland.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Israel.ovpn b/openvpn/pia/tcp/Israel.ovpn index 346d3192e..7d0562022 100644 --- a/openvpn/pia/tcp/Israel.ovpn +++ b/openvpn/pia/tcp/Israel.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Italy.ovpn b/openvpn/pia/tcp/Italy.ovpn index 966089d1d..488cd1344 100644 --- a/openvpn/pia/tcp/Italy.ovpn +++ b/openvpn/pia/tcp/Italy.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Japan.ovpn b/openvpn/pia/tcp/Japan.ovpn index b145507f9..661cb9547 100644 --- a/openvpn/pia/tcp/Japan.ovpn +++ b/openvpn/pia/tcp/Japan.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Mexico.ovpn b/openvpn/pia/tcp/Mexico.ovpn index 04c23286e..879f38f0a 100644 --- a/openvpn/pia/tcp/Mexico.ovpn +++ b/openvpn/pia/tcp/Mexico.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Netherlands.ovpn b/openvpn/pia/tcp/Netherlands.ovpn index 6afef283b..6418f67c2 100644 --- a/openvpn/pia/tcp/Netherlands.ovpn +++ b/openvpn/pia/tcp/Netherlands.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/New Zealand.ovpn b/openvpn/pia/tcp/New Zealand.ovpn index a470a71c4..df1379024 100644 --- a/openvpn/pia/tcp/New Zealand.ovpn +++ b/openvpn/pia/tcp/New Zealand.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Norway.ovpn b/openvpn/pia/tcp/Norway.ovpn index a63afa01a..a14e03a71 100644 --- a/openvpn/pia/tcp/Norway.ovpn +++ b/openvpn/pia/tcp/Norway.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Poland.ovpn b/openvpn/pia/tcp/Poland.ovpn new file mode 100644 index 000000000..0bf20dc5d --- /dev/null +++ b/openvpn/pia/tcp/Poland.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote poland.privateinternetaccess.com 502 +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/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt +disable-occ diff --git a/openvpn/pia/tcp/Romania.ovpn b/openvpn/pia/tcp/Romania.ovpn index 6ab4035b5..801439c54 100644 --- a/openvpn/pia/tcp/Romania.ovpn +++ b/openvpn/pia/tcp/Romania.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Singapore.ovpn b/openvpn/pia/tcp/Singapore.ovpn index b02495c6c..ff5a3fa2b 100644 --- a/openvpn/pia/tcp/Singapore.ovpn +++ b/openvpn/pia/tcp/Singapore.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Spain.ovpn b/openvpn/pia/tcp/Spain.ovpn index 2b3c7d82c..b0ba9041e 100644 --- a/openvpn/pia/tcp/Spain.ovpn +++ b/openvpn/pia/tcp/Spain.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Sweden.ovpn b/openvpn/pia/tcp/Sweden.ovpn index 03e7d95c3..ecb3be8ca 100644 --- a/openvpn/pia/tcp/Sweden.ovpn +++ b/openvpn/pia/tcp/Sweden.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Switzerland.ovpn b/openvpn/pia/tcp/Switzerland.ovpn index b5613a1d2..1fc1ed9d9 100644 --- a/openvpn/pia/tcp/Switzerland.ovpn +++ b/openvpn/pia/tcp/Switzerland.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/Turkey.ovpn b/openvpn/pia/tcp/Turkey.ovpn index 59523ea42..e158d335e 100644 --- a/openvpn/pia/tcp/Turkey.ovpn +++ b/openvpn/pia/tcp/Turkey.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/UK London.ovpn b/openvpn/pia/tcp/UK London.ovpn index 200a5d43c..b7b0afd05 100644 --- a/openvpn/pia/tcp/UK London.ovpn +++ b/openvpn/pia/tcp/UK London.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/UK Manchester.ovpn b/openvpn/pia/tcp/UK Manchester.ovpn index 06a2ea93f..f36f1c49f 100644 --- a/openvpn/pia/tcp/UK Manchester.ovpn +++ b/openvpn/pia/tcp/UK Manchester.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/UK Southampton.ovpn b/openvpn/pia/tcp/UK Southampton.ovpn index 5f18b258d..86dde61c2 100644 --- a/openvpn/pia/tcp/UK Southampton.ovpn +++ b/openvpn/pia/tcp/UK Southampton.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US Atlanta.ovpn b/openvpn/pia/tcp/US Atlanta.ovpn index 545bde276..2a984685f 100644 --- a/openvpn/pia/tcp/US Atlanta.ovpn +++ b/openvpn/pia/tcp/US Atlanta.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US California.ovpn b/openvpn/pia/tcp/US California.ovpn index 08ee4d26d..e896492a9 100644 --- a/openvpn/pia/tcp/US California.ovpn +++ b/openvpn/pia/tcp/US California.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US Chicago.ovpn b/openvpn/pia/tcp/US Chicago.ovpn index 63faba43b..73c4daf0e 100644 --- a/openvpn/pia/tcp/US Chicago.ovpn +++ b/openvpn/pia/tcp/US Chicago.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US East.ovpn b/openvpn/pia/tcp/US East.ovpn index 7386f75b8..2ade36c0d 100644 --- a/openvpn/pia/tcp/US East.ovpn +++ b/openvpn/pia/tcp/US East.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US Florida.ovpn b/openvpn/pia/tcp/US Florida.ovpn index c5e77350a..cc936f426 100644 --- a/openvpn/pia/tcp/US Florida.ovpn +++ b/openvpn/pia/tcp/US Florida.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US Houston.ovpn b/openvpn/pia/tcp/US Houston.ovpn new file mode 100644 index 000000000..41c8c7c67 --- /dev/null +++ b/openvpn/pia/tcp/US Houston.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote us-houston.privateinternetaccess.com 502 +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/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt +disable-occ diff --git a/openvpn/pia/tcp/US Las Vegas.ovpn b/openvpn/pia/tcp/US Las Vegas.ovpn index 96578b403..98278d3b2 100644 --- a/openvpn/pia/tcp/US Las Vegas.ovpn +++ b/openvpn/pia/tcp/US Las Vegas.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US Midwest.ovpn b/openvpn/pia/tcp/US Midwest.ovpn index a30760be7..88b4a25db 100644 --- a/openvpn/pia/tcp/US Midwest.ovpn +++ b/openvpn/pia/tcp/US Midwest.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US New York City.ovpn b/openvpn/pia/tcp/US New York City.ovpn index 43d39f384..ad71a3879 100644 --- a/openvpn/pia/tcp/US New York City.ovpn +++ b/openvpn/pia/tcp/US New York City.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US Seattle.ovpn b/openvpn/pia/tcp/US Seattle.ovpn index ab0a7fafa..d794da580 100644 --- a/openvpn/pia/tcp/US Seattle.ovpn +++ b/openvpn/pia/tcp/US Seattle.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US Silicon Valley.ovpn b/openvpn/pia/tcp/US Silicon Valley.ovpn index d5c4e90ea..93b85241d 100644 --- a/openvpn/pia/tcp/US Silicon Valley.ovpn +++ b/openvpn/pia/tcp/US Silicon Valley.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US Texas.ovpn b/openvpn/pia/tcp/US Texas.ovpn index a5a5ab9c0..fb60697e0 100644 --- a/openvpn/pia/tcp/US Texas.ovpn +++ b/openvpn/pia/tcp/US Texas.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/US Washington DC.ovpn b/openvpn/pia/tcp/US Washington DC.ovpn new file mode 100644 index 000000000..c2c6b58f8 --- /dev/null +++ b/openvpn/pia/tcp/US Washington DC.ovpn @@ -0,0 +1,20 @@ +client +dev tun +proto tcp +remote us-washingtondc.privateinternetaccess.com 502 +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/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt +disable-occ diff --git a/openvpn/pia/tcp/US West.ovpn b/openvpn/pia/tcp/US West.ovpn index c9b1d0453..5b6ce6994 100644 --- a/openvpn/pia/tcp/US West.ovpn +++ b/openvpn/pia/tcp/US West.ovpn @@ -10,10 +10,11 @@ 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 +crl-verify /etc/openvpn/pia/tcp/crl.rsa.2048.pem +ca /etc/openvpn/pia/tcp/ca.rsa.2048.crt disable-occ diff --git a/openvpn/pia/tcp/ca.rsa.2048.crt b/openvpn/pia/tcp/ca.rsa.2048.crt new file mode 100644 index 000000000..6deea6063 --- /dev/null +++ b/openvpn/pia/tcp/ca.rsa.2048.crt @@ -0,0 +1,33 @@ +-----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----- diff --git a/openvpn/pia/tcp/crl.rsa.2048.pem b/openvpn/pia/tcp/crl.rsa.2048.pem new file mode 100644 index 000000000..a58ef56cf --- /dev/null +++ b/openvpn/pia/tcp/crl.rsa.2048.pem @@ -0,0 +1,15 @@ +-----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----- From 0ada6638306de27b0f1b757e9425e7cd56828184 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Bor=C3=BDsek?= Date: Tue, 10 Jul 2018 15:16:47 +0200 Subject: [PATCH 4/4] PIA change default ref #549 --- README.md | 6 +++--- openvpn/pia/default.ovpn | 2 +- openvpn/pia/updateConfigs.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 191c258a8..360f5a84c 100644 --- a/README.md +++ b/README.md @@ -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 \ @@ -379,7 +379,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" \ @@ -424,7 +424,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 \ diff --git a/openvpn/pia/default.ovpn b/openvpn/pia/default.ovpn index d190674ba..128239dce 120000 --- a/openvpn/pia/default.ovpn +++ b/openvpn/pia/default.ovpn @@ -1 +1 @@ -Netherlands.ovpn \ No newline at end of file +CA Toronto.ovpn \ No newline at end of file diff --git a/openvpn/pia/updateConfigs.sh b/openvpn/pia/updateConfigs.sh index b4ef76b1c..7cc84f07f 100755 --- a/openvpn/pia/updateConfigs.sh +++ b/openvpn/pia/updateConfigs.sh @@ -46,4 +46,4 @@ do done # Create symlink for default.ovpn -ln -s Netherlands.ovpn default.ovpn +ln -s "CA Toronto.ovpn" default.ovpn