From 4057f3d0af4e0b6c23cb7a85838c2d3c4e667dca Mon Sep 17 00:00:00 2001 From: Kees Monshouwer Date: Fri, 23 Feb 2024 16:22:05 +0100 Subject: [PATCH] auth: do not disable ns records at apex in consumer zones --- pdns/auth-secondarycommunicator.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pdns/auth-secondarycommunicator.cc b/pdns/auth-secondarycommunicator.cc index fb0e73c7a8..9f21e81256 100644 --- a/pdns/auth-secondarycommunicator.cc +++ b/pdns/auth-secondarycommunicator.cc @@ -331,6 +331,9 @@ static bool catalogProcess(const DomainInfo& di, vector& rrs, hasSOA = true; continue; } + if (rr.qtype == QType::NS) { + continue; + } } else if (rr.qname == DNSName("version") + di.zone && rr.qtype == QType::TXT) { -- 2.47.2