added torguard as provider, adjusted config files and added default.ovpn symlink

This commit is contained in:
Kristian Haugene 2015-09-05 16:13:51 +02:00
parent ce269005f5
commit 03454101c7
69 changed files with 575 additions and 236 deletions

View File

@ -5,6 +5,7 @@ It bundles certificates and configurations for the following VPN providers:
* BTGuard * BTGuard
* TigerVPN * TigerVPN
* FrootVPN * FrootVPN
* TorGuard
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.
@ -35,7 +36,7 @@ By default there will also be created a transmission-home folder under /data whe
### Required environment options ### Required environment options
| Variable | Function | Example | | Variable | Function | Example |
|----------|----------|-------| |----------|----------|-------|
|`OPENVPN_PROVIDER` | Sets the OpenVPN provider to use. | `OPENVPN_PROVIDER=BTGUARD` or <br>`OPENVPN_PROVIDER=PIA` or <br>`OPENVPN_PROVIDER=TIGER` or <br>`OPENVPN_PROVIDER=FROOT`| |`OPENVPN_PROVIDER` | Sets the OpenVPN provider to use. | `OPENVPN_PROVIDER=provider`. Supported providers are `PIA`, `BTGUARD`, `TIGER`, `FROOT` and `TORGUARD` |
|`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`|

View File

