Maint: OpenVPN option: remove all ping-* options

- Use the built-in healthcheck vpn restart mechanism instead
- Restarting with `ping-restart` or `ping-exit` would only restart with the same `remote` connection
- Specify `ping` options as VPN specific to ensure the server doesn't disconnect us
This commit is contained in:
Quentin McGaw (desktop)
2021-09-14 15:23:56 +00:00
parent 9f65157a0d
commit c3078f84e8
13 changed files with 11 additions and 25 deletions

View File

@@ -29,15 +29,14 @@ func (s *Surfshark) BuildConf(connection models.Connection,
"dev " + settings.Interface,
"nobind",
"remote-cert-tls server",
"ping 15",
"tls-exit",
// Surfshark specific
"ping 15",
"tun-mtu-extra 32",
"mssfix " + strconv.Itoa(int(settings.MSSFix)),
"reneg-sec 0",
"key-direction 1",
"ping-restart 0",
// Added constant values
"auth-nocache",