feat(ninurta): make firewall configuration a little more restrictive
Some checks failed
Continuous Integration / Checks (push) Has been cancelled

This commit is contained in:
Tim Schubert 2024-12-20 23:53:38 +01:00
parent 12b4614fc7
commit 09ca9341f9
Signed by: dadada
SSH key fingerprint: SHA256:bFAjFH3hR8zRBaJjzQDjc3o4jqoq5EZ87l+KXEjxIz0

View file

@ -376,17 +376,21 @@ in
enable = true;
allowPing = true;
allowedTCPPorts = [
22 # SSH
2222 # SSH
80 # munin web
631 # Printing
];
allowedUDPPorts = [
631 # Printing
51234 # Wireguard
51235 # Wireguard
];
interfaces = {
br0.allowedTCPPorts = [
22 # SSH
80 # munin web
631 # IPP
];
br0.allowedUDPPorts = [
631 # IPP
];
uwu.allowedTCPPorts = [
softServePort
];