Hello,
The issue you are experiencing with DNSSEC validation and forwarders on Windows Server 2022 and Windows Server 2019 is related to how the DNS server handles trust anchors and insecure zones. When forwarders are used, the DNS server may incorrectly assume that certain zones are DNSSEC signed, leading to SERVFAIL errors. This behavior is due to expired BOGUS records not being properly updated or deleted, causing the DNS server to fail the operation when it encounters a secured zone without supporting DNSSEC records.
The workaround is to remove the root trust anchor.
Get-DnsServerTrustAnchor -Name . | Remove-DnsServerTrustAnchor -Force
Best Regards
Zunhui