@ -8,6 +8,8 @@ elif [ "$OPENVPN_PROVIDER" = "TIGER" ]; then
vpn_provider="tiger" vpn_provider="tiger"
elif [ "$OPENVPN_PROVIDER" = "FROOT" ]; then elif [ "$OPENVPN_PROVIDER" = "FROOT" ]; then
vpn_provider="froot" vpn_provider="froot"
elif [ "$OPENVPN_PROVIDER" = "TORGUARD" ]; then
vpn_provider="torguard"
else else
echo "Could not find OpenVPN provider: $OPENVPN_PROVIDER" echo "Could not find OpenVPN provider: $OPENVPN_PROVIDER"
echo "Please check your settings." echo "Please check your settings."

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote melb.au.torguardvpnaccess.com 443 remote melb.au.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,4 +18,9 @@ script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
cipher AES-256-CBC cipher AES-256-CBC
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote au.torguardvpnaccess.com 443 remote au.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,4 +18,9 @@ script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
cipher AES-256-CBC cipher AES-256-CBC
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote bg.torguardvpnaccess.com 443 remote bg.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote br.torguardvpnaccess.com 443 remote br.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote ca.west.torguardvpnaccess.com 443 remote ca.west.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
cipher AES-256-CBC cipher AES-256-CBC
comp-lzo comp-lzo
fast-io fast-io
@ -18,4 +18,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto tcp proto tcp
remote ca.stealth.torguardvpnaccess.com 80 remote ca.stealth.torguardvpnaccess.com 80
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
cipher AES-256-CBC cipher AES-256-CBC
comp-lzo comp-lzo
fast-io fast-io
@ -18,4 +18,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote ca.stealth.torguardvpnaccess.com 53 remote ca.stealth.torguardvpnaccess.com 53
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
cipher AES-256-CBC cipher AES-256-CBC
comp-lzo comp-lzo
fast-io fast-io
@ -18,4 +18,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote ca.torguardvpnaccess.com 443 remote ca.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote vanc.ca.west.torguardvpnaccess.com 443 remote vanc.ca.west.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,4 +18,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
cipher AES-128-CBC cipher AES-128-CBC
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote 190.112.220.170 443 remote 190.112.220.170 443
resolv-retry infinite resolv-retry infinite
@ -7,11 +7,16 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
fast-io fast-io
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
ping-restart 0 ping-restart 0
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
float float
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote czech.torguardvpnaccess.com 443 remote czech.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote 82.103.140.46 443 remote 82.103.140.46 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote-random remote-random
remote egy.torguardvpnaccess.com 443 remote egy.torguardvpnaccess.com 443
@ -9,7 +9,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,4 +18,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote fin.torguardvpnaccess.com 443 remote fin.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote fr.torguardvpnaccess.com 443 remote fr.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote frank.gr.torguardvpnaccess.com 443 remote frank.gr.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote gr.torguardvpnaccess.com 443 remote gr.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote nur.gr.torguardvpnaccess.com 443 remote nur.gr.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote gre.torguardvpnaccess.com 443 remote gre.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote hk.torguardvpnaccess.com 6060 remote hk.torguardvpnaccess.com 6060
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote hg.torguardvpnaccess.com 443 remote hg.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote ice.torguardvpnaccess.com 443 remote ice.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote in.torguardvpnaccess.com 443 remote in.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote-random remote-random
remote 103.253.113.122 443 remote 103.253.113.122 443
@ -9,7 +9,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,4 +18,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote ire.torguardvpnaccess.com 443 remote ire.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote it.torguardvpnaccess.com 53 remote it.torguardvpnaccess.com 53
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,3 +18,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote jp.torguardvpnaccess.com 443 remote jp.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote lv.torguardvpnaccess.com 443 remote lv.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote lux.torguardvpnaccess.com 443 remote lux.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote 111.90.140.185 443 remote 111.90.140.185 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote-random remote-random
remote mx.torguardvpnaccess.com 443 remote mx.torguardvpnaccess.com 443
@ -9,7 +9,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,4 +18,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote md.torguardvpnaccess.com 443 remote md.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto tcp proto tcp
remote nl.stealth.torguardvpnaccess.com 80 remote nl.stealth.torguardvpnaccess.com 80
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
cipher AES-256-CBC cipher AES-256-CBC
comp-lzo comp-lzo
fast-io fast-io
@ -18,4 +18,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote nl.stealth.torguardvpnaccess.com 53 remote nl.stealth.torguardvpnaccess.com 53
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
cipher AES-256-CBC cipher AES-256-CBC
comp-lzo comp-lzo
fast-io fast-io
@ -18,4 +18,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote nl.torguardvpnaccess.com 443 remote nl.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote nz.torguardvpnaccess.com 443 remote nz.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote no.torguardvpnaccess.com 443 remote no.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote pa.torguardvpnaccess.com 443 remote pa.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote pl.torguardvpnaccess.com 443 remote pl.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote por.torguardvpnaccess.com 443 remote por.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote ro.torguardvpnaccess.com 443 remote ro.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote mos.ru.torguardvpnaccess.com 443 remote mos.ru.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote ru.torguardvpnaccess.com 443 remote ru.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote saudi.torguardvpnaccess.com 443 remote saudi.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote singp.torguardvpnaccess.com 443 remote singp.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote za.torguardvpnaccess.com 443 remote za.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote sk.torguardvpnaccess.com 6060 remote sk.torguardvpnaccess.com 6060
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote sp.torguardvpnaccess.com 443 remote sp.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote hud.swe.torguardvpnaccess.com 443 remote hud.swe.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto udp proto udp
remote swe.torguardvpnaccess.com 443 remote swe.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote swiss.torguardvpnaccess.com 443 remote swiss.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote thai.torguardvpnaccess.com 443 remote thai.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun1 dev tun0
proto tcp proto tcp
remote 41.231.5.22 443 remote 41.231.5.22 443
resolv-retry infinite resolv-retry infinite
@ -8,7 +8,7 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
ca ca.crt ca /etc/openvpn/torguard/ca.crt
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote 188.132.251.194 443 remote 188.132.251.194 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote az.west.usa.torguardvpnaccess.com 443 remote az.west.usa.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,3 +18,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote atl.east.usa.torguardvpnaccess.com 443 remote atl.east.usa.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
cipher AES-256-CBC cipher AES-256-CBC
fast-io fast-io
@ -19,3 +19,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote chi.central.usa.torguardvpnaccess.com 443 remote chi.central.usa.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote-random remote-random
remote dal.central.usa.torguardvpnaccess.com 443 remote dal.central.usa.torguardvpnaccess.com 443
@ -9,8 +9,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,4 +18,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote la.west.usa.torguardvpnaccess.com 443 remote la.west.usa.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote lv.west.usa.torguardvpnaccess.com 443 remote lv.west.usa.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,3 +18,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote fl.east.usa.torguardvpnaccess.com 443 remote fl.east.usa.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote nj.east.usa.torguardvpnaccess.com 443 remote nj.east.usa.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote ny.east.usa.torguardvpnaccess.com 443 remote ny.east.usa.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote sa.west.usa.torguardvpnaccess.com 443 remote sa.west.usa.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote uk.torguardvpnaccess.com 443 remote uk.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -17,4 +17,9 @@ route-delay 2
route-method exe route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -1,5 +1,5 @@
client client
dev tun dev tun0
proto udp proto udp
remote vn.torguardvpnaccess.com 443 remote vn.torguardvpnaccess.com 443
resolv-retry infinite resolv-retry infinite
@ -8,8 +8,8 @@ nobind
tun-mtu 1500 tun-mtu 1500
tun-mtu-extra 32 tun-mtu-extra 32
mssfix 1450 mssfix 1450
ca ca.crt ca /etc/openvpn/torguard/ca.crt
auth-user-pass auth-user-pass /config/openvpn-credentials.txt
comp-lzo comp-lzo
fast-io fast-io
ping-restart 0 ping-restart 0
@ -18,3 +18,9 @@ route-method exe
script-security 3 system script-security 3 system
mute-replay-warnings mute-replay-warnings
verb 3 verb 3
# OpenVPN controls startup and shut down of transmission
script-security 2
up /etc/transmission/start.sh
down /etc/transmission/stop.sh

View File

@ -0,0 +1 @@
Netherlands.ovpn