From 00a1c99987e93c4ef015687269a60521b618b51e Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sat, 15 Jul 2023 17:02:55 -0400 Subject: [PATCH] networking: Allow srb2 port --- modules/networking.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/networking.nix b/modules/networking.nix index 72a262c5..4cee3f6c 100644 --- a/modules/networking.nix +++ b/modules/networking.nix @@ -17,5 +17,9 @@ internalInterfaces = [ "ve-+" ]; externalInterface = "wg-mullvad"; }; + + firewall = { + allowedUDPPorts = [ 5029 ]; + }; }; }