From 5f0c49980889c4ef584ecba32ed0070976dd087f Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Mon, 9 Feb 2026 15:41:02 +0000 Subject: [PATCH] fix(protonvpn): support port 51820 for UDP OpenVPN --- internal/configuration/settings/openvpnselection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/configuration/settings/openvpnselection.go b/internal/configuration/settings/openvpnselection.go index a161821e..43d1941e 100644 --- a/internal/configuration/settings/openvpnselection.go +++ b/internal/configuration/settings/openvpnselection.go @@ -104,7 +104,7 @@ func (o OpenVPNSelection) validate(vpnProvider string) (err error) { allowedUDP = []uint16{53, 1194, 1197, 1198, 8080, 9201} case providers.Protonvpn: allowedTCP = []uint16{443, 5995, 8443} - allowedUDP = []uint16{80, 443, 1194, 4569, 5060} + allowedUDP = []uint16{80, 443, 1194, 4569, 5060, 51820} case providers.SlickVPN: allowedTCP = []uint16{443, 8080, 8888} allowedUDP = []uint16{443, 8080, 8888}