dns/bind: add validate-except config option (#5549)#5550
Open
cm-rudolph wants to merge 1 commit into
Open
Conversation
cm-rudolph
force-pushed
the
cr_bind_validate_except
branch
2 times, most recently
from
July 11, 2026 18:08
df6e1b6 to
badc2c6
Compare
cm-rudolph
force-pushed
the
cr_bind_validate_except
branch
from
July 11, 2026 18:09
badc2c6 to
0169a0b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Important notices
Before you submit a pull request, we ask you kindly to acknowledge the following:
If AI was used, please disclose:
Describe the problem
When running a split-horizon DNS setup where the public domain is DNSSEC-signed, internal clients experience
SERVFAILerrors when querying internal, unsigned forward zones. While BIND implicitly trusts local primary zones and bypasses validation for them, forwarded zones trigger strict recursive checks. BIND attempts to validate the forwarded zone against the public chain of trust and naturally fails.Currently, the BIND plugin UI does not expose the
validate-exceptdirective, making it impossible to exclude these internal zones/subdomains from DNSSEC validation without manual backend workarounds that get overwritten by the template engine.Describe the proposed solution
Expose the
validate-exceptdirective in the UI.Related issue
#5549