diff --git a/README.md b/README.md index 8cc34ff..35f8999 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Transmission with WebUI and OpenVPN -Docker container which runs Transmission torrent client with WebUI while connecting to OpenVPN. +Docker container which runs Transmission torrent client with WebUI while connecting to OpenVPN. It bundles certificates and configurations for the following VPN providers: * Private Internet Access * BTGuard @@ -11,6 +11,7 @@ It bundles certificates and configurations for the following VPN providers: * IPVanish * Anonine * HideMe +* PureVPN When using PIA as provider it will update Transmission hourly with assigned open port. Please read the instructions below. @@ -34,7 +35,7 @@ You must set the environment variables `OPENVPN_PROVIDER`, `OPENVPN_USERNAME` an The `OPENVPN_CONFIG` is an optional variable. If no config is given, a default config will be selected for the provider you have chosen. Find available OpenVPN configurations by looking in the openvpn folder of the GitHub repository. -As you can see, the container also expects a data volume to be mounted. +As you can see, the container also expects a data volume to be mounted. This is where Transmission will store your downloads, incomplete downloads and look for a watch directory for new .torrent files. By default a folder named transmission-home will also be created under /data, this is where Transmission stores its state. @@ -42,7 +43,7 @@ By default a folder named transmission-home will also be created under /data, th ### Required environment options | Variable | Function | Example | |----------|----------|-------| -|`OPENVPN_PROVIDER` | Sets the OpenVPN provider to use. | `OPENVPN_PROVIDER=provider`. Supported providers are `PIA`, `BTGUARD`, `TIGER`, `FROOT`, `TORGUARD`, `NORDVPN`, `USENETSERVER`, `IPVANISH`, `ANONINE` and `HIDEME` | +|`OPENVPN_PROVIDER` | Sets the OpenVPN provider to use. | `OPENVPN_PROVIDER=provider`. Supported providers are `PIA`, `BTGUARD`, `TIGER`, `FROOT`, `TORGUARD`, `NORDVPN`, `USENETSERVER`, `IPVANISH`, `ANONINE`, `HIDEME` and `PUREVPN` | |`OPENVPN_USERNAME`|Your OpenVPN username |`OPENVPN_USERNAME=asdf`| |`OPENVPN_PASSWORD`|Your OpenVPN password |`OPENVPN_PASSWORD=asdf`| @@ -55,7 +56,7 @@ By default a folder named transmission-home will also be created under /data, th You may override transmission options by setting the appropriate environment variable. -The environment variables are the same name as used in the transmission settings.json file +The environment variables are the same name as used in the transmission settings.json file and follow the format given in these examples: | Transmission variable name | Environment variable name | @@ -67,16 +68,16 @@ and follow the format given in these examples: As you can see the variables are prefixed with `TRANSMISSION_`, the variable is capitalized, and `-` is converted to `_`. -PS: `TRANSMISSION_BIND_ADDRESS_IPV4` will be overridden to the IP assigned to your OpenVPN tunnel interface. +PS: `TRANSMISSION_BIND_ADDRESS_IPV4` will be overridden to the IP assigned to your OpenVPN tunnel interface. This is to prevent leaking the host IP. ## Access the WebUI But what's going on? My http://my-host:9091 isn't responding? -This is because the VPN is active, and since docker is running in a different ip range than your client the response +This is because the VPN is active, and since docker is running in a different ip range than your client the response to your request will be treated as "non-local" traffic and therefore be routed out through the VPN interface. ### How to fix this -There are several ways to fix this. You can pipe and do fancy iptables or ip route configurations on the host and in +There are several ways to fix this. You can pipe and do fancy iptables or ip route configurations on the host and in the container. But I found that the simplest solution is just to proxy my traffic. Start an nginx container like this: ``` @@ -112,7 +113,7 @@ If you have this problem use dockers --dns flag to override the resolv.conf of t For example use googles dns servers by adding --dns 8.8.8.8 --dns 8.8.4.4 as parameters to the usual run command. 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. +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. ## Building the container yourself @@ -135,10 +136,10 @@ $ docker run --privileged -d \ transmission-openvpn ``` -This will start a container as described in the "Run container from Docker registry" section. +This will start a container as described in the "Run container from Docker registry" section. ## Controlling Transmission remotely The container exposes /config as a volume. This is the directory where the supplied transmission and OpenVPN credentials will be stored. -If you have transmission authentication enabled and want scripts in another container to access and +If you have transmission authentication enabled and want scripts in another container to access and control the transmission-daemon, this can be a handy way to access the credentials. For example, another container may pause or restrict transmission speeds while the server is streaming video. diff --git a/openvpn/purevpn/ALBANIA-TCP.ovpn b/openvpn/purevpn/ALBANIA-TCP.ovpn new file mode 100755 index 0000000..04bed0f --- /dev/null +++ b/openvpn/purevpn/ALBANIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote al1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ALBANIA-UDP.ovpn b/openvpn/purevpn/ALBANIA-UDP.ovpn new file mode 100755 index 0000000..0e8399e --- /dev/null +++ b/openvpn/purevpn/ALBANIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote al1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ARGENTINA-TCP.ovpn b/openvpn/purevpn/ARGENTINA-TCP.ovpn new file mode 100755 index 0000000..24a93cb --- /dev/null +++ b/openvpn/purevpn/ARGENTINA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ar1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ARGENTINA-UDP.ovpn b/openvpn/purevpn/ARGENTINA-UDP.ovpn new file mode 100755 index 0000000..14cad99 --- /dev/null +++ b/openvpn/purevpn/ARGENTINA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ar1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ARUBA-TCP.ovpn b/openvpn/purevpn/ARUBA-TCP.ovpn new file mode 100755 index 0000000..0ff4883 --- /dev/null +++ b/openvpn/purevpn/ARUBA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote aw1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ARUBA-UDP.ovpn b/openvpn/purevpn/ARUBA-UDP.ovpn new file mode 100755 index 0000000..e301fad --- /dev/null +++ b/openvpn/purevpn/ARUBA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote aw1-ovpn-udp.pointtoserver.com 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/AUSTRALIA-TCP.ovpn b/openvpn/purevpn/AUSTRALIA-TCP.ovpn new file mode 100755 index 0000000..10ce283 --- /dev/null +++ b/openvpn/purevpn/AUSTRALIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote au1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/AUSTRALIA-UDP.ovpn b/openvpn/purevpn/AUSTRALIA-UDP.ovpn new file mode 100755 index 0000000..8420f59 --- /dev/null +++ b/openvpn/purevpn/AUSTRALIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote au1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BAHAMAS-TCP.ovpn b/openvpn/purevpn/BAHAMAS-TCP.ovpn new file mode 100755 index 0000000..77db97c --- /dev/null +++ b/openvpn/purevpn/BAHAMAS-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote bs1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BAHAMAS-UDP.ovpn b/openvpn/purevpn/BAHAMAS-UDP.ovpn new file mode 100755 index 0000000..8f685f4 --- /dev/null +++ b/openvpn/purevpn/BAHAMAS-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote bs1-ovpn-udp.pointtoserver.com 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BAHRAIN-TCP.ovpn b/openvpn/purevpn/BAHRAIN-TCP.ovpn new file mode 100755 index 0000000..82d2090 --- /dev/null +++ b/openvpn/purevpn/BAHRAIN-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote bh1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BAHRAIN-UDP.ovpn b/openvpn/purevpn/BAHRAIN-UDP.ovpn new file mode 100755 index 0000000..fdb1dbe --- /dev/null +++ b/openvpn/purevpn/BAHRAIN-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote bh1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BELGIUM-TCP.ovpn b/openvpn/purevpn/BELGIUM-TCP.ovpn new file mode 100755 index 0000000..ebc0a2f --- /dev/null +++ b/openvpn/purevpn/BELGIUM-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote be1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BELGIUM-UDP.ovpn b/openvpn/purevpn/BELGIUM-UDP.ovpn new file mode 100755 index 0000000..f171fc3 --- /dev/null +++ b/openvpn/purevpn/BELGIUM-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote be1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BELIZE-TCP.ovpn b/openvpn/purevpn/BELIZE-TCP.ovpn new file mode 100755 index 0000000..e1330a2 --- /dev/null +++ b/openvpn/purevpn/BELIZE-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote bz1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BELIZE-UDP.ovpn b/openvpn/purevpn/BELIZE-UDP.ovpn new file mode 100755 index 0000000..949b4ba --- /dev/null +++ b/openvpn/purevpn/BELIZE-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote bz1-ovpn-udp.pointtoserver.com 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BOSNIA-HERZEGOWINA-TCP.ovpn b/openvpn/purevpn/BOSNIA-HERZEGOWINA-TCP.ovpn new file mode 100755 index 0000000..4ed457f --- /dev/null +++ b/openvpn/purevpn/BOSNIA-HERZEGOWINA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ba1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BOSNIA-HERZEGOWINA-UDP.ovpn b/openvpn/purevpn/BOSNIA-HERZEGOWINA-UDP.ovpn new file mode 100755 index 0000000..93b5b67 --- /dev/null +++ b/openvpn/purevpn/BOSNIA-HERZEGOWINA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ba1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BRUNEI-DARUSSALAM-TCP.ovpn b/openvpn/purevpn/BRUNEI-DARUSSALAM-TCP.ovpn new file mode 100755 index 0000000..50fe0f9 --- /dev/null +++ b/openvpn/purevpn/BRUNEI-DARUSSALAM-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote bn1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BRUNEI-DARUSSALAM-UDP.ovpn b/openvpn/purevpn/BRUNEI-DARUSSALAM-UDP.ovpn new file mode 100755 index 0000000..527f982 --- /dev/null +++ b/openvpn/purevpn/BRUNEI-DARUSSALAM-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote bn1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BULGARIA(V)-TCP.ovpn b/openvpn/purevpn/BULGARIA(V)-TCP.ovpn new file mode 100755 index 0000000..2b83340 --- /dev/null +++ b/openvpn/purevpn/BULGARIA(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlus-bg1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/BULGARIA-UDP.ovpn b/openvpn/purevpn/BULGARIA-UDP.ovpn new file mode 100755 index 0000000..4dc7fc7 --- /dev/null +++ b/openvpn/purevpn/BULGARIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlus-bg1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/CANADA-QUEBEC-TCP.ovpn b/openvpn/purevpn/CANADA-QUEBEC-TCP.ovpn new file mode 100755 index 0000000..bc1a7cc --- /dev/null +++ b/openvpn/purevpn/CANADA-QUEBEC-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote caq1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/CANADA-QUEBEC-UDP.ovpn b/openvpn/purevpn/CANADA-QUEBEC-UDP.ovpn new file mode 100755 index 0000000..fa3736b --- /dev/null +++ b/openvpn/purevpn/CANADA-QUEBEC-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote caq1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/CHILE-TCP.ovpn b/openvpn/purevpn/CHILE-TCP.ovpn new file mode 100755 index 0000000..ba9ee99 --- /dev/null +++ b/openvpn/purevpn/CHILE-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote cl1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/CHILE-UDP.ovpn b/openvpn/purevpn/CHILE-UDP.ovpn new file mode 100755 index 0000000..9b35efe --- /dev/null +++ b/openvpn/purevpn/CHILE-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote cl1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/CHINA-TCP.ovpn b/openvpn/purevpn/CHINA-TCP.ovpn new file mode 100755 index 0000000..d8324b9 --- /dev/null +++ b/openvpn/purevpn/CHINA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote cn1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/CHINA-UDP.ovpn b/openvpn/purevpn/CHINA-UDP.ovpn new file mode 100755 index 0000000..4f7b52e --- /dev/null +++ b/openvpn/purevpn/CHINA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote cn1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/COLOMBIA-TCP.ovpn b/openvpn/purevpn/COLOMBIA-TCP.ovpn new file mode 100755 index 0000000..7cc5197 --- /dev/null +++ b/openvpn/purevpn/COLOMBIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote co1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/COLOMBIA-UDP.ovpn b/openvpn/purevpn/COLOMBIA-UDP.ovpn new file mode 100755 index 0000000..30fdb07 --- /dev/null +++ b/openvpn/purevpn/COLOMBIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote co1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/COSTA-RICA-TCP.ovpn b/openvpn/purevpn/COSTA-RICA-TCP.ovpn new file mode 100755 index 0000000..88ae619 --- /dev/null +++ b/openvpn/purevpn/COSTA-RICA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote cr1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/COSTA-RICA-UDP.ovpn b/openvpn/purevpn/COSTA-RICA-UDP.ovpn new file mode 100755 index 0000000..b6f0d66 --- /dev/null +++ b/openvpn/purevpn/COSTA-RICA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote cr1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/CROATIA-TCP.ovpn b/openvpn/purevpn/CROATIA-TCP.ovpn new file mode 100755 index 0000000..76fbad7 --- /dev/null +++ b/openvpn/purevpn/CROATIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote hr1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/CROATIA-UDP.ovpn b/openvpn/purevpn/CROATIA-UDP.ovpn new file mode 100755 index 0000000..dc79e17 --- /dev/null +++ b/openvpn/purevpn/CROATIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote hr1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/DENMARK-TCP.ovpn b/openvpn/purevpn/DENMARK-TCP.ovpn new file mode 100755 index 0000000..47a0803 --- /dev/null +++ b/openvpn/purevpn/DENMARK-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote dk1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/DENMARK-UDP.ovpn b/openvpn/purevpn/DENMARK-UDP.ovpn new file mode 100755 index 0000000..17dd074 --- /dev/null +++ b/openvpn/purevpn/DENMARK-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote dk1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/EGYPT(V)-TCP.ovpn b/openvpn/purevpn/EGYPT(V)-TCP.ovpn new file mode 100755 index 0000000..fc31e62 --- /dev/null +++ b/openvpn/purevpn/EGYPT(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlus-eg1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/EGYPT(V)-UDP.ovpn b/openvpn/purevpn/EGYPT(V)-UDP.ovpn new file mode 100755 index 0000000..01fba24 --- /dev/null +++ b/openvpn/purevpn/EGYPT(V)-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlus-eg1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ESTONIA-TCP.ovpn b/openvpn/purevpn/ESTONIA-TCP.ovpn new file mode 100755 index 0000000..ffec81d --- /dev/null +++ b/openvpn/purevpn/ESTONIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ee1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ESTONIA-UDP.ovpn b/openvpn/purevpn/ESTONIA-UDP.ovpn new file mode 100755 index 0000000..33c7748 --- /dev/null +++ b/openvpn/purevpn/ESTONIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ee1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/FRANCE(V)-TCP.ovpn b/openvpn/purevpn/FRANCE(V)-TCP.ovpn new file mode 100755 index 0000000..84f8f7d --- /dev/null +++ b/openvpn/purevpn/FRANCE(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vleu-fr1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/FRANCE(V)-UDP.ovpn b/openvpn/purevpn/FRANCE(V)-UDP.ovpn new file mode 100755 index 0000000..cb8ca66 --- /dev/null +++ b/openvpn/purevpn/FRANCE(V)-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vleu-fr1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/GEORGIA-TCP.ovpn b/openvpn/purevpn/GEORGIA-TCP.ovpn new file mode 100755 index 0000000..070567f --- /dev/null +++ b/openvpn/purevpn/GEORGIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ge1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/GEORGIA-UDP.ovpn b/openvpn/purevpn/GEORGIA-UDP.ovpn new file mode 100755 index 0000000..51e2079 --- /dev/null +++ b/openvpn/purevpn/GEORGIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ge1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/GERMANY-TCP.ovpn b/openvpn/purevpn/GERMANY-TCP.ovpn new file mode 100755 index 0000000..ac2eb82 --- /dev/null +++ b/openvpn/purevpn/GERMANY-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote de1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/GERMANY-UDP.ovpn b/openvpn/purevpn/GERMANY-UDP.ovpn new file mode 100755 index 0000000..81be82c --- /dev/null +++ b/openvpn/purevpn/GERMANY-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote de1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/GHANA-TCP.ovpn b/openvpn/purevpn/GHANA-TCP.ovpn new file mode 100755 index 0000000..2ddf5c7 --- /dev/null +++ b/openvpn/purevpn/GHANA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote gh1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/GHANA-UDP.ovpn b/openvpn/purevpn/GHANA-UDP.ovpn new file mode 100755 index 0000000..d677de0 --- /dev/null +++ b/openvpn/purevpn/GHANA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote gh1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/GREECE-TCP.ovpn b/openvpn/purevpn/GREECE-TCP.ovpn new file mode 100755 index 0000000..44949b5 --- /dev/null +++ b/openvpn/purevpn/GREECE-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote gr1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/GREECE-UDP.ovpn b/openvpn/purevpn/GREECE-UDP.ovpn new file mode 100755 index 0000000..3cdbfb3 --- /dev/null +++ b/openvpn/purevpn/GREECE-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote gr1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/HONG KONG-TCP.ovpn b/openvpn/purevpn/HONG KONG-TCP.ovpn new file mode 100755 index 0000000..7691cc7 --- /dev/null +++ b/openvpn/purevpn/HONG KONG-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote hk1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/HONG KONG-UDP.ovpn b/openvpn/purevpn/HONG KONG-UDP.ovpn new file mode 100755 index 0000000..30e7ac8 --- /dev/null +++ b/openvpn/purevpn/HONG KONG-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote hk1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/HUNGARY-TCP.ovpn b/openvpn/purevpn/HUNGARY-TCP.ovpn new file mode 100755 index 0000000..5446505 --- /dev/null +++ b/openvpn/purevpn/HUNGARY-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote hu1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/HUNGARY-UDP.ovpn b/openvpn/purevpn/HUNGARY-UDP.ovpn new file mode 100755 index 0000000..ec4e11f --- /dev/null +++ b/openvpn/purevpn/HUNGARY-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote hu1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ICELAND-TCP.ovpn b/openvpn/purevpn/ICELAND-TCP.ovpn new file mode 100755 index 0000000..b7c93d8 --- /dev/null +++ b/openvpn/purevpn/ICELAND-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote is1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ICELAND-UDP.ovpn b/openvpn/purevpn/ICELAND-UDP.ovpn new file mode 100755 index 0000000..27203cf --- /dev/null +++ b/openvpn/purevpn/ICELAND-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote is1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/INDIA-TCP.ovpn b/openvpn/purevpn/INDIA-TCP.ovpn new file mode 100755 index 0000000..322ff96 --- /dev/null +++ b/openvpn/purevpn/INDIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote in1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/INDIA-UDP.ovpn b/openvpn/purevpn/INDIA-UDP.ovpn new file mode 100755 index 0000000..26b1499 --- /dev/null +++ b/openvpn/purevpn/INDIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote in1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/IRELAND-TCP.ovpn b/openvpn/purevpn/IRELAND-TCP.ovpn new file mode 100755 index 0000000..45c86cf --- /dev/null +++ b/openvpn/purevpn/IRELAND-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ie1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/IRELAND-UDP.ovpn b/openvpn/purevpn/IRELAND-UDP.ovpn new file mode 100755 index 0000000..f4a04a2 --- /dev/null +++ b/openvpn/purevpn/IRELAND-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ie1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ISLE-OF-MAN-TCP.ovpn b/openvpn/purevpn/ISLE-OF-MAN-TCP.ovpn new file mode 100755 index 0000000..50c9779 --- /dev/null +++ b/openvpn/purevpn/ISLE-OF-MAN-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote im1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ISLE-OF-MAN-UDP.ovpn b/openvpn/purevpn/ISLE-OF-MAN-UDP.ovpn new file mode 100755 index 0000000..089cdcb --- /dev/null +++ b/openvpn/purevpn/ISLE-OF-MAN-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote im1-ovpn-udp.pointtoserver.com 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ITALY-TCP.ovpn b/openvpn/purevpn/ITALY-TCP.ovpn new file mode 100755 index 0000000..bf11ec7 --- /dev/null +++ b/openvpn/purevpn/ITALY-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote it1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ITALY-UDP.ovpn b/openvpn/purevpn/ITALY-UDP.ovpn new file mode 100755 index 0000000..d1fcb0c --- /dev/null +++ b/openvpn/purevpn/ITALY-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote it1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/JAPAN-TCP.ovpn b/openvpn/purevpn/JAPAN-TCP.ovpn new file mode 100755 index 0000000..672fdc1 --- /dev/null +++ b/openvpn/purevpn/JAPAN-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote jp1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/JAPAN-UDP.ovpn b/openvpn/purevpn/JAPAN-UDP.ovpn new file mode 100755 index 0000000..2dcdcf9 --- /dev/null +++ b/openvpn/purevpn/JAPAN-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote jp1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/JORDAN(V)-TCP.ovpn b/openvpn/purevpn/JORDAN(V)-TCP.ovpn new file mode 100755 index 0000000..e6fa728 --- /dev/null +++ b/openvpn/purevpn/JORDAN(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlus-jo1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/JORDON(V)-UDP.ovpn b/openvpn/purevpn/JORDON(V)-UDP.ovpn new file mode 100755 index 0000000..c9e23c7 --- /dev/null +++ b/openvpn/purevpn/JORDON(V)-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlus-jo1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/KENYA-TCP.ovpn b/openvpn/purevpn/KENYA-TCP.ovpn new file mode 100755 index 0000000..1b7ccba --- /dev/null +++ b/openvpn/purevpn/KENYA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ke1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/KENYA-UDP.ovpn b/openvpn/purevpn/KENYA-UDP.ovpn new file mode 100755 index 0000000..933718b --- /dev/null +++ b/openvpn/purevpn/KENYA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ke1-ovpn-udp.pointtoserver.com 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/KOREA-TCP.ovpn b/openvpn/purevpn/KOREA-TCP.ovpn new file mode 100755 index 0000000..f063d6c --- /dev/null +++ b/openvpn/purevpn/KOREA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote kr1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/KOREA-UDP.ovpn b/openvpn/purevpn/KOREA-UDP.ovpn new file mode 100755 index 0000000..bc7ee0d --- /dev/null +++ b/openvpn/purevpn/KOREA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote kr1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/KUWAIT(V)-TCP.ovpn b/openvpn/purevpn/KUWAIT(V)-TCP.ovpn new file mode 100755 index 0000000..e5364a1 --- /dev/null +++ b/openvpn/purevpn/KUWAIT(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlus-kw1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/KUWAIT(V)-UDP.ovpn b/openvpn/purevpn/KUWAIT(V)-UDP.ovpn new file mode 100755 index 0000000..ee1a217 --- /dev/null +++ b/openvpn/purevpn/KUWAIT(V)-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlus-kw1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/LATVIA-TCP.ovpn b/openvpn/purevpn/LATVIA-TCP.ovpn new file mode 100755 index 0000000..2fd0ac1 --- /dev/null +++ b/openvpn/purevpn/LATVIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote lv1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/LATVIA-UDP.ovpn b/openvpn/purevpn/LATVIA-UDP.ovpn new file mode 100755 index 0000000..55e8268 --- /dev/null +++ b/openvpn/purevpn/LATVIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote lv1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/LEBANON-TCP.ovpn b/openvpn/purevpn/LEBANON-TCP.ovpn new file mode 100755 index 0000000..a23470a --- /dev/null +++ b/openvpn/purevpn/LEBANON-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote lb1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/LEBANON-UDP.ovpn b/openvpn/purevpn/LEBANON-UDP.ovpn new file mode 100755 index 0000000..ed4f981 --- /dev/null +++ b/openvpn/purevpn/LEBANON-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote lb1-ovpn-udp.pointtoserver.com 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/LITHUANIA-TCP.ovpn b/openvpn/purevpn/LITHUANIA-TCP.ovpn new file mode 100755 index 0000000..8fc349d --- /dev/null +++ b/openvpn/purevpn/LITHUANIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote lt1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/LITHUANIA-UDP.ovpn b/openvpn/purevpn/LITHUANIA-UDP.ovpn new file mode 100755 index 0000000..3376543 --- /dev/null +++ b/openvpn/purevpn/LITHUANIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote lt1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/LUXEMBOURG-TCP.ovpn b/openvpn/purevpn/LUXEMBOURG-TCP.ovpn new file mode 100755 index 0000000..281cf2d --- /dev/null +++ b/openvpn/purevpn/LUXEMBOURG-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote lu1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/LUXEMBOURG-UDP.ovpn b/openvpn/purevpn/LUXEMBOURG-UDP.ovpn new file mode 100755 index 0000000..bdbc13b --- /dev/null +++ b/openvpn/purevpn/LUXEMBOURG-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote lu1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/MALTA-TCP.ovpn b/openvpn/purevpn/MALTA-TCP.ovpn new file mode 100755 index 0000000..5ce9562 --- /dev/null +++ b/openvpn/purevpn/MALTA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote mt1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/MALTA-UDP.ovpn b/openvpn/purevpn/MALTA-UDP.ovpn new file mode 100755 index 0000000..0ead6ae --- /dev/null +++ b/openvpn/purevpn/MALTA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote mt1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/MEXICO-TCP.ovpn b/openvpn/purevpn/MEXICO-TCP.ovpn new file mode 100755 index 0000000..b315ec2 --- /dev/null +++ b/openvpn/purevpn/MEXICO-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote mx1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/MEXICO-UDP.ovpn b/openvpn/purevpn/MEXICO-UDP.ovpn new file mode 100755 index 0000000..9da7aab --- /dev/null +++ b/openvpn/purevpn/MEXICO-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote mx1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/MOLDOVA-TCP.ovpn b/openvpn/purevpn/MOLDOVA-TCP.ovpn new file mode 100755 index 0000000..2955269 --- /dev/null +++ b/openvpn/purevpn/MOLDOVA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote md1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/MOLDOVA-UDP.ovpn b/openvpn/purevpn/MOLDOVA-UDP.ovpn new file mode 100755 index 0000000..5f5bb8c --- /dev/null +++ b/openvpn/purevpn/MOLDOVA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote md1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/MONGOLIA-TCP.ovpn b/openvpn/purevpn/MONGOLIA-TCP.ovpn new file mode 100755 index 0000000..fe6dce8 --- /dev/null +++ b/openvpn/purevpn/MONGOLIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote mn1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/MONGOLIA-UDP.ovpn b/openvpn/purevpn/MONGOLIA-UDP.ovpn new file mode 100755 index 0000000..452cca9 --- /dev/null +++ b/openvpn/purevpn/MONGOLIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote mn1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/MONTENEGRO-TCP.ovpn b/openvpn/purevpn/MONTENEGRO-TCP.ovpn new file mode 100755 index 0000000..ac9d009 --- /dev/null +++ b/openvpn/purevpn/MONTENEGRO-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote me1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/MONTENEGRO-UDP.ovpn b/openvpn/purevpn/MONTENEGRO-UDP.ovpn new file mode 100755 index 0000000..5f5fd15 --- /dev/null +++ b/openvpn/purevpn/MONTENEGRO-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote me1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/NETHERLANDS-TCP.ovpn b/openvpn/purevpn/NETHERLANDS-TCP.ovpn new file mode 100755 index 0000000..6d39ace --- /dev/null +++ b/openvpn/purevpn/NETHERLANDS-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote nl1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/NETHERLANDS-UDP.ovpn b/openvpn/purevpn/NETHERLANDS-UDP.ovpn new file mode 100755 index 0000000..03ef50c --- /dev/null +++ b/openvpn/purevpn/NETHERLANDS-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote nl1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/NEWZEALAND-TCP.ovpn b/openvpn/purevpn/NEWZEALAND-TCP.ovpn new file mode 100755 index 0000000..ab3a926 --- /dev/null +++ b/openvpn/purevpn/NEWZEALAND-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote nz1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/NEWZEALAND-UDP.ovpn b/openvpn/purevpn/NEWZEALAND-UDP.ovpn new file mode 100755 index 0000000..9ba64ae --- /dev/null +++ b/openvpn/purevpn/NEWZEALAND-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote nz1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/NIGERIA-TCP.ovpn b/openvpn/purevpn/NIGERIA-TCP.ovpn new file mode 100755 index 0000000..594495d --- /dev/null +++ b/openvpn/purevpn/NIGERIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ng1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/NIGERIA-UDP.ovpn b/openvpn/purevpn/NIGERIA-UDP.ovpn new file mode 100755 index 0000000..5576b88 --- /dev/null +++ b/openvpn/purevpn/NIGERIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ng1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/NORWAY-TCP.ovpn b/openvpn/purevpn/NORWAY-TCP.ovpn new file mode 100755 index 0000000..17172c4 --- /dev/null +++ b/openvpn/purevpn/NORWAY-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote no1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/NORWAY-UDP.ovpn b/openvpn/purevpn/NORWAY-UDP.ovpn new file mode 100755 index 0000000..d24d6a1 --- /dev/null +++ b/openvpn/purevpn/NORWAY-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote no1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/OMAN-TCP.ovpn b/openvpn/purevpn/OMAN-TCP.ovpn new file mode 100755 index 0000000..3d7f9d4 --- /dev/null +++ b/openvpn/purevpn/OMAN-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote om1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/OMAN-UDP.ovpn b/openvpn/purevpn/OMAN-UDP.ovpn new file mode 100755 index 0000000..9791454 --- /dev/null +++ b/openvpn/purevpn/OMAN-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote om1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/PANAMA(V)-TCP.ovpn b/openvpn/purevpn/PANAMA(V)-TCP.ovpn new file mode 100755 index 0000000..858020b --- /dev/null +++ b/openvpn/purevpn/PANAMA(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlus-pa1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/PANAMA(V)-UDP.ovpn b/openvpn/purevpn/PANAMA(V)-UDP.ovpn new file mode 100755 index 0000000..b5c6627 --- /dev/null +++ b/openvpn/purevpn/PANAMA(V)-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlus-pa1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/PERU-TCP.ovpn b/openvpn/purevpn/PERU-TCP.ovpn new file mode 100755 index 0000000..6600033 --- /dev/null +++ b/openvpn/purevpn/PERU-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote pe1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/PERU-UDP.ovpn b/openvpn/purevpn/PERU-UDP.ovpn new file mode 100755 index 0000000..f10371e --- /dev/null +++ b/openvpn/purevpn/PERU-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote pe1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/PHILIPINES(V)-TCP.ovpn b/openvpn/purevpn/PHILIPINES(V)-TCP.ovpn new file mode 100755 index 0000000..ad02ae1 --- /dev/null +++ b/openvpn/purevpn/PHILIPINES(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlap-ph1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/PHILIPINES(V).ovpn b/openvpn/purevpn/PHILIPINES(V).ovpn new file mode 100755 index 0000000..b9793f8 --- /dev/null +++ b/openvpn/purevpn/PHILIPINES(V).ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlap-ph1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/POLAND-TCP.ovpn b/openvpn/purevpn/POLAND-TCP.ovpn new file mode 100755 index 0000000..81d4764 --- /dev/null +++ b/openvpn/purevpn/POLAND-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote pl1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/POLAND-UDP.ovpn b/openvpn/purevpn/POLAND-UDP.ovpn new file mode 100755 index 0000000..839c63b --- /dev/null +++ b/openvpn/purevpn/POLAND-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote pl1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/QATAR-TCP.ovpn b/openvpn/purevpn/QATAR-TCP.ovpn new file mode 100755 index 0000000..580fbdc --- /dev/null +++ b/openvpn/purevpn/QATAR-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote qa1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/QATAR-UDP.ovpn b/openvpn/purevpn/QATAR-UDP.ovpn new file mode 100755 index 0000000..1d6cf02 --- /dev/null +++ b/openvpn/purevpn/QATAR-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote qa1-ovpn-udp.pointtoserver.com 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ROMANIA-TCP.ovpn b/openvpn/purevpn/ROMANIA-TCP.ovpn new file mode 100755 index 0000000..7e11a0e --- /dev/null +++ b/openvpn/purevpn/ROMANIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ro1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ROMANIA-UDP.ovpn b/openvpn/purevpn/ROMANIA-UDP.ovpn new file mode 100755 index 0000000..1a7dd15 --- /dev/null +++ b/openvpn/purevpn/ROMANIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ro1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/RUSSIA(V)-TCP.ovpn b/openvpn/purevpn/RUSSIA(V)-TCP.ovpn new file mode 100755 index 0000000..fa3b8fc --- /dev/null +++ b/openvpn/purevpn/RUSSIA(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlus-ru1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/RUSSIA(V)-UDP.ovpn b/openvpn/purevpn/RUSSIA(V)-UDP.ovpn new file mode 100755 index 0000000..d5d2663 --- /dev/null +++ b/openvpn/purevpn/RUSSIA(V)-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlus-ru1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SAUDIAARABIA-TCP.ovpn b/openvpn/purevpn/SAUDIAARABIA-TCP.ovpn new file mode 100755 index 0000000..8d6e3bb --- /dev/null +++ b/openvpn/purevpn/SAUDIAARABIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote sa1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SAUDIAARABIA-UDP.ovpn b/openvpn/purevpn/SAUDIAARABIA-UDP.ovpn new file mode 100755 index 0000000..803a9e1 --- /dev/null +++ b/openvpn/purevpn/SAUDIAARABIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote sa1-ovpn-udp.pointtoserver.com 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SERBIA-TCP.ovpn b/openvpn/purevpn/SERBIA-TCP.ovpn new file mode 100755 index 0000000..f99c029 --- /dev/null +++ b/openvpn/purevpn/SERBIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote rs1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SERBIA-UDP.ovpn b/openvpn/purevpn/SERBIA-UDP.ovpn new file mode 100755 index 0000000..5d04502 --- /dev/null +++ b/openvpn/purevpn/SERBIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote rs1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SINGAPORE-TCP.ovpn b/openvpn/purevpn/SINGAPORE-TCP.ovpn new file mode 100755 index 0000000..364b3b9 --- /dev/null +++ b/openvpn/purevpn/SINGAPORE-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote sg1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SINGAPORE-UDP.ovpn b/openvpn/purevpn/SINGAPORE-UDP.ovpn new file mode 100755 index 0000000..459023a --- /dev/null +++ b/openvpn/purevpn/SINGAPORE-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote sg1-ovpn-udp.purevpn.ne 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SLOVAKIA-TCP.ovpn b/openvpn/purevpn/SLOVAKIA-TCP.ovpn new file mode 100755 index 0000000..96de658 --- /dev/null +++ b/openvpn/purevpn/SLOVAKIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote sk1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SLOVAKIA-UDP.ovpn b/openvpn/purevpn/SLOVAKIA-UDP.ovpn new file mode 100755 index 0000000..f2aa1d4 --- /dev/null +++ b/openvpn/purevpn/SLOVAKIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote sk1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SLOVENIA-TCP.ovpn b/openvpn/purevpn/SLOVENIA-TCP.ovpn new file mode 100755 index 0000000..6e97179 --- /dev/null +++ b/openvpn/purevpn/SLOVENIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote si1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SLOVENIA-UDP.ovpn b/openvpn/purevpn/SLOVENIA-UDP.ovpn new file mode 100755 index 0000000..1635ae1 --- /dev/null +++ b/openvpn/purevpn/SLOVENIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote si1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SPAIN-TCP.ovpn b/openvpn/purevpn/SPAIN-TCP.ovpn new file mode 100755 index 0000000..3d7406d --- /dev/null +++ b/openvpn/purevpn/SPAIN-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote es1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SPAIN-UDP.ovpn b/openvpn/purevpn/SPAIN-UDP.ovpn new file mode 100755 index 0000000..42fc4c8 --- /dev/null +++ b/openvpn/purevpn/SPAIN-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote es1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SWEDEN(V)-TCP.ovpn b/openvpn/purevpn/SWEDEN(V)-TCP.ovpn new file mode 100755 index 0000000..a6ad404 --- /dev/null +++ b/openvpn/purevpn/SWEDEN(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlus-se1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SWEDEN-UDP.ovpn b/openvpn/purevpn/SWEDEN-UDP.ovpn new file mode 100755 index 0000000..70f341a --- /dev/null +++ b/openvpn/purevpn/SWEDEN-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlus-se1-ovpn-tcp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SWITZERLAND-TCP.ovpn b/openvpn/purevpn/SWITZERLAND-TCP.ovpn new file mode 100755 index 0000000..660b608 --- /dev/null +++ b/openvpn/purevpn/SWITZERLAND-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ch1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SWITZERLAND-UDP.ovpn b/openvpn/purevpn/SWITZERLAND-UDP.ovpn new file mode 100755 index 0000000..01e2693 --- /dev/null +++ b/openvpn/purevpn/SWITZERLAND-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ch1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SYRIA-TCP.ovpn b/openvpn/purevpn/SYRIA-TCP.ovpn new file mode 100755 index 0000000..d9410c4 --- /dev/null +++ b/openvpn/purevpn/SYRIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote sy1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/SYRIA-UDP.ovpn b/openvpn/purevpn/SYRIA-UDP.ovpn new file mode 100755 index 0000000..0981cc7 --- /dev/null +++ b/openvpn/purevpn/SYRIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote sy1-ovpn-udp.pointtoserver.com 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/TAIWAN-TCP.ovpn b/openvpn/purevpn/TAIWAN-TCP.ovpn new file mode 100755 index 0000000..b32bdb9 --- /dev/null +++ b/openvpn/purevpn/TAIWAN-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote tw1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/TAIWAN-UDP.ovpn b/openvpn/purevpn/TAIWAN-UDP.ovpn new file mode 100755 index 0000000..f14e212 --- /dev/null +++ b/openvpn/purevpn/TAIWAN-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote tw1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/THAILAND-TCP.ovpn b/openvpn/purevpn/THAILAND-TCP.ovpn new file mode 100755 index 0000000..297b64b --- /dev/null +++ b/openvpn/purevpn/THAILAND-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote th1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/THAILAND-UDP.ovpn b/openvpn/purevpn/THAILAND-UDP.ovpn new file mode 100755 index 0000000..c087a87 --- /dev/null +++ b/openvpn/purevpn/THAILAND-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote th1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/TURKEY(V)-TCP.ovpn b/openvpn/purevpn/TURKEY(V)-TCP.ovpn new file mode 100755 index 0000000..95f34a9 --- /dev/null +++ b/openvpn/purevpn/TURKEY(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlus-tr1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/TURKEY(V)-UDP.ovpn b/openvpn/purevpn/TURKEY(V)-UDP.ovpn new file mode 100755 index 0000000..a1836c5 --- /dev/null +++ b/openvpn/purevpn/TURKEY(V)-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlus-tr1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UAE-TCP.ovpn b/openvpn/purevpn/UAE-TCP.ovpn new file mode 100755 index 0000000..5a6017e --- /dev/null +++ b/openvpn/purevpn/UAE-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ae1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UAE-UDP.ovpn b/openvpn/purevpn/UAE-UDP.ovpn new file mode 100755 index 0000000..a846d68 --- /dev/null +++ b/openvpn/purevpn/UAE-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ae1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UK-GOSPORT-TCP.ovpn b/openvpn/purevpn/UK-GOSPORT-TCP.ovpn new file mode 100755 index 0000000..d6f57ae --- /dev/null +++ b/openvpn/purevpn/UK-GOSPORT-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ukg1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UK-GOSPORT-UDP.ovpn b/openvpn/purevpn/UK-GOSPORT-UDP.ovpn new file mode 100755 index 0000000..fde7c6e --- /dev/null +++ b/openvpn/purevpn/UK-GOSPORT-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ukg1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UK-LONDON(V)1-TCP.ovpn b/openvpn/purevpn/UK-LONDON(V)1-TCP.ovpn new file mode 100755 index 0000000..c616f4c --- /dev/null +++ b/openvpn/purevpn/UK-LONDON(V)1-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlbr-ukl1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UK-LONDON(V)1-UDP.ovpn b/openvpn/purevpn/UK-LONDON(V)1-UDP.ovpn new file mode 100755 index 0000000..a46d938 --- /dev/null +++ b/openvpn/purevpn/UK-LONDON(V)1-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlbr-ukl1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UK-LONDON(V)2-TCP.ovpn b/openvpn/purevpn/UK-LONDON(V)2-TCP.ovpn new file mode 100755 index 0000000..f1040ec --- /dev/null +++ b/openvpn/purevpn/UK-LONDON(V)2-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlsa-ukl1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UK-LONDON(V)2-UDP.ovpn b/openvpn/purevpn/UK-LONDON(V)2-UDP.ovpn new file mode 100755 index 0000000..538de90 --- /dev/null +++ b/openvpn/purevpn/UK-LONDON(V)2-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlsa-ukl1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UK-MAIDENHEAD-TCP.ovpn b/openvpn/purevpn/UK-MAIDENHEAD-TCP.ovpn new file mode 100755 index 0000000..e9741d6 --- /dev/null +++ b/openvpn/purevpn/UK-MAIDENHEAD-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ukm1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UK-MAIDENHEAD-UDP.ovpn b/openvpn/purevpn/UK-MAIDENHEAD-UDP.ovpn new file mode 100755 index 0000000..d39227c --- /dev/null +++ b/openvpn/purevpn/UK-MAIDENHEAD-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ukm1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UKRAINE-TCP.ovpn b/openvpn/purevpn/UKRAINE-TCP.ovpn new file mode 100755 index 0000000..36f1c89 --- /dev/null +++ b/openvpn/purevpn/UKRAINE-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ua1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/UKRAINE-UDP.ovpn b/openvpn/purevpn/UKRAINE-UDP.ovpn new file mode 100755 index 0000000..74085f9 --- /dev/null +++ b/openvpn/purevpn/UKRAINE-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ua1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-FLORIDA-TCP.ovpn b/openvpn/purevpn/USA-FLORIDA-TCP.ovpn new file mode 100755 index 0000000..9d61609 --- /dev/null +++ b/openvpn/purevpn/USA-FLORIDA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote usfl1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-FLORIDA-UDP.ovpn b/openvpn/purevpn/USA-FLORIDA-UDP.ovpn new file mode 100755 index 0000000..120f085 --- /dev/null +++ b/openvpn/purevpn/USA-FLORIDA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote usfl1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-GEORGIA-ATLANTA-TCP.ovpn b/openvpn/purevpn/USA-GEORGIA-ATLANTA-TCP.ovpn new file mode 100755 index 0000000..b0380ef --- /dev/null +++ b/openvpn/purevpn/USA-GEORGIA-ATLANTA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote usga1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-GEORGIA-ATLANTA-UDP.ovpn b/openvpn/purevpn/USA-GEORGIA-ATLANTA-UDP.ovpn new file mode 100755 index 0000000..58aa3b6 --- /dev/null +++ b/openvpn/purevpn/USA-GEORGIA-ATLANTA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote usga1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-ILLINOIS-CHICAGO.ovpn b/openvpn/purevpn/USA-ILLINOIS-CHICAGO.ovpn new file mode 100755 index 0000000..97ab783 --- /dev/null +++ b/openvpn/purevpn/USA-ILLINOIS-CHICAGO.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote usil1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-LOSANGELES-TCP.ovpn b/openvpn/purevpn/USA-LOSANGELES-TCP.ovpn new file mode 100755 index 0000000..c2e7260 --- /dev/null +++ b/openvpn/purevpn/USA-LOSANGELES-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote usla1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-LOSANGELES-UDP.ovpn b/openvpn/purevpn/USA-LOSANGELES-UDP.ovpn new file mode 100755 index 0000000..938ba9e --- /dev/null +++ b/openvpn/purevpn/USA-LOSANGELES-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote usla1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-NEWYORK-TCP.ovpn b/openvpn/purevpn/USA-NEWYORK-TCP.ovpn new file mode 100755 index 0000000..5caf046 --- /dev/null +++ b/openvpn/purevpn/USA-NEWYORK-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote usny1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-NEWYORK-UDP.ovpn b/openvpn/purevpn/USA-NEWYORK-UDP.ovpn new file mode 100755 index 0000000..dcee7f1 --- /dev/null +++ b/openvpn/purevpn/USA-NEWYORK-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote usny1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-PHOENIX-TCP.ovpn b/openvpn/purevpn/USA-PHOENIX-TCP.ovpn new file mode 100755 index 0000000..c1b6988 --- /dev/null +++ b/openvpn/purevpn/USA-PHOENIX-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote usphx1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-PHOENIX-UDP.ovpn b/openvpn/purevpn/USA-PHOENIX-UDP.ovpn new file mode 100755 index 0000000..8dd18c4 --- /dev/null +++ b/openvpn/purevpn/USA-PHOENIX-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote usphx1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-SANFRANCISCO(V)-TCP.ovpn b/openvpn/purevpn/USA-SANFRANCISCO(V)-TCP.ovpn new file mode 100755 index 0000000..7181b5d --- /dev/null +++ b/openvpn/purevpn/USA-SANFRANCISCO(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlsa-ussf1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-SANFRANCISCO(V)-UDP.ovpn b/openvpn/purevpn/USA-SANFRANCISCO(V)-UDP.ovpn new file mode 100755 index 0000000..2bb44fd --- /dev/null +++ b/openvpn/purevpn/USA-SANFRANCISCO(V)-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlsa-ussf1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-VIRGINIA(V)-TCP.ovpn b/openvpn/purevpn/USA-VIRGINIA(V)-TCP.ovpn new file mode 100755 index 0000000..3678361 --- /dev/null +++ b/openvpn/purevpn/USA-VIRGINIA(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlbr-usvc1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-VIRGINIA(V)-UDP.ovpn b/openvpn/purevpn/USA-VIRGINIA(V)-UDP.ovpn new file mode 100755 index 0000000..b2fadae --- /dev/null +++ b/openvpn/purevpn/USA-VIRGINIA(V)-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlbr-usvc1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/USA-WASHINGTON-UDP.ovpn b/openvpn/purevpn/USA-WASHINGTON-UDP.ovpn new file mode 100755 index 0000000..4c3807c --- /dev/null +++ b/openvpn/purevpn/USA-WASHINGTON-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ussa1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/VENEZUELA-TCP.ovpn b/openvpn/purevpn/VENEZUELA-TCP.ovpn new file mode 100755 index 0000000..bc98c69 --- /dev/null +++ b/openvpn/purevpn/VENEZUELA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ve1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/VENEZUELA-UDP.ovpn b/openvpn/purevpn/VENEZUELA-UDP.ovpn new file mode 100755 index 0000000..96621f2 --- /dev/null +++ b/openvpn/purevpn/VENEZUELA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote ve1-ovpn-udp.pointtoserver.com 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/VIETNAM(V)-TCP.ovpn b/openvpn/purevpn/VIETNAM(V)-TCP.ovpn new file mode 100755 index 0000000..d118df8 --- /dev/null +++ b/openvpn/purevpn/VIETNAM(V)-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote vlap-vn1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/VIETNAM(V)-UDP.ovpn b/openvpn/purevpn/VIETNAM(V)-UDP.ovpn new file mode 100755 index 0000000..503d9df --- /dev/null +++ b/openvpn/purevpn/VIETNAM(V)-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote vlap-vn1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/Wdc.key b/openvpn/purevpn/Wdc.key new file mode 100755 index 0000000..65f5a41 --- /dev/null +++ b/openvpn/purevpn/Wdc.key @@ -0,0 +1,21 @@ +# +# 2048 bit OpenVPN static key +# +-----BEGIN OpenVPN Static key V1----- +e30af995f56d07426d9ba1f824730521 +d4283db4b4d0cdda9c6e8759a3799dcb +7939b6a5989160c9660de0f6125cbb1f +585b41c074b2fe88ecfcf17eab9a33be +1352379cdf74952b588fb161a93e13df +9135b2b29038231e02d657a6225705e6 +868ccb0c384ed11614690a1894bfbeb2 +74cebf1fe9c2329bdd5c8a40fe882062 +4d2ea7540cd79ab76892db51fc371a3a +c5fc9573afecb3fffe3281e61d72e915 +79d9b03d8cbf7909b3aebf4d90850321 +ee6b7d0a7846d15c27d8290e031e951e +19438a4654663cad975e138f5bc5af89 +c737ad822f27e19057731f41e1e254cc +9c95b7175c622422cde9f1f2cfd3510a +dd94498b4d7133d3729dd214a16b27fb +-----END OpenVPN Static key V1----- diff --git a/openvpn/purevpn/YEMEN-UDP.ovpn b/openvpn/purevpn/YEMEN-UDP.ovpn new file mode 100755 index 0000000..8f554b5 --- /dev/null +++ b/openvpn/purevpn/YEMEN-UDP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote ym1-ovpn-tcp.pointtoserver.com 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ZAMBIA-TCP.ovpn b/openvpn/purevpn/ZAMBIA-TCP.ovpn new file mode 100755 index 0000000..19fbd36 --- /dev/null +++ b/openvpn/purevpn/ZAMBIA-TCP.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote za1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ZAMBIA-UDP.ovpn b/openvpn/purevpn/ZAMBIA-UDP.ovpn new file mode 100755 index 0000000..e2537e1 --- /dev/null +++ b/openvpn/purevpn/ZAMBIA-UDP.ovpn @@ -0,0 +1,25 @@ +client +dev tun0 +proto udp +remote za1-ovpn-udp.purevpn.net 53 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +explicit-exit-notify 2 +ifconfig-nowarn +auth-nocache + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh diff --git a/openvpn/purevpn/ca.crt b/openvpn/purevpn/ca.crt new file mode 100755 index 0000000..88b4c7a --- /dev/null +++ b/openvpn/purevpn/ca.crt @@ -0,0 +1,27 @@ +-----BEGIN CERTIFICATE----- +MIIEoTCCA4mgAwIBAgIJANysBdFD6U2oMA0GCSqGSIb3DQEBBQUAMIGRMQswCQYD +VQQGEwJISzELMAkGA1UECBMCSEsxETAPBgNVBAcTCEhvbmdLb25nMRAwDgYDVQQK +EwdQdXJlVlBOMQswCQYDVQQLEwJJVDEQMA4GA1UEAxMHUHVyZVZQTjEQMA4GA1UE +KRMHUHVyZVZQTjEfMB0GCSqGSIb3DQEJARYQbWFpbEBob3N0LmRvbWFpbjAeFw0x +NDA0MTAwNzI5NDlaFw0yNDA0MDcwNzI5NDlaMIGRMQswCQYDVQQGEwJISzELMAkG +A1UECBMCSEsxETAPBgNVBAcTCEhvbmdLb25nMRAwDgYDVQQKEwdQdXJlVlBOMQsw +CQYDVQQLEwJJVDEQMA4GA1UEAxMHUHVyZVZQTjEQMA4GA1UEKRMHUHVyZVZQTjEf +MB0GCSqGSIb3DQEJARYQbWFpbEBob3N0LmRvbWFpbjCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBAJYqtUkQTlf/pHcGXuuII8S3pfI0fwFbs7l/1RP3nX3n +v1vyuvLi7h0jWsgJU0XM7LJywiRFJ8zsMLH7KZnIg7bscb50GY75WIq7C2NnWnnS +7zzyCCm2XD/2xZPym2lVRytpnWJbpemSS6Hdz7xI3q2FmixuBa1t5FeKsXfeaGGg ++ohwLvamnGHJYUYu3Nu0EWVzzy5wgT0c2C5jleGxl3kxRimD8FpnlAVdqyt0ib/f +f9XanaotSopIHUZmpYjT+udRC2+harlNKvOXYgDRl1mpimCvlzEWpZAo8dyBCxWl +xlBIT8OA8rimGi1XviknuOlWu2cGi13Ug8mCG0MjOQ0CAwEAAaOB+TCB9jAdBgNV +HQ4EFgQUt+1vJ2X2ho12PUDhdo2CsSHYXbYwgcYGA1UdIwSBvjCBu4AUt+1vJ2X2 +ho12PUDhdo2CsSHYXbahgZekgZQwgZExCzAJBgNVBAYTAkhLMQswCQYDVQQIEwJI +SzERMA8GA1UEBxMISG9uZ0tvbmcxEDAOBgNVBAoTB1B1cmVWUE4xCzAJBgNVBAsT +AklUMRAwDgYDVQQDEwdQdXJlVlBOMRAwDgYDVQQpEwdQdXJlVlBOMR8wHQYJKoZI +hvcNAQkBFhBtYWlsQGhvc3QuZG9tYWluggkA3KwF0UPpTagwDAYDVR0TBAUwAwEB +/zANBgkqhkiG9w0BAQUFAAOCAQEAAhLQQmkKWJdyGqgMSKOWXSKN2WXTDjIdb9bK +Q8uHeq0LYCcPoRh8VYJg2X4UWR/KO9pKaG+iZJw4Jqz4GQJjjJLKHfsWwj790ay0 +7U5KT08qmxFaxZUYn663H9b0+Zud1spTsTJjVe1eoRk6IDbbB4OMUzN9zyWEn6er +xi6llIAjQX1qtlBQasmTAbRtbSsCsZAxL2kXysULIdLrQP0iTgMQqqkv5zvpdEKN +3ciKCd8OHEhHOlAwA0/DNy3dg3Et0F2hNMDJhqMpxXsbKtGJ/rzGXQF2geEVzLZA +o42I1wBOSZLTX1fO1gl3gAGS9aYg5o31rrpBKzQewitJgIuc+Q== +-----END CERTIFICATE----- diff --git a/openvpn/purevpn/default.ovpn b/openvpn/purevpn/default.ovpn new file mode 100755 index 0000000..ba9ee99 --- /dev/null +++ b/openvpn/purevpn/default.ovpn @@ -0,0 +1,24 @@ +client +dev tun0 +proto tcp +remote cl1-ovpn-tcp.purevpn.net 80 +persist-key +persist-tun +ca /etc/openvpn/purevpn/ca.crt +tls-auth /etc/openvpn/purevpn/Wdc.key 1 +cipher AES-256-CBC +comp-lzo +verb 1 +mute 20 +route-method exe +route-delay 2 +route 0.0.0.0 0.0.0.0 +float +auth-user-pass /config/openvpn-credentials.txt +auth-retry interact +ifconfig-nowarn + +# OpenVPN controls startup and shut down of transmission +script-security 2 +up /etc/transmission/start.sh +down /etc/transmission/stop.sh