From 324e9ca3d1b88debd8c9f3e1aab7240fdadcb441 Mon Sep 17 00:00:00 2001 From: Alex Rad Date: Mon, 28 Oct 2024 11:57:34 -0700 Subject: [PATCH] [base] Remove custom_dns_devices rule from default, handled in API, breaks older kernels --- base/scripts/nft_rules.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/base/scripts/nft_rules.sh b/base/scripts/nft_rules.sh index 89cdeeb1..72651045 100755 --- a/base/scripts/nft_rules.sh +++ b/base/scripts/nft_rules.sh @@ -578,8 +578,6 @@ table inet nat { } chain DNS_DNAT { - ip saddr @custom_dns_devices meta l4proto udp dnat to ip saddr map @custom_dns_devices:53 - ip saddr @custom_dns_devices meta l4proto tcp dnat to ip saddr map @custom_dns_devices:53 udp dport 53 counter dnat ip to $LANIP:53 tcp dport 53 counter dnat ip to $LANIP:53 }