Created
February 18, 2016 17:53
-
-
Save hdais/3e9681fdeecfbea19ebe to your computer and use it in GitHub Desktop.
Negative Trust Anchor for BIND 9.10
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
| options { | |
| // Enable DNSSEC validation | |
| dnssec-validation auto; | |
| // set NTA to dnssec-failed.org | |
| // BIND9.10 and higher implements disable-ds-digests | |
| disable-ds-digests dnssec-failed.org { SHA-1; SHA-256; }; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This didn't work for insecure TLDs for me:
So yes, this disables the DNSSEC validation for that domain, but if the parent mandates it to be secure, this doesn't help.