fix(openvpn): set default mssfix to 1320 for all providers with no default

- Partially address #2533
This commit is contained in:
Quentin McGaw
2024-11-05 10:12:02 +00:00
parent c655500045
commit 3473fe9c15
18 changed files with 39 additions and 13 deletions

View File

@@ -10,10 +10,12 @@ import (
func (p *Provider) OpenVPNConfig(connection models.Connection,
settings settings.OpenVPN, ipv6Supported bool,
) (lines []string) {
//nolint:mnd
providerSettings := utils.OpenVPNProviderSettings{
RemoteCertTLS: true,
AuthUserPass: false,
Ping: 5, //nolint:mnd
MssFix: 1320,
Ping: 5,
RenegDisabled: true,
Ciphers: []string{openvpn.AES256cbc},
Auth: openvpn.SHA512,