diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | gui/src/renderer/components/AdvancedSettings.tsx | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 33b8757fb3..e0939c8ed8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ Line wrap the file at 100 chars. Th ### Added - Enable isolation of the Electron renderer process to protect against potentially malicious third party dependencies. +- Add 51820 to list of WireGuard ports in app settings. #### Android - Allow reaching the API server when connecting, disconnecting or in a blocked state. diff --git a/gui/src/renderer/components/AdvancedSettings.tsx b/gui/src/renderer/components/AdvancedSettings.tsx index f0510a91be..3f840f4492 100644 --- a/gui/src/renderer/components/AdvancedSettings.tsx +++ b/gui/src/renderer/components/AdvancedSettings.tsx @@ -49,7 +49,7 @@ const MIN_WIREGUARD_MTU_VALUE = 1280; const MAX_WIREGUARD_MTU_VALUE = 1420; const UDP_PORTS = [1194, 1195, 1196, 1197, 1300, 1301, 1302]; const TCP_PORTS = [80, 443]; -const WIREUGARD_UDP_PORTS = [53]; +const WIREUGARD_UDP_PORTS = [51820, 53]; type OptionalPort = number | undefined; |
