From 86710851b4e8d1ee555ddf31d8ac860b0f208758 Mon Sep 17 00:00:00 2001 From: bitwhisker Date: Fri, 31 Jul 2026 17:36:31 +0200 Subject: [PATCH] z9-router(host): nftables conf fix indent and allow dhcpv6 --- resources/z9/z9-router/nftables/nftables.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/z9/z9-router/nftables/nftables.conf b/resources/z9/z9-router/nftables/nftables.conf index f6396894..88534127 100644 --- a/resources/z9/z9-router/nftables/nftables.conf +++ b/resources/z9/z9-router/nftables/nftables.conf @@ -75,7 +75,8 @@ table inet host { udp dport 51820 accept comment "allow WireGuard access" # Allow DHCP server access. - iifname { $lan_ifs } udp dport 67 accept comment "allow dhcp server access" + iifname { $lan_ifs } udp dport 67 accept comment "allow dhcp server access" + iifname { $lan_ifs } udp dport 547 accept comment "allow dhcpv6 server access" # Allow DNS server access from lan_ifs iifname { $lan_ifs, $if_wg55_management } udp dport 53 accept comment "allow dns server access from lan_ifs"