summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryokai <accounts.8ef6c@simplelogin.com>2026-08-04 16:47:47 -0500
committeryokai <accounts.8ef6c@simplelogin.com>2026-08-04 16:47:47 -0500
commitc91e78758a36badda84226f6670d43075614055e (patch)
tree457fd38ede6d5c2701216d5fb832339ff66c9a5c
parentab57d8eae597938e63f06ff9b356548bcd8ce0bd (diff)
networking: allow ping on shared firewall
Enable ICMP echo requests in the shared firewall so both kusanagi and enzo can be reached with ping without punching any additional service ports. Assisted-by: OpenAI:gpt-5
-rw-r--r--common/core.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/core.nix b/common/core.nix
index 9e9ca7a..c06069a 100644
--- a/common/core.nix
+++ b/common/core.nix
@@ -18,6 +18,7 @@
# for tailscale; open only its discovery/connection UDP port and let the
# normal host firewall rules apply to tailnet traffic too.
+ networking.firewall.allowPing = true;
networking.firewall.allowedUDPPorts = [ 41641 ];
services.tailscale.enable = true;