Add open ports to firewall

This commit is contained in:
2023-07-22 01:55:17 +01:00
parent 47ac1ae1be
commit 7ef0bdbc36

View File

@@ -25,9 +25,17 @@
hostName = "bigding"; hostName = "bigding";
interfaces.ens3.useDHCP = true; interfaces.ens3.useDHCP = true;
firewall.interfaces = { firewall = {
"tailscale0" = { allowedTCPPortRanges = [
allowedUDPPorts = [41641]; {
from = 12500;
to = 12515;
}
];
interfaces = {
"tailscale0" = {
allowedUDPPorts = [41641];
};
}; };
}; };
}; };