1512. [doc] Add "US" to root-delgation-only exclude list.

This commit is contained in:
Mark Andrews 2003-09-23 00:51:26 +00:00
parent 4829aea845
commit 73d7433474
2 changed files with 9 additions and 5 deletions

View file

@ -1,13 +1,17 @@
1512. [doc] Add "US" to root-delgation-only exclude list.
1511. [bug] delegation-only was generating false positives
on negative answers from subzones.
1510. [func] New view option "root-delegation-only". Apply
delegation-only check to all TLDs and root.
Note there are some TLDs that are NOT delegation
only (e.g. DE and MUSEUM) these can be excluded
only (e.g. DE, LV, US and MUSEUM) these can be excluded
from the checks by using exclude.
root-delegation-only exclude { "DE"; "MUSEUM"; };
root-delegation-only exclude {
"DE"; "LV"; "US"; "MUSEUM";
};
1509. [bug] Hint zones should accept delegation-only. Forward
zone should not accept delegation-only.

View file

@ -2,7 +2,7 @@
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.0//EN"
"http://www.oasis-open.org/docbook/xml/4.0/docbookx.dtd">
<!-- File: $Id: Bv9ARM-book.xml,v 1.226 2003/09/21 23:26:59 marka Exp $ -->
<!-- File: $Id: Bv9ARM-book.xml,v 1.227 2003/09/23 00:51:26 marka Exp $ -->
<book>
<title>BIND 9 Administrator Reference Manual</title>
@ -2942,11 +2942,11 @@ Turn on enforcment of delegation-only in TLDs and root zones with an optional
exclude list.
</para>
<para>
Note some TLDs are NOT delegation only (e.g. "DE", "LV" and "MUSEUM").
Note some TLDs are NOT delegation only (e.g. "DE", "LV", "US" and "MUSEUM").
</para>
<programlisting>
options {
root-delegation-only exclude { "de"; "lv"; "museum"; };
root-delegation-only exclude { "de"; "lv"; "us"; "museum"; };
};
</programlisting>
</listitem></varlistentry>