21
README.md
21
README.md
@@ -1,5 +1,5 @@
|
|||||||
# Transmission with WebUI and OpenVPN
|
# 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:
|
It bundles certificates and configurations for the following VPN providers:
|
||||||
* Private Internet Access
|
* Private Internet Access
|
||||||
* BTGuard
|
* BTGuard
|
||||||
@@ -11,6 +11,7 @@ It bundles certificates and configurations for the following VPN providers:
|
|||||||
* IPVanish
|
* IPVanish
|
||||||
* Anonine
|
* Anonine
|
||||||
* HideMe
|
* HideMe
|
||||||
|
* PureVPN
|
||||||
|
|
||||||
When using PIA as provider it will update Transmission hourly with assigned open port. Please read the instructions below.
|
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.
|
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.
|
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.
|
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.
|
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
|
### Required environment options
|
||||||
| Variable | Function | Example |
|
| 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_USERNAME`|Your OpenVPN username |`OPENVPN_USERNAME=asdf`|
|
||||||
|`OPENVPN_PASSWORD`|Your OpenVPN password |`OPENVPN_PASSWORD=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.
|
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:
|
and follow the format given in these examples:
|
||||||
|
|
||||||
| Transmission variable name | Environment variable name |
|
| 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 `_`.
|
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.
|
This is to prevent leaking the host IP.
|
||||||
|
|
||||||
## Access the WebUI
|
## Access the WebUI
|
||||||
But what's going on? My http://my-host:9091 isn't responding?
|
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.
|
to your request will be treated as "non-local" traffic and therefore be routed out through the VPN interface.
|
||||||
|
|
||||||
### How to fix this
|
### 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:
|
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.
|
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.
|
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.
|
Using the latest stable verison of Docker is always recommended. Support for older version is on a best-effort basis.
|
||||||
|
|
||||||
## Building the container yourself
|
## Building the container yourself
|
||||||
@@ -135,10 +136,10 @@ $ docker run --privileged -d \
|
|||||||
transmission-openvpn
|
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
|
## Controlling Transmission remotely
|
||||||
The container exposes /config as a volume. This is the directory where the supplied transmission and OpenVPN credentials will be stored.
|
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.
|
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.
|
For example, another container may pause or restrict transmission speeds while the server is streaming video.
|
||||||
|
24
openvpn/purevpn/ALBANIA-TCP.ovpn
Executable file
24
openvpn/purevpn/ALBANIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/ALBANIA-UDP.ovpn
Executable file
25
openvpn/purevpn/ALBANIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/ARGENTINA-TCP.ovpn
Executable file
24
openvpn/purevpn/ARGENTINA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/ARGENTINA-UDP.ovpn
Executable file
25
openvpn/purevpn/ARGENTINA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/ARUBA-TCP.ovpn
Executable file
24
openvpn/purevpn/ARUBA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/ARUBA-UDP.ovpn
Executable file
25
openvpn/purevpn/ARUBA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/AUSTRALIA-TCP.ovpn
Executable file
24
openvpn/purevpn/AUSTRALIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/AUSTRALIA-UDP.ovpn
Executable file
25
openvpn/purevpn/AUSTRALIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/BAHAMAS-TCP.ovpn
Executable file
24
openvpn/purevpn/BAHAMAS-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/BAHAMAS-UDP.ovpn
Executable file
25
openvpn/purevpn/BAHAMAS-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/BAHRAIN-TCP.ovpn
Executable file
24
openvpn/purevpn/BAHRAIN-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/BAHRAIN-UDP.ovpn
Executable file
25
openvpn/purevpn/BAHRAIN-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/BELGIUM-TCP.ovpn
Executable file
24
openvpn/purevpn/BELGIUM-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/BELGIUM-UDP.ovpn
Executable file
25
openvpn/purevpn/BELGIUM-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/BELIZE-TCP.ovpn
Executable file
24
openvpn/purevpn/BELIZE-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/BELIZE-UDP.ovpn
Executable file
25
openvpn/purevpn/BELIZE-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/BOSNIA-HERZEGOWINA-TCP.ovpn
Executable file
24
openvpn/purevpn/BOSNIA-HERZEGOWINA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/BOSNIA-HERZEGOWINA-UDP.ovpn
Executable file
25
openvpn/purevpn/BOSNIA-HERZEGOWINA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/BRUNEI-DARUSSALAM-TCP.ovpn
Executable file
24
openvpn/purevpn/BRUNEI-DARUSSALAM-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/BRUNEI-DARUSSALAM-UDP.ovpn
Executable file
25
openvpn/purevpn/BRUNEI-DARUSSALAM-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/BULGARIA(V)-TCP.ovpn
Executable file
24
openvpn/purevpn/BULGARIA(V)-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/BULGARIA-UDP.ovpn
Executable file
25
openvpn/purevpn/BULGARIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/CANADA-QUEBEC-TCP.ovpn
Executable file
24
openvpn/purevpn/CANADA-QUEBEC-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/CANADA-QUEBEC-UDP.ovpn
Executable file
25
openvpn/purevpn/CANADA-QUEBEC-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/CHILE-TCP.ovpn
Executable file
24
openvpn/purevpn/CHILE-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/CHILE-UDP.ovpn
Executable file
25
openvpn/purevpn/CHILE-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/CHINA-TCP.ovpn
Executable file
24
openvpn/purevpn/CHINA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/CHINA-UDP.ovpn
Executable file
25
openvpn/purevpn/CHINA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/COLOMBIA-TCP.ovpn
Executable file
24
openvpn/purevpn/COLOMBIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/COLOMBIA-UDP.ovpn
Executable file
25
openvpn/purevpn/COLOMBIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/COSTA-RICA-TCP.ovpn
Executable file
24
openvpn/purevpn/COSTA-RICA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/COSTA-RICA-UDP.ovpn
Executable file
25
openvpn/purevpn/COSTA-RICA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/CROATIA-TCP.ovpn
Executable file
24
openvpn/purevpn/CROATIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/CROATIA-UDP.ovpn
Executable file
25
openvpn/purevpn/CROATIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/DENMARK-TCP.ovpn
Executable file
24
openvpn/purevpn/DENMARK-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/DENMARK-UDP.ovpn
Executable file
25
openvpn/purevpn/DENMARK-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/EGYPT(V)-TCP.ovpn
Executable file
24
openvpn/purevpn/EGYPT(V)-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/EGYPT(V)-UDP.ovpn
Executable file
25
openvpn/purevpn/EGYPT(V)-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/ESTONIA-TCP.ovpn
Executable file
24
openvpn/purevpn/ESTONIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/ESTONIA-UDP.ovpn
Executable file
25
openvpn/purevpn/ESTONIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/FRANCE(V)-TCP.ovpn
Executable file
24
openvpn/purevpn/FRANCE(V)-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/FRANCE(V)-UDP.ovpn
Executable file
25
openvpn/purevpn/FRANCE(V)-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/GEORGIA-TCP.ovpn
Executable file
24
openvpn/purevpn/GEORGIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/GEORGIA-UDP.ovpn
Executable file
25
openvpn/purevpn/GEORGIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/GERMANY-TCP.ovpn
Executable file
24
openvpn/purevpn/GERMANY-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/GERMANY-UDP.ovpn
Executable file
25
openvpn/purevpn/GERMANY-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/GHANA-TCP.ovpn
Executable file
24
openvpn/purevpn/GHANA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/GHANA-UDP.ovpn
Executable file
25
openvpn/purevpn/GHANA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/GREECE-TCP.ovpn
Executable file
24
openvpn/purevpn/GREECE-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/GREECE-UDP.ovpn
Executable file
25
openvpn/purevpn/GREECE-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/HONG KONG-TCP.ovpn
Executable file
24
openvpn/purevpn/HONG KONG-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/HONG KONG-UDP.ovpn
Executable file
25
openvpn/purevpn/HONG KONG-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/HUNGARY-TCP.ovpn
Executable file
24
openvpn/purevpn/HUNGARY-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/HUNGARY-UDP.ovpn
Executable file
25
openvpn/purevpn/HUNGARY-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/ICELAND-TCP.ovpn
Executable file
24
openvpn/purevpn/ICELAND-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/ICELAND-UDP.ovpn
Executable file
25
openvpn/purevpn/ICELAND-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/INDIA-TCP.ovpn
Executable file
24
openvpn/purevpn/INDIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/INDIA-UDP.ovpn
Executable file
25
openvpn/purevpn/INDIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/IRELAND-TCP.ovpn
Executable file
24
openvpn/purevpn/IRELAND-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/IRELAND-UDP.ovpn
Executable file
25
openvpn/purevpn/IRELAND-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/ISLE-OF-MAN-TCP.ovpn
Executable file
24
openvpn/purevpn/ISLE-OF-MAN-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/ISLE-OF-MAN-UDP.ovpn
Executable file
25
openvpn/purevpn/ISLE-OF-MAN-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/ITALY-TCP.ovpn
Executable file
24
openvpn/purevpn/ITALY-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/ITALY-UDP.ovpn
Executable file
25
openvpn/purevpn/ITALY-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/JAPAN-TCP.ovpn
Executable file
24
openvpn/purevpn/JAPAN-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/JAPAN-UDP.ovpn
Executable file
25
openvpn/purevpn/JAPAN-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/JORDAN(V)-TCP.ovpn
Executable file
24
openvpn/purevpn/JORDAN(V)-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/JORDON(V)-UDP.ovpn
Executable file
25
openvpn/purevpn/JORDON(V)-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/KENYA-TCP.ovpn
Executable file
24
openvpn/purevpn/KENYA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/KENYA-UDP.ovpn
Executable file
25
openvpn/purevpn/KENYA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/KOREA-TCP.ovpn
Executable file
24
openvpn/purevpn/KOREA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/KOREA-UDP.ovpn
Executable file
25
openvpn/purevpn/KOREA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/KUWAIT(V)-TCP.ovpn
Executable file
24
openvpn/purevpn/KUWAIT(V)-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/KUWAIT(V)-UDP.ovpn
Executable file
25
openvpn/purevpn/KUWAIT(V)-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/LATVIA-TCP.ovpn
Executable file
24
openvpn/purevpn/LATVIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/LATVIA-UDP.ovpn
Executable file
25
openvpn/purevpn/LATVIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/LEBANON-TCP.ovpn
Executable file
24
openvpn/purevpn/LEBANON-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/LEBANON-UDP.ovpn
Executable file
25
openvpn/purevpn/LEBANON-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/LITHUANIA-TCP.ovpn
Executable file
24
openvpn/purevpn/LITHUANIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/LITHUANIA-UDP.ovpn
Executable file
25
openvpn/purevpn/LITHUANIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/LUXEMBOURG-TCP.ovpn
Executable file
24
openvpn/purevpn/LUXEMBOURG-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/LUXEMBOURG-UDP.ovpn
Executable file
25
openvpn/purevpn/LUXEMBOURG-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/MALTA-TCP.ovpn
Executable file
24
openvpn/purevpn/MALTA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/MALTA-UDP.ovpn
Executable file
25
openvpn/purevpn/MALTA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/MEXICO-TCP.ovpn
Executable file
24
openvpn/purevpn/MEXICO-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/MEXICO-UDP.ovpn
Executable file
25
openvpn/purevpn/MEXICO-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/MOLDOVA-TCP.ovpn
Executable file
24
openvpn/purevpn/MOLDOVA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/MOLDOVA-UDP.ovpn
Executable file
25
openvpn/purevpn/MOLDOVA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/MONGOLIA-TCP.ovpn
Executable file
24
openvpn/purevpn/MONGOLIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/MONGOLIA-UDP.ovpn
Executable file
25
openvpn/purevpn/MONGOLIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/MONTENEGRO-TCP.ovpn
Executable file
24
openvpn/purevpn/MONTENEGRO-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/MONTENEGRO-UDP.ovpn
Executable file
25
openvpn/purevpn/MONTENEGRO-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/NETHERLANDS-TCP.ovpn
Executable file
24
openvpn/purevpn/NETHERLANDS-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/NETHERLANDS-UDP.ovpn
Executable file
25
openvpn/purevpn/NETHERLANDS-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/NEWZEALAND-TCP.ovpn
Executable file
24
openvpn/purevpn/NEWZEALAND-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/NEWZEALAND-UDP.ovpn
Executable file
25
openvpn/purevpn/NEWZEALAND-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/NIGERIA-TCP.ovpn
Executable file
24
openvpn/purevpn/NIGERIA-TCP.ovpn
Executable file
@@ -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
|
25
openvpn/purevpn/NIGERIA-UDP.ovpn
Executable file
25
openvpn/purevpn/NIGERIA-UDP.ovpn
Executable file
@@ -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
|
24
openvpn/purevpn/NORWAY-TCP.ovpn
Executable file
24
openvpn/purevpn/NORWAY-TCP.ovpn
Executable file
@@ -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
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user