mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-14 22:55:11 +00:00
added torguard as provider, adjusted config files and added default.ovpn symlink
This commit is contained in:
parent
ce269005f5
commit
03454101c7
@ -5,6 +5,7 @@ It bundles certificates and configurations for the following VPN providers:
|
||||
* BTGuard
|
||||
* TigerVPN
|
||||
* FrootVPN
|
||||
* TorGuard
|
||||
|
||||
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
|
||||
| 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_PASSWORD`|Your OpenVPN password |`OPENVPN_PASSWORD=asdf`|
|
||||
|
||||
|
@ -8,6 +8,8 @@ elif [ "$OPENVPN_PROVIDER" = "TIGER" ]; then
|
||||
vpn_provider="tiger"
|
||||
elif [ "$OPENVPN_PROVIDER" = "FROOT" ]; then
|
||||
vpn_provider="froot"
|
||||
elif [ "$OPENVPN_PROVIDER" = "TORGUARD" ]; then
|
||||
vpn_provider="torguard"
|
||||
else
|
||||
echo "Could not find OpenVPN provider: $OPENVPN_PROVIDER"
|
||||
echo "Please check your settings."
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote melb.au.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,4 +18,9 @@ script-security 3 system
|
||||
mute-replay-warnings
|
||||
verb 3
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote au.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,4 +18,9 @@ script-security 3 system
|
||||
mute-replay-warnings
|
||||
verb 3
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote bg.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote br.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote ca.west.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
cipher AES-256-CBC
|
||||
comp-lzo
|
||||
fast-io
|
||||
@ -18,4 +18,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto tcp
|
||||
remote ca.stealth.torguardvpnaccess.com 80
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
cipher AES-256-CBC
|
||||
comp-lzo
|
||||
fast-io
|
||||
@ -18,4 +18,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote ca.stealth.torguardvpnaccess.com 53
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
cipher AES-256-CBC
|
||||
comp-lzo
|
||||
fast-io
|
||||
@ -18,4 +18,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote ca.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote vanc.ca.west.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,4 +18,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote 190.112.220.170 443
|
||||
resolv-retry infinite
|
||||
@ -7,11 +7,16 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
fast-io
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
ping-restart 0
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote czech.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote 82.103.140.46 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote-random
|
||||
remote egy.torguardvpnaccess.com 443
|
||||
@ -9,7 +9,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,4 +18,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote fin.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote fr.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote frank.gr.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote gr.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote nur.gr.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote gre.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote hk.torguardvpnaccess.com 6060
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote hg.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote ice.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote in.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote-random
|
||||
remote 103.253.113.122 443
|
||||
@ -9,7 +9,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,4 +18,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote ire.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote it.torguardvpnaccess.com 53
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,3 +18,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
verb 3
|
||||
|
||||
|
||||
# OpenVPN controls startup and shut down of transmission
|
||||
script-security 2
|
||||
up /etc/transmission/start.sh
|
||||
down /etc/transmission/stop.sh
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote jp.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote lv.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote lux.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote 111.90.140.185 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote-random
|
||||
remote mx.torguardvpnaccess.com 443
|
||||
@ -9,7 +9,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,4 +18,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote md.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto tcp
|
||||
remote nl.stealth.torguardvpnaccess.com 80
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
cipher AES-256-CBC
|
||||
comp-lzo
|
||||
fast-io
|
||||
@ -18,4 +18,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote nl.stealth.torguardvpnaccess.com 53
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
cipher AES-256-CBC
|
||||
comp-lzo
|
||||
fast-io
|
||||
@ -18,4 +18,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote nl.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote nz.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote no.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote pa.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote pl.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote por.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote ro.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote mos.ru.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote ru.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote saudi.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote singp.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote za.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote sk.torguardvpnaccess.com 6060
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote sp.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote hud.swe.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto udp
|
||||
remote swe.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote swiss.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote thai.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun1
|
||||
dev tun0
|
||||
proto tcp
|
||||
remote 41.231.5.22 443
|
||||
resolv-retry infinite
|
||||
@ -8,7 +8,7 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
auth-user-pass
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote 188.132.251.194 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote az.west.usa.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,3 +18,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
verb 3
|
||||
|
||||
|
||||
# OpenVPN controls startup and shut down of transmission
|
||||
script-security 2
|
||||
up /etc/transmission/start.sh
|
||||
down /etc/transmission/stop.sh
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote atl.east.usa.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
cipher AES-256-CBC
|
||||
fast-io
|
||||
@ -19,3 +19,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
verb 3
|
||||
|
||||
|
||||
# OpenVPN controls startup and shut down of transmission
|
||||
script-security 2
|
||||
up /etc/transmission/start.sh
|
||||
down /etc/transmission/stop.sh
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote chi.central.usa.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote-random
|
||||
remote dal.central.usa.torguardvpnaccess.com 443
|
||||
@ -9,8 +9,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,4 +18,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote la.west.usa.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote lv.west.usa.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,3 +18,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
verb 3
|
||||
|
||||
|
||||
# OpenVPN controls startup and shut down of transmission
|
||||
script-security 2
|
||||
up /etc/transmission/start.sh
|
||||
down /etc/transmission/stop.sh
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote fl.east.usa.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote nj.east.usa.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote ny.east.usa.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote sa.west.usa.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote uk.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -17,4 +17,9 @@ route-delay 2
|
||||
route-method exe
|
||||
script-security 3 system
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
client
|
||||
dev tun
|
||||
dev tun0
|
||||
proto udp
|
||||
remote vn.torguardvpnaccess.com 443
|
||||
resolv-retry infinite
|
||||
@ -8,8 +8,8 @@ nobind
|
||||
tun-mtu 1500
|
||||
tun-mtu-extra 32
|
||||
mssfix 1450
|
||||
ca ca.crt
|
||||
auth-user-pass
|
||||
ca /etc/openvpn/torguard/ca.crt
|
||||
auth-user-pass /config/openvpn-credentials.txt
|
||||
comp-lzo
|
||||
fast-io
|
||||
ping-restart 0
|
||||
@ -18,3 +18,9 @@ route-method exe
|
||||
script-security 3 system
|
||||
mute-replay-warnings
|
||||
verb 3
|
||||
|
||||
|
||||
# OpenVPN controls startup and shut down of transmission
|
||||
script-security 2
|
||||
up /etc/transmission/start.sh
|
||||
down /etc/transmission/stop.sh
|
||||
|
1
openvpn/torguard/default.ovpn
Symbolic link
1
openvpn/torguard/default.ovpn
Symbolic link
@ -0,0 +1 @@
|
||||
Netherlands.ovpn
|
Loading…
Reference in New Issue
Block a user