From 5e1a87b420712619e9f506f4e057d3d8875ee62e Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Sat, 6 Sep 2025 12:40:30 +0200 Subject: [PATCH] open some ports for shodan --- nixos/hosts/shodan/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/hosts/shodan/configuration.nix b/nixos/hosts/shodan/configuration.nix index e25db66..01e2012 100644 --- a/nixos/hosts/shodan/configuration.nix +++ b/nixos/hosts/shodan/configuration.nix @@ -62,8 +62,8 @@ firewall.enable = true; firewall.interfaces."wg0".allowedTCPPorts = [8080]; firewall.interfaces."wg0".allowedUDPPorts = [8080]; - firewall.allowedTCPPorts = [22 8080 9090 9777]; - firewall.allowedUDPPorts = [22 8080 9090 9777]; + firewall.allowedTCPPorts = [22 8080 9090 9777 46899 46898]; + firewall.allowedUDPPorts = [22 8080 9090 9777 46899 46898]; hostName = "shodan"; };