Author: dougb
Date: Thu Jun 25 18:50:46 2009
New Revision: 194991
URL: http://svn.freebsd.org/changeset/base/194991

Log:
  Vendor import of BIND 9.6.1

Added:
  vendor/bind9/dist/KNOWN-DEFECTS
Modified:
  vendor/bind9/dist/CHANGES
  vendor/bind9/dist/bin/check/named-checkzone.c
  vendor/bind9/dist/bin/dnssec/dnssec-signzone.8
  vendor/bind9/dist/bin/dnssec/dnssec-signzone.c
  vendor/bind9/dist/bin/dnssec/dnssec-signzone.docbook
  vendor/bind9/dist/bin/dnssec/dnssec-signzone.html
  vendor/bind9/dist/bin/dnssec/dnssectool.c
  vendor/bind9/dist/doc/arm/Bv9ARM-book.xml
  vendor/bind9/dist/doc/arm/Bv9ARM.ch06.html
  vendor/bind9/dist/doc/arm/Bv9ARM.ch07.html
  vendor/bind9/dist/doc/arm/Bv9ARM.ch08.html
  vendor/bind9/dist/doc/arm/Bv9ARM.ch09.html
  vendor/bind9/dist/doc/arm/Bv9ARM.html
  vendor/bind9/dist/doc/arm/man.dig.html
  vendor/bind9/dist/doc/arm/man.dnssec-dsfromkey.html
  vendor/bind9/dist/doc/arm/man.dnssec-keyfromlabel.html
  vendor/bind9/dist/doc/arm/man.dnssec-keygen.html
  vendor/bind9/dist/doc/arm/man.dnssec-signzone.html
  vendor/bind9/dist/doc/arm/man.host.html
  vendor/bind9/dist/doc/arm/man.named-checkconf.html
  vendor/bind9/dist/doc/arm/man.named-checkzone.html
  vendor/bind9/dist/doc/arm/man.named.html
  vendor/bind9/dist/doc/arm/man.nsupdate.html
  vendor/bind9/dist/doc/arm/man.rndc-confgen.html
  vendor/bind9/dist/doc/arm/man.rndc.conf.html
  vendor/bind9/dist/doc/arm/man.rndc.html
  vendor/bind9/dist/lib/bind9/api
  vendor/bind9/dist/lib/bind9/check.c
  vendor/bind9/dist/lib/dns/api
  vendor/bind9/dist/lib/dns/dnssec.c
  vendor/bind9/dist/lib/dns/include/dns/dnssec.h
  vendor/bind9/dist/lib/dns/include/dns/keyvalues.h
  vendor/bind9/dist/lib/dns/nsec3.c
  vendor/bind9/dist/lib/dns/resolver.c
  vendor/bind9/dist/version

Modified: vendor/bind9/dist/CHANGES
==============================================================================
--- vendor/bind9/dist/CHANGES   Thu Jun 25 18:46:30 2009        (r194990)
+++ vendor/bind9/dist/CHANGES   Thu Jun 25 18:50:46 2009        (r194991)
@@ -1,4 +1,23 @@
 
+       --- 9.6.1 released ---
+
+2607.  [bug]           named could incorrectly delete NSEC3 records for
+                       empty nodes when processing a update request.  
+                       [RT #19749]
+
+2606.  [bug]           "delegation-only" was not being accepted in
+                       delegation-only type zones. [RT #19717]
+
+2605.  [bug]           Accept DS responses from delegation only zones.
+                       [RT # 19296]
+
+2603.  [port]          win32: handle .exe extension of named-checkzone and
+                       named-comilezone argv[0] names under windows.
+                       [RT #19767]
+
+2602.  [port]          win32: fix debugging command line build of libisccfg.
+                       [RT #19767]
+
        --- 9.6.1rc1 released ---
 
 2599.  [bug]           Address rapid memory growth when validation fails.

Added: vendor/bind9/dist/KNOWN-DEFECTS
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ vendor/bind9/dist/KNOWN-DEFECTS     Thu Jun 25 18:50:46 2009        
(r194991)
@@ -0,0 +1,15 @@
+dnssec-signzone was designed so that it could sign a zone partially, using
+only a subset of the DNSSEC keys needed to produce a fully-signed zone.
+This permits a zone administrator, for example, to sign a zone with one
+key on one machine, move the resulting partially-signed zone to a second
+machine, and sign it again with a second key.
+
+An unfortunate side-effect of this flexibility is that dnssec-signzone
+does not check to make sure it's signing a zone with any valid keys at
+all.  An attempt to sign a zone without any keys will appear to succeed,
+producing a "signed" zone with no signatures.  There is no warning issued
+when a zone is not signed.
+
+This will be corrected in a future release.  In the meantime, ISC
+recommends examining the output of dnssec-signzone to confirm that
+the zone is properly signed by all keys before using it.

Modified: vendor/bind9/dist/bin/check/named-checkzone.c
==============================================================================
--- vendor/bind9/dist/bin/check/named-checkzone.c       Thu Jun 25 18:46:30 
2009        (r194990)
+++ vendor/bind9/dist/bin/check/named-checkzone.c       Thu Jun 25 18:50:46 
2009        (r194991)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: named-checkzone.c,v 1.51.34.2 2009/02/16 23:47:15 tbox Exp $ */
+/* $Id: named-checkzone.c,v 1.51.34.3 2009/05/29 02:17:43 marka Exp $ */
 
 /*! \file */
 
@@ -123,9 +123,13 @@ main(int argc, char **argv) {
         */
        if (strncmp(prog_name, "lt-", 3) == 0)
                prog_name += 3;
-       if (strcmp(prog_name, "named-checkzone") == 0)
+
+#define PROGCMP(X) \
+       (strcasecmp(prog_name, X) == 0 || strcasecmp(prog_name, X ".exe") == 0)
+
+       if (PROGCMP("named-checkzone"))
                progmode = progmode_check;
-       else if (strcmp(prog_name, "named-compilezone") == 0)
+       else if (PROGCMP("named-compilezone"))
                progmode = progmode_compile;
        else
                INSIST(0);

Modified: vendor/bind9/dist/bin/dnssec/dnssec-signzone.8
==============================================================================
--- vendor/bind9/dist/bin/dnssec/dnssec-signzone.8      Thu Jun 25 18:46:30 
2009        (r194990)
+++ vendor/bind9/dist/bin/dnssec/dnssec-signzone.8      Thu Jun 25 18:50:46 
2009        (r194991)
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2004-2008 Internet Systems Consortium, Inc. ("ISC")
+.\" Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC")
 .\" Copyright (C) 2000-2003 Internet Software Consortium.
 .\" 
 .\" Permission to use, copy, modify, and distribute this software for any
@@ -13,275 +13,163 @@
 .\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 .\" PERFORMANCE OF THIS SOFTWARE.
 .\"
-.\" $Id: dnssec-signzone.8,v 1.47 2008/10/15 01:11:35 tbox Exp $
+.\" $Id: dnssec-signzone.8,v 1.47.44.4 2009/06/09 01:47:19 each Exp $
 .\"
 .hy 0
 .ad l
-.\"     Title: dnssec\-signzone
-.\"    Author: 
-.\" Generator: DocBook XSL Stylesheets v1.71.1 <http://docbook.sf.net/>
-.\"      Date: June 30, 2000
-.\"    Manual: BIND9
-.\"    Source: BIND9
-.\"
-.TH "DNSSEC\-SIGNZONE" "8" "June 30, 2000" "BIND9" "BIND9"
-.\" disable hyphenation
-.nh
-.\" disable justification (adjust text to left margin only)
-.ad l
-.SH "NAME"
-dnssec\-signzone \- DNSSEC zone signing tool
+.\"Generated by db2man.xsl. Don't modify this, modify the source.
+.de Sh \" Subsection
+.br
+.if t .Sp
+.ne 5
+.PP
+\fB\\$1\fR
+.PP
+..
+.de Sp \" Vertical space (when we can't use .PP)
+.if t .sp .5v
+.if n .sp
+..
+.de Ip \" List item
+.br
+.ie \\n(.$>=3 .ne \\$3
+.el .ne 3
+.IP "\\$1" \\$2
+..
+.TH "DNSSEC-SIGNZONE" 8 "June 08, 2009" "" ""
+.SH NAME
+dnssec-signzone \- DNSSEC zone signing tool
 .SH "SYNOPSIS"
 .HP 16
-\fBdnssec\-signzone\fR [\fB\-a\fR] [\fB\-c\ \fR\fB\fIclass\fR\fR] [\fB\-d\ 
\fR\fB\fIdirectory\fR\fR] [\fB\-e\ \fR\fB\fIend\-time\fR\fR] [\fB\-f\ 
\fR\fB\fIoutput\-file\fR\fR] [\fB\-g\fR] [\fB\-h\fR] [\fB\-k\ 
\fR\fB\fIkey\fR\fR] [\fB\-l\ \fR\fB\fIdomain\fR\fR] [\fB\-i\ 
\fR\fB\fIinterval\fR\fR] [\fB\-I\ \fR\fB\fIinput\-format\fR\fR] [\fB\-j\ 
\fR\fB\fIjitter\fR\fR] [\fB\-N\ \fR\fB\fIsoa\-serial\-format\fR\fR] [\fB\-o\ 
\fR\fB\fIorigin\fR\fR] [\fB\-O\ \fR\fB\fIoutput\-format\fR\fR] [\fB\-p\fR] 
[\fB\-r\ \fR\fB\fIrandomdev\fR\fR] [\fB\-s\ \fR\fB\fIstart\-time\fR\fR] 
[\fB\-t\fR] [\fB\-v\ \fR\fB\fIlevel\fR\fR] [\fB\-z\fR] [\fB\-3\ 
\fR\fB\fIsalt\fR\fR] [\fB\-H\ \fR\fB\fIiterations\fR\fR] [\fB\-A\fR] {zonefile} 
[key...]
+\fBdnssec\-signzone\fR [\fB\-a\fR] [\fB\-c\ \fIclass\fR\fR] [\fB\-d\ 
\fIdirectory\fR\fR] [\fB\-e\ \fIend\-time\fR\fR] [\fB\-f\ 
\fIoutput\-file\fR\fR] [\fB\-g\fR] [\fB\-h\fR] [\fB\-k\ \fIkey\fR\fR] [\fB\-l\ 
\fIdomain\fR\fR] [\fB\-i\ \fIinterval\fR\fR] [\fB\-I\ \fIinput\-format\fR\fR] 
[\fB\-j\ \fIjitter\fR\fR] [\fB\-N\ \fIsoa\-serial\-format\fR\fR] [\fB\-o\ 
\fIorigin\fR\fR] [\fB\-O\ \fIoutput\-format\fR\fR] [\fB\-p\fR] [\fB\-r\ 
\fIrandomdev\fR\fR] [\fB\-s\ \fIstart\-time\fR\fR] [\fB\-t\fR] [\fB\-v\ 
\fIlevel\fR\fR] [\fB\-z\fR] [\fB\-3\ \fIsalt\fR\fR] [\fB\-H\ 
\fIiterations\fR\fR] [\fB\-A\fR] {zonefile} [key...]
 .SH "DESCRIPTION"
 .PP
-\fBdnssec\-signzone\fR
-signs a zone. It generates NSEC and RRSIG records and produces a signed 
version of the zone. The security status of delegations from the signed zone 
(that is, whether the child zones are secure or not) is determined by the 
presence or absence of a
-\fIkeyset\fR
-file for each child zone.
+\fBdnssec\-signzone\fR signs a zone\&. It generates NSEC and RRSIG records and 
produces a signed version of the zone\&. The security status of delegations 
from the signed zone (that is, whether the child zones are secure or not) is 
determined by the presence or absence of a \fIkeyset\fR file for each child 
zone\&.
 .SH "OPTIONS"
-.PP
+.TP
 \-a
-.RS 4
-Verify all generated signatures.
-.RE
-.PP
+Verify all generated signatures\&.
+.TP
 \-c \fIclass\fR
-.RS 4
-Specifies the DNS class of the zone.
-.RE
-.PP
+Specifies the DNS class of the zone\&.
+.TP
 \-k \fIkey\fR
-.RS 4
-Treat specified key as a key signing key ignoring any key flags. This option 
may be specified multiple times.
-.RE
-.PP
+Treat specified key as a key signing key ignoring any key flags\&. This option 
may be specified multiple times\&.
+.TP
 \-l \fIdomain\fR
-.RS 4
-Generate a DLV set in addition to the key (DNSKEY) and DS sets. The domain is 
appended to the name of the records.
-.RE
-.PP
+Generate a DLV set in addition to the key (DNSKEY) and DS sets\&. The domain 
is appended to the name of the records\&.
+.TP
 \-d \fIdirectory\fR
-.RS 4
-Look for
-\fIkeyset\fR
-files in
-\fBdirectory\fR
-as the directory
-.RE
-.PP
+Look for \fIkeyset\fR files in \fBdirectory\fR as the directory
+.TP
 \-g
-.RS 4
-Generate DS records for child zones from keyset files. Existing DS records 
will be removed.
-.RE
-.PP
+Generate DS records for child zones from keyset files\&. Existing DS records 
will be removed\&.
+.TP
 \-s \fIstart\-time\fR
-.RS 4
-Specify the date and time when the generated RRSIG records become valid. This 
can be either an absolute or relative time. An absolute start time is indicated 
by a number in YYYYMMDDHHMMSS notation; 20000530144500 denotes 14:45:00 UTC on 
May 30th, 2000. A relative start time is indicated by +N, which is N seconds 
from the current time. If no
-\fBstart\-time\fR
-is specified, the current time minus 1 hour (to allow for clock skew) is used.
-.RE
-.PP
+Specify the date and time when the generated RRSIG records become valid\&. 
This can be either an absolute or relative time\&. An absolute start time is 
indicated by a number in YYYYMMDDHHMMSS notation; 20000530144500 denotes 
14:45:00 UTC on May 30th, 2000\&. A relative start time is indicated by +N, 
which is N seconds from the current time\&. If no \fBstart\-time\fR is 
specified, the current time minus 1 hour (to allow for clock skew) is used\&.
+.TP
 \-e \fIend\-time\fR
-.RS 4
-Specify the date and time when the generated RRSIG records expire. As with
-\fBstart\-time\fR, an absolute time is indicated in YYYYMMDDHHMMSS notation. A 
time relative to the start time is indicated with +N, which is N seconds from 
the start time. A time relative to the current time is indicated with now+N. If 
no
-\fBend\-time\fR
-is specified, 30 days from the start time is used as a default.
-.RE
-.PP
+Specify the date and time when the generated RRSIG records expire\&. As with 
\fBstart\-time\fR, an absolute time is indicated in YYYYMMDDHHMMSS notation\&. 
A time relative to the start time is indicated with +N, which is N seconds from 
the start time\&. A time relative to the current time is indicated with 
now+N\&. If no \fBend\-time\fR is specified, 30 days from the start time is 
used as a default\&.
+.TP
 \-f \fIoutput\-file\fR
-.RS 4
-The name of the output file containing the signed zone. The default is to 
append
-\fI.signed\fR
-to the input filename.
-.RE
-.PP
+The name of the output file containing the signed zone\&. The default is to 
append \fI\&.signed\fR to the input filename\&.
+.TP
 \-h
-.RS 4
-Prints a short summary of the options and arguments to
-\fBdnssec\-signzone\fR.
-.RE
-.PP
+Prints a short summary of the options and arguments to 
\fBdnssec\-signzone\fR\&.
+.TP
 \-i \fIinterval\fR
-.RS 4
-When a previously\-signed zone is passed as input, records may be resigned. The
-\fBinterval\fR
-option specifies the cycle interval as an offset from the current time (in 
seconds). If a RRSIG record expires after the cycle interval, it is retained. 
Otherwise, it is considered to be expiring soon, and it will be replaced.
-.sp
-The default cycle interval is one quarter of the difference between the 
signature end and start times. So if neither
-\fBend\-time\fR
-or
-\fBstart\-time\fR
-are specified,
-\fBdnssec\-signzone\fR
-generates signatures that are valid for 30 days, with a cycle interval of 7.5 
days. Therefore, if any existing RRSIG records are due to expire in less than 
7.5 days, they would be replaced.
-.RE
-.PP
+When a previously\-signed zone is passed as input, records may be resigned\&. 
The \fBinterval\fR option specifies the cycle interval as an offset from the 
current time (in seconds)\&. If a RRSIG record expires after the cycle 
interval, it is retained\&. Otherwise, it is considered to be expiring soon, 
and it will be replaced\&.
+The default cycle interval is one quarter of the difference between the 
signature end and start times\&. So if neither \fBend\-time\fR or 
\fBstart\-time\fR are specified, \fBdnssec\-signzone\fR generates signatures 
that are valid for 30 days, with a cycle interval of 7\&.5 days\&. Therefore, 
if any existing RRSIG records are due to expire in less than 7\&.5 days, they 
would be replaced\&.
+.TP
 \-I \fIinput\-format\fR
-.RS 4
-The format of the input zone file. Possible formats are
-\fB"text"\fR
-(default) and
-\fB"raw"\fR. This option is primarily intended to be used for dynamic signed 
zones so that the dumped zone file in a non\-text format containing updates can 
be signed directly. The use of this option does not make much sense for 
non\-dynamic zones.
-.RE
-.PP
+The format of the input zone file\&. Possible formats are \fB"text"\fR 
(default) and \fB"raw"\fR\&. This option is primarily intended to be used for 
dynamic signed zones so that the dumped zone file in a non\-text format 
containing updates can be signed directly\&. The use of this option does not 
make much sense for non\-dynamic zones\&.
+.TP
 \-j \fIjitter\fR
-.RS 4
-When signing a zone with a fixed signature lifetime, all RRSIG records issued 
at the time of signing expires simultaneously. If the zone is incrementally 
signed, i.e. a previously\-signed zone is passed as input to the signer, all 
expired signatures have to be regenerated at about the same time. The
-\fBjitter\fR
-option specifies a jitter window that will be used to randomize the signature 
expire time, thus spreading incremental signature regeneration over time.
-.sp
-Signature lifetime jitter also to some extent benefits validators and servers 
by spreading out cache expiration, i.e. if large numbers of RRSIGs don't expire 
at the same time from all caches there will be less congestion than if all 
validators need to refetch at mostly the same time.
-.RE
-.PP
+When signing a zone with a fixed signature lifetime, all RRSIG records issued 
at the time of signing expires simultaneously\&. If the zone is incrementally 
signed, i\&.e\&. a previously\-signed zone is passed as input to the signer, 
all expired signatures have to be regenerated at about the same time\&. The 
\fBjitter\fR option specifies a jitter window that will be used to randomize 
the signature expire time, thus spreading incremental signature regeneration 
over time\&.
+Signature lifetime jitter also to some extent benefits validators and servers 
by spreading out cache expiration, i\&.e\&. if large numbers of RRSIGs don't 
expire at the same time from all caches there will be less congestion than if 
all validators need to refetch at mostly the same time\&.
+.TP
 \-n \fIncpus\fR
-.RS 4
-Specifies the number of threads to use. By default, one thread is started for 
each detected CPU.
-.RE
-.PP
+Specifies the number of threads to use\&. By default, one thread is started 
for each detected CPU\&.
+.TP
 \-N \fIsoa\-serial\-format\fR
-.RS 4
-The SOA serial number format of the signed zone. Possible formats are
-\fB"keep"\fR
-(default),
-\fB"increment"\fR
-and
-\fB"unixtime"\fR.
-.RS 4
-.PP
+The SOA serial number format of the signed zone\&. Possible formats are 
\fB"keep"\fR (default), \fB"increment"\fR and \fB"unixtime"\fR\&.
+.RS
+.TP
 \fB"keep"\fR
-.RS 4
-Do not modify the SOA serial number.
-.RE
-.PP
+Do not modify the SOA serial number\&.
+.TP
 \fB"increment"\fR
-.RS 4
-Increment the SOA serial number using RFC 1982 arithmetics.
-.RE
-.PP
+Increment the SOA serial number using RFC 1982 arithmetics\&.
+.TP
 \fB"unixtime"\fR
-.RS 4
-Set the SOA serial number to the number of seconds since epoch.
-.RE
+Set the SOA serial number to the number of seconds since epoch\&.
 .RE
-.RE
-.PP
+.IP
+.TP
 \-o \fIorigin\fR
-.RS 4
-The zone origin. If not specified, the name of the zone file is assumed to be 
the origin.
-.RE
-.PP
+The zone origin\&. If not specified, the name of the zone file is assumed to 
be the origin\&.
+.TP
 \-O \fIoutput\-format\fR
-.RS 4
-The format of the output file containing the signed zone. Possible formats are
-\fB"text"\fR
-(default) and
-\fB"raw"\fR.
-.RE
-.PP
+The format of the output file containing the signed zone\&. Possible formats 
are \fB"text"\fR (default) and \fB"raw"\fR\&.
+.TP
 \-p
-.RS 4
-Use pseudo\-random data when signing the zone. This is faster, but less 
secure, than using real random data. This option may be useful when signing 
large zones or when the entropy source is limited.
-.RE
-.PP
+Use pseudo\-random data when signing the zone\&. This is faster, but less 
secure, than using real random data\&. This option may be useful when signing 
large zones or when the entropy source is limited\&.
+.TP
 \-r \fIrandomdev\fR
-.RS 4
-Specifies the source of randomness. If the operating system does not provide a
-\fI/dev/random\fR
-or equivalent device, the default source of randomness is keyboard input.
-\fIrandomdev\fR
-specifies the name of a character device or file containing random data to be 
used instead of the default. The special value
-\fIkeyboard\fR
-indicates that keyboard input should be used.
-.RE
-.PP
+Specifies the source of randomness\&. If the operating system does not provide 
a \fI/dev/random\fR or equivalent device, the default source of randomness is 
keyboard input\&. \fIrandomdev\fR specifies the name of a character device or 
file containing random data to be used instead of the default\&. The special 
value \fIkeyboard\fR indicates that keyboard input should be used\&.
+.TP
 \-t
-.RS 4
-Print statistics at completion.
-.RE
-.PP
+Print statistics at completion\&.
+.TP
 \-v \fIlevel\fR
-.RS 4
-Sets the debugging level.
-.RE
-.PP
+Sets the debugging level\&.
+.TP
 \-z
-.RS 4
-Ignore KSK flag on key when determining what to sign.
-.RE
-.PP
+Ignore KSK flag on key when determining what to sign\&.
+.TP
 \-3 \fIsalt\fR
-.RS 4
-Generate a NSEC3 chain with the given hex encoded salt. A dash (\fIsalt\fR) 
can be used to indicate that no salt is to be used when generating the NSEC3 
chain.
-.RE
-.PP
+Generate a NSEC3 chain with the given hex encoded salt\&. A dash (\fIsalt\fR) 
can be used to indicate that no salt is to be used when generating the NSEC3 
chain\&.
+.TP
 \-H \fIiterations\fR
-.RS 4
-When generating a NSEC3 chain use this many interations. The default is 100.
-.RE
-.PP
+When generating a NSEC3 chain use this many interations\&. The default is 
100\&.
+.TP
 \-A
-.RS 4
-When generating a NSEC3 chain set the OPTOUT flag on all NSEC3 records and do 
not generate NSEC3 records for insecure delegations.
-.RE
-.PP
+When generating a NSEC3 chain set the OPTOUT flag on all NSEC3 records and do 
not generate NSEC3 records for insecure delegations\&.
+.TP
 zonefile
-.RS 4
-The file containing the zone to be signed.
-.RE
-.PP
+The file containing the zone to be signed\&.
+.TP
 key
-.RS 4
-Specify which keys should be used to sign the zone. If no keys are specified, 
then the zone will be examined for DNSKEY records at the zone apex. If these 
are found and there are matching private keys, in the current directory, then 
these will be used for signing.
-.RE
+Specify which keys should be used to sign the zone\&. If no keys are 
specified, then the zone will be examined for DNSKEY records at the zone 
apex\&. If these are found and there are matching private keys, in the current 
directory, then these will be used for signing\&.
 .SH "EXAMPLE"
 .PP
-The following command signs the
-\fBexample.com\fR
-zone with the DSA key generated by
-\fBdnssec\-keygen\fR
-(Kexample.com.+003+17247). The zone's keys must be in the master file 
(\fIdb.example.com\fR). This invocation looks for
-\fIkeyset\fR
-files, in the current directory, so that DS records can be generated from them 
(\fB\-g\fR).
-.sp
-.RS 4
+The following command signs the \fBexample\&.com\fR zone with the DSA key 
generated by \fBdnssec\-keygen\fR (Kexample\&.com\&.+003+17247)\&. The zone's 
keys must be in the master file (\fIdb\&.example\&.com\fR)\&. This invocation 
looks for \fIkeyset\fR files, in the current directory, so that DS records can 
be generated from them (\fB\-g\fR)\&.
 .nf
-% dnssec\-signzone \-g \-o example.com db.example.com \\
-Kexample.com.+003+17247
-db.example.com.signed
+% dnssec\-signzone \-g \-o example\&.com db\&.example\&.com \\
+Kexample\&.com\&.+003+17247
+db\&.example\&.com\&.signed
 %
 .fi
-.RE
 .PP
-In the above example,
-\fBdnssec\-signzone\fR
-creates the file
-\fIdb.example.com.signed\fR. This file should be referenced in a zone 
statement in a
-\fInamed.conf\fR
-file.
-.PP
-This example re\-signs a previously signed zone with default parameters. The 
private keys are assumed to be in the current directory.
-.sp
-.RS 4
+In the above example, \fBdnssec\-signzone\fR creates the file 
\fIdb\&.example\&.com\&.signed\fR\&. This file should be referenced in a zone 
statement in a \fInamed\&.conf\fR file\&.
+.PP
+This example re\-signs a previously signed zone with default parameters\&. The 
private keys are assumed to be in the current directory\&.
 .nf
-% cp db.example.com.signed db.example.com
-% dnssec\-signzone \-o example.com db.example.com
-db.example.com.signed
+% cp db\&.example\&.com\&.signed db\&.example\&.com
+% dnssec\-signzone \-o example\&.com db\&.example\&.com
+db\&.example\&.com\&.signed
 %
 .fi
-.RE
+.SH "KNOWN BUGS"
+.PP
+ \fBdnssec\-signzone\fR was designed so that it could sign a zone partially, 
using only a subset of the DNSSEC keys needed to produce a fully\-signed 
zone\&. This permits a zone administrator, for example, to sign a zone with one 
key on one machine, move the resulting partially\-signed zone to a second 
machine, and sign it again with a second key\&.
+.PP
+An unfortunate side\-effect of this flexibility is that \fBdnssec\-signzone\fR 
does not check to make sure it's signing a zone with any valid keys at all\&. 
An attempt to sign a zone without any keys will appear to succeed, producing a 
"signed" zone with no signatures\&. There is no warning issued when a zone is 
not fully signed\&.
+.PP
+This will be corrected in a future release\&. In the meantime, ISC recommends 
examining the output of \fBdnssec\-signzone\fR to confirm that the zone is 
properly signed by all keys before using it\&.
 .SH "SEE ALSO"
 .PP
-\fBdnssec\-keygen\fR(8),
-BIND 9 Administrator Reference Manual,
-RFC 4033.
+\fBdnssec\-keygen\fR(8), BIND 9 Administrator Reference Manual, RFC 4033\&.
 .SH "AUTHOR"
 .PP
-Internet Systems Consortium
-.SH "COPYRIGHT"
-Copyright \(co 2004\-2008 Internet Systems Consortium, Inc. ("ISC")
-.br
-Copyright \(co 2000\-2003 Internet Software Consortium.
-.br
+Internet Systems Consortium 

Modified: vendor/bind9/dist/bin/dnssec/dnssec-signzone.c
==============================================================================
--- vendor/bind9/dist/bin/dnssec/dnssec-signzone.c      Thu Jun 25 18:46:30 
2009        (r194990)
+++ vendor/bind9/dist/bin/dnssec/dnssec-signzone.c      Thu Jun 25 18:50:46 
2009        (r194991)
@@ -29,7 +29,7 @@
  * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dnssec-signzone.c,v 1.209.12.3 2009/01/18 23:25:15 marka Exp $ */
+/* $Id: dnssec-signzone.c,v 1.209.12.8 2009/06/08 22:23:06 each Exp $ */
 
 /*! \file */
 

Modified: vendor/bind9/dist/bin/dnssec/dnssec-signzone.docbook
==============================================================================
--- vendor/bind9/dist/bin/dnssec/dnssec-signzone.docbook        Thu Jun 25 
18:46:30 2009        (r194990)
+++ vendor/bind9/dist/bin/dnssec/dnssec-signzone.docbook        Thu Jun 25 
18:50:46 2009        (r194991)
@@ -2,7 +2,7 @@
                "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd";
               [<!ENTITY mdash "&#8212;">]>
 <!--
- - Copyright (C) 2004-2008  Internet Systems Consortium, Inc. ("ISC")
+ - Copyright (C) 2004-2009  Internet Systems Consortium, Inc. ("ISC")
  - Copyright (C) 2000-2003  Internet Software Consortium.
  -
  - Permission to use, copy, modify, and/or distribute this software for any
@@ -18,10 +18,10 @@
  - PERFORMANCE OF THIS SOFTWARE.
 -->
 
-<!-- $Id: dnssec-signzone.docbook,v 1.31 2008/10/14 14:28:25 jreed Exp $ -->
+<!-- $Id: dnssec-signzone.docbook,v 1.31.44.6 2009/06/09 01:47:19 each Exp $ 
-->
 <refentry id="man.dnssec-signzone">
   <refentryinfo>
-    <date>June 30, 2000</date>
+    <date>June 08, 2009</date>
   </refentryinfo>
 
   <refmeta>
@@ -42,6 +42,7 @@
       <year>2006</year>
       <year>2007</year>
       <year>2008</year>
+      <year>2009</year>
       <holder>Internet Systems Consortium, Inc. ("ISC")</holder>
     </copyright>
     <copyright>
@@ -490,6 +491,33 @@ db.example.com.signed
   </refsect1>
 
   <refsect1>
+    <title>KNOWN BUGS</title>
+    <para>
+        <command>dnssec-signzone</command> was designed so that it could
+        sign a zone partially, using only a subset of the DNSSEC keys
+        needed to produce a fully-signed zone.  This permits a zone
+        administrator, for example, to sign a zone with one key on one
+        machine, move the resulting partially-signed zone to a second
+        machine, and sign it again with a second key.
+    </para>
+    <para>
+        An unfortunate side-effect of this flexibility is that
+        <command>dnssec-signzone</command> does not check to make sure
+        it's signing a zone with any valid keys at all.  An attempt to
+        sign a zone without any keys will appear to succeed, producing
+        a "signed" zone with no signatures.  There is no warning issued
+        when a zone is not fully signed.
+    </para>
+
+    <para>
+        This will be corrected in a future release.  In the meantime, ISC
+        recommends examining the output of <command>dnssec-signzone</command>
+        to confirm that the zone is properly signed by all keys before
+        using it.
+    </para>
+  </refsect1>
+
+  <refsect1>
     <title>SEE ALSO</title>
     <para><citerefentry>
         <refentrytitle>dnssec-keygen</refentrytitle><manvolnum>8</manvolnum>

Modified: vendor/bind9/dist/bin/dnssec/dnssec-signzone.html
==============================================================================
--- vendor/bind9/dist/bin/dnssec/dnssec-signzone.html   Thu Jun 25 18:46:30 
2009        (r194990)
+++ vendor/bind9/dist/bin/dnssec/dnssec-signzone.html   Thu Jun 25 18:50:46 
2009        (r194991)
@@ -1,5 +1,5 @@
 <!--
- - Copyright (C) 2004-2008 Internet Systems Consortium, Inc. ("ISC")
+ - Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC")
  - Copyright (C) 2000-2003 Internet Software Consortium.
  - 
  - Permission to use, copy, modify, and distribute this software for any
@@ -14,12 +14,12 @@
  - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  - PERFORMANCE OF THIS SOFTWARE.
 -->
-<!-- $Id: dnssec-signzone.html,v 1.33 2008/10/15 01:11:35 tbox Exp $ -->
+<!-- $Id: dnssec-signzone.html,v 1.33.44.4 2009/06/09 01:47:19 each Exp $ -->
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <title>dnssec-signzone</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.71.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.67.2">
 </head>
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" 
alink="#0000FF"><div class="refentry" lang="en">
 <a name="man.dnssec-signzone"></a><div class="titlepage"></div>
@@ -32,7 +32,7 @@
 <div class="cmdsynopsis"><p><code class="command">dnssec-signzone</code>  
[<code class="option">-a</code>] [<code class="option">-c <em 
class="replaceable"><code>class</code></em></code>] [<code class="option">-d 
<em class="replaceable"><code>directory</code></em></code>] [<code 
class="option">-e <em class="replaceable"><code>end-time</code></em></code>] 
[<code class="option">-f <em 
class="replaceable"><code>output-file</code></em></code>] [<code 
class="option">-g</code>] [<code class="option">-h</code>] [<code 
class="option">-k <em class="replaceable"><code>key</code></em></code>] [<code 
class="option">-l <em class="replaceable"><code>domain</code></em></code>] 
[<code class="option">-i <em 
class="replaceable"><code>interval</code></em></code>] [<code class="option">-I 
<em class="replaceable"><code>input-format</code></em></code>] [<code 
class="option">-j <em class="replaceable"><code>jitter</code></em></code>] 
[<code class="option">-N <em class="replaceable"><code>soa-seria
 l-format</code></em></code>] [<code class="option">-o <em 
class="replaceable"><code>origin</code></em></code>] [<code class="option">-O 
<em class="replaceable"><code>output-format</code></em></code>] [<code 
class="option">-p</code>] [<code class="option">-r <em 
class="replaceable"><code>randomdev</code></em></code>] [<code 
class="option">-s <em class="replaceable"><code>start-time</code></em></code>] 
[<code class="option">-t</code>] [<code class="option">-v <em 
class="replaceable"><code>level</code></em></code>] [<code 
class="option">-z</code>] [<code class="option">-3 <em 
class="replaceable"><code>salt</code></em></code>] [<code class="option">-H <em 
class="replaceable"><code>iterations</code></em></code>] [<code 
class="option">-A</code>] {zonefile} [key...]</p></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2543550"></a><h2>DESCRIPTION</h2>
+<a name="id215236"></a><h2>DESCRIPTION</h2>
 <p><span><strong class="command">dnssec-signzone</strong></span>
       signs a zone.  It generates
       NSEC and RRSIG records and produces a signed version of the
@@ -43,7 +43,7 @@
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2543565"></a><h2>OPTIONS</h2>
+<a name="id215253"></a><h2>OPTIONS</h2>
 <div class="variablelist"><dl>
 <dt><span class="term">-a</span></dt>
 <dd><p>
@@ -258,7 +258,7 @@
 </dl></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2544404"></a><h2>EXAMPLE</h2>
+<a name="id216044"></a><h2>EXAMPLE</h2>
 <p>
       The following command signs the <strong 
class="userinput"><code>example.com</code></strong>
       zone with the DSA key generated by <span><strong 
class="command">dnssec-keygen</strong></span>
@@ -287,14 +287,39 @@ db.example.com.signed
 %</pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2544523"></a><h2>SEE ALSO</h2>
+<a name="id216098"></a><h2>KNOWN BUGS</h2>
+<p>
+        <span><strong class="command">dnssec-signzone</strong></span> was 
designed so that it could
+        sign a zone partially, using only a subset of the DNSSEC keys
+        needed to produce a fully-signed zone.  This permits a zone
+        administrator, for example, to sign a zone with one key on one
+        machine, move the resulting partially-signed zone to a second
+        machine, and sign it again with a second key.
+    </p>
+<p>
+        An unfortunate side-effect of this flexibility is that
+        <span><strong class="command">dnssec-signzone</strong></span> does not 
check to make sure
+        it's signing a zone with any valid keys at all.  An attempt to
+        sign a zone without any keys will appear to succeed, producing
+        a "signed" zone with no signatures.  There is no warning issued
+        when a zone is not fully signed.
+    </p>
+<p>
+        This will be corrected in a future release.  In the meantime, ISC
+        recommends examining the output of <span><strong 
class="command">dnssec-signzone</strong></span>
+        to confirm that the zone is properly signed by all keys before
+        using it.
+    </p>
+</div>
+<div class="refsect1" lang="en">
+<a name="id216132"></a><h2>SEE ALSO</h2>
 <p><span class="citerefentry"><span 
class="refentrytitle">dnssec-keygen</span>(8)</span>,
       <em class="citetitle">BIND 9 Administrator Reference Manual</em>,
       <em class="citetitle">RFC 4033</em>.
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2544548"></a><h2>AUTHOR</h2>
+<a name="id216155"></a><h2>AUTHOR</h2>
 <p><span class="corpauthor">Internet Systems Consortium</span>
     </p>
 </div>

Modified: vendor/bind9/dist/bin/dnssec/dnssectool.c
==============================================================================
--- vendor/bind9/dist/bin/dnssec/dnssectool.c   Thu Jun 25 18:46:30 2009        
(r194990)
+++ vendor/bind9/dist/bin/dnssec/dnssectool.c   Thu Jun 25 18:50:46 2009        
(r194991)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2009  Internet Systems Consortium, Inc. 
("ISC")
  * Copyright (C) 2000, 2001, 2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dnssectool.c,v 1.45 2007/06/19 23:46:59 tbox Exp $ */
+/* $Id: dnssectool.c,v 1.45.334.4 2009/06/08 23:47:00 tbox Exp $ */
 
 /*! \file */
 
@@ -222,7 +222,7 @@ setup_entropy(isc_mem_t *mctx, const cha
        int usekeyboard = ISC_ENTROPY_KEYBOARDMAYBE;
 
        REQUIRE(ectx != NULL);
-       
+
        if (*ectx == NULL) {
                result = isc_entropy_create(mctx, ectx);
                if (result != ISC_R_SUCCESS)

Modified: vendor/bind9/dist/doc/arm/Bv9ARM-book.xml
==============================================================================
--- vendor/bind9/dist/doc/arm/Bv9ARM-book.xml   Thu Jun 25 18:46:30 2009        
(r194990)
+++ vendor/bind9/dist/doc/arm/Bv9ARM-book.xml   Thu Jun 25 18:50:46 2009        
(r194991)
@@ -18,7 +18,7 @@
  - PERFORMANCE OF THIS SOFTWARE.
 -->
 
-<!-- File: $Id: Bv9ARM-book.xml,v 1.380.14.14 2009/04/02 15:30:12 jreed Exp $ 
-->
+<!-- File: $Id: Bv9ARM-book.xml,v 1.380.14.15 2009/06/02 05:56:27 marka Exp $ 
-->
 <book xmlns:xi="http://www.w3.org/2001/XInclude";>
   <title>BIND 9 Administrator Reference Manual</title>
 
@@ -4333,16 +4333,16 @@ category notify { null; };
                   <entry colname="1">
                     <para><command>delegation-only</command></para>
                   </entry>
-                  <entry colname="2">
-                    <para>
-                      Delegation only.  Logs queries that have
-                      been forced to NXDOMAIN as the result of a
-                      delegation-only zone or
-                      a <command>delegation-only</command> in a
-                      hint or stub zone declaration.
-                    </para>
-                  </entry>
-                </row>
+                 <entry colname="2">
+                   <para>
+                     Delegation only.  Logs queries that have been
+                     forced to NXDOMAIN as the result of a
+                     delegation-only zone or a
+                     <command>delegation-only</command> in a hint
+                     or stub zone declaration.
+                   </para>
+                 </entry>
+               </row>
                 <row rowsep="0">
                   <entry colname="1">
                     <para><command>edns-disabled</command></para>
@@ -5116,17 +5116,45 @@ category notify { null; };
             </listitem>
           </varlistentry>
 
-          <varlistentry>
+          <varlistentry id="root_delegation_only">
             <term><command>root-delegation-only</command></term>
             <listitem>
               <para>
-                Turn on enforcement of delegation-only in TLDs (top level 
domains) and root zones
-                with an optional
-                exclude list.
+                Turn on enforcement of delegation-only in TLDs
+               (top level domains) and root zones with an optional
+               exclude list.
               </para>
+             <para>
+               DS queries are expected to be made to and be answered by
+               delegation only zones.  Such queries and responses are
+               treated as a exception to delegation-only processing
+               and are not converted to NXDOMAIN responses provided
+               a CNAME is not discovered at the query name.
+             </para>
+             <para>
+               If a delegation only zone server also serves a child
+               zone it is not always possible to determine whether
+               a answer comes from the delegation only zone or the
+               child zone.  SOA NS and DNSKEY records are apex
+               only records and a matching response that contains
+               these records or DS is treated as coming from a
+               child zone.  RRSIG records are also examined to see
+               if they are signed by a child zone or not.  The
+               authority section is also examined to see if there
+               is evidence that the answer is from the child zone.
+               Answers that are determined to be from a child zone
+               are not converted to NXDOMAIN responses.  Despite
+               all these checks there is still a possibility of
+               false negatives when a child zone is being served.
+             </para>
+             <para>
+               Similarly false positives can arise from empty nodes
+               (no records at the name) in the delegation only zone
+               when the query type is not ANY.
+             </para>
               <para>
-                Note some TLDs are not delegation only (e.g. "DE", "LV", "US"
-                and "MUSEUM").
+                Note some TLDs are not delegation only (e.g. "DE", "LV",
+               "US" and "MUSEUM").  This list is not exhaustive.
               </para>
 
 <programlisting>
@@ -9027,20 +9055,22 @@ zone <replaceable>zone_name</replaceable
                     </entry>
                     <entry colname="2">
                       <para>
-                        This is used to enforce the delegation-only
-                        status of infrastructure zones (e.g. COM, NET, ORG).
-                        Any answer that
-                        is received without an explicit or implicit delegation
-                        in the authority
-                        section will be treated as NXDOMAIN.  This does not
-                        apply to the zone
-                        apex.  This should not be applied to leaf zones.
+                       This is used to enforce the delegation-only
+                       status of infrastructure zones (e.g. COM,
+                       NET, ORG).  Any answer that is received
+                       without an explicit or implicit delegation
+                       in the authority section will be treated
+                       as NXDOMAIN.  This does not apply to the
+                       zone apex.  This should not be applied to
+                       leaf zones.
                       </para>
                       <para>
                         <varname>delegation-only</varname> has no
-                        effect on answers received
-                        from forwarders.
+                        effect on answers received from forwarders.
                       </para>
+                     <para>
+                       See caveats in <xref linkend="root_delegation_only"/>.
+                     </para>
                     </entry>
                   </row>
                 </tbody>
@@ -9299,9 +9329,11 @@ zone <replaceable>zone_name</replaceable
                   <para>
                     The flag only applies to hint and stub zones.  If set
                     to <userinput>yes</userinput>, then the zone will also be
-                    treated as if it
-                    is also a delegation-only type zone.
+                    treated as if it is also a delegation-only type zone.
                   </para>
+                 <para>
+                   See caveats in <xref linkend="root_delegation_only"/>.
+                 </para>
                 </listitem>
               </varlistentry>
 

Modified: vendor/bind9/dist/doc/arm/Bv9ARM.ch06.html
==============================================================================
--- vendor/bind9/dist/doc/arm/Bv9ARM.ch06.html  Thu Jun 25 18:46:30 2009        
(r194990)
+++ vendor/bind9/dist/doc/arm/Bv9ARM.ch06.html  Thu Jun 25 18:50:46 2009        
(r194991)
@@ -14,7 +14,7 @@
  - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  - PERFORMANCE OF THIS SOFTWARE.
 -->
-<!-- $Id: Bv9ARM.ch06.html,v 1.201.14.8 2009/04/03 01:52:21 tbox Exp $ -->
+<!-- $Id: Bv9ARM.ch06.html,v 1.201.14.9 2009/06/03 01:54:40 tbox Exp $ -->
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@@ -78,25 +78,25 @@
 <dt><span class="sect2"><a 
href="Bv9ARM.ch06.html#server_statement_definition_and_usage"><span><strong 
class="command">server</strong></span> Statement Definition and
             Usage</a></span></dt>
 <dt><span class="sect2"><a href="Bv9ARM.ch06.html#statschannels"><span><strong 
class="command">statistics-channels</strong></span> Statement 
Grammar</a></span></dt>
-<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2586754"><span><strong 
class="command">statistics-channels</strong></span> Statement Definition and
+<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2586902"><span><strong 
class="command">statistics-channels</strong></span> Statement Definition and
             Usage</a></span></dt>
-<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2586908"><span><strong 
class="command">trusted-keys</strong></span> Statement Grammar</a></span></dt>
-<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2586960"><span><strong 
class="command">trusted-keys</strong></span> Statement Definition
+<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2586988"><span><strong 
class="command">trusted-keys</strong></span> Statement Grammar</a></span></dt>
+<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2587040"><span><strong 
class="command">trusted-keys</strong></span> Statement Definition
             and Usage</a></span></dt>
 <dt><span class="sect2"><a 
href="Bv9ARM.ch06.html#view_statement_grammar"><span><strong 
class="command">view</strong></span> Statement Grammar</a></span></dt>
-<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2587042"><span><strong 
class="command">view</strong></span> Statement Definition and 
Usage</a></span></dt>
+<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2587122"><span><strong 
class="command">view</strong></span> Statement Definition and 
Usage</a></span></dt>
 <dt><span class="sect2"><a 
href="Bv9ARM.ch06.html#zone_statement_grammar"><span><strong 
class="command">zone</strong></span>
             Statement Grammar</a></span></dt>
-<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2588510"><span><strong 
class="command">zone</strong></span> Statement Definition and 
Usage</a></span></dt>
+<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2588659"><span><strong 
class="command">zone</strong></span> Statement Definition and 
Usage</a></span></dt>
 </dl></dd>
-<dt><span class="sect1"><a href="Bv9ARM.ch06.html#id2591109">Zone 
File</a></span></dt>
+<dt><span class="sect1"><a href="Bv9ARM.ch06.html#id2591138">Zone 
File</a></span></dt>
 <dd><dl>
 <dt><span class="sect2"><a 
href="Bv9ARM.ch06.html#types_of_resource_records_and_when_to_use_them">Types of 
Resource Records and When to Use Them</a></span></dt>
-<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2593203">Discussion of MX 
Records</a></span></dt>
+<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2593300">Discussion of MX 
Records</a></span></dt>
 <dt><span class="sect2"><a href="Bv9ARM.ch06.html#Setting_TTLs">Setting 
TTLs</a></span></dt>
-<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2593886">Inverse Mapping 
in IPv4</a></span></dt>
-<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2594013">Other Zone File 
Directives</a></span></dt>
-<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2594270"><acronym 
class="acronym">BIND</acronym> Master File Extension: the  <span><strong 
class="command">$GENERATE</strong></span> Directive</a></span></dt>
+<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2593915">Inverse Mapping 
in IPv4</a></span></dt>
+<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2594042">Other Zone File 
Directives</a></span></dt>
+<dt><span class="sect2"><a href="Bv9ARM.ch06.html#id2594368"><acronym 
class="acronym">BIND</acronym> Master File Extension: the  <span><strong 
class="command">$GENERATE</strong></span> Directive</a></span></dt>
 <dt><span class="sect2"><a href="Bv9ARM.ch06.html#zonefile_format">Additional 
File Formats</a></span></dt>
 </dl></dd>
 <dt><span class="sect1"><a href="Bv9ARM.ch06.html#statistics">BIND9 
Statistics</a></span></dt>
@@ -1677,11 +1677,11 @@ category notify { null; };
                   </td>
 <td>
                     <p>
-                      Delegation only.  Logs queries that have
-                      been forced to NXDOMAIN as the result of a
-                      delegation-only zone or
-                      a <span><strong 
class="command">delegation-only</strong></span> in a
-                      hint or stub zone declaration.
+                      Delegation only.  Logs queries that have been
+                      forced to NXDOMAIN as the result of a
+                      delegation-only zone or a
+                      <span><strong 
class="command">delegation-only</strong></span> in a hint
+                      or stub zone declaration.
                     </p>
                   </td>
 </tr>
@@ -2367,16 +2367,46 @@ category notify { null; };
                 in the additional section of a query response.
                 The default is not to prefer any type (NONE).
               </p></dd>
-<dt><span class="term"><span><strong 
class="command">root-delegation-only</strong></span></span></dt>
+<dt>
+<a name="root_delegation_only"></a><span class="term"><span><strong 
class="command">root-delegation-only</strong></span></span>
+</dt>
 <dd>
 <p>
-                Turn on enforcement of delegation-only in TLDs (top level 
domains) and root zones
-                with an optional
+                Turn on enforcement of delegation-only in TLDs
+                (top level domains) and root zones with an optional
                 exclude list.
               </p>
 <p>
-                Note some TLDs are not delegation only (e.g. "DE", "LV", "US"
-                and "MUSEUM").
+                DS queries are expected to be made to and be answered by
+                delegation only zones.  Such queries and responses are
+                treated as a exception to delegation-only processing
+                and are not converted to NXDOMAIN responses provided
+                a CNAME is not discovered at the query name.
+              </p>
+<p>
+                If a delegation only zone server also serves a child
+                zone it is not always possible to determine whether
+                a answer comes from the delegation only zone or the
+                child zone.  SOA NS and DNSKEY records are apex
+                only records and a matching response that contains
+                these records or DS is treated as coming from a
+                child zone.  RRSIG records are also examined to see
+                if they are signed by a child zone or not.  The
+                authority section is also examined to see if there
+                is evidence that the answer is from the child zone.
+                Answers that are determined to be from a child zone
+                are not converted to NXDOMAIN responses.  Despite
+                all these checks there is still a possibility of
+                false negatives when a child zone is being served.
+              </p>
+<p>
+                Similarly false positives can arise from empty nodes
+                (no records at the name) in the delegation only zone
+                when the query type is not ANY.
+              </p>
+<p>
+                Note some TLDs are not delegation only (e.g. "DE", "LV",
+                "US" and "MUSEUM").  This list is not exhaustive.
               </p>
 <pre class="programlisting">
 options {
@@ -3151,7 +3181,7 @@ options {
 </div>
 <div class="sect3" lang="en">
 <div class="titlepage"><div><div><h4 class="title">
-<a name="id2581667"></a>Forwarding</h4></div></div></div>
+<a name="id2581747"></a>Forwarding</h4></div></div></div>
 <p>
             The forwarding facility can be used to create a large site-wide
             cache on a few servers, reducing traffic over links to external
@@ -3195,7 +3225,7 @@ options {
 </div>
 <div class="sect3" lang="en">
 <div class="titlepage"><div><div><h4 class="title">
-<a name="id2581725"></a>Dual-stack Servers</h4></div></div></div>
+<a name="id2581874"></a>Dual-stack Servers</h4></div></div></div>
 <p>
             Dual-stack servers are used as servers of last resort to work
             around
@@ -3392,7 +3422,7 @@ options {
 </div>
 <div class="sect3" lang="en">
 <div class="titlepage"><div><div><h4 class="title">
-<a name="id2582231"></a>Interfaces</h4></div></div></div>
+<a name="id2582379"></a>Interfaces</h4></div></div></div>
 <p>
             The interfaces and ports that the server will answer queries
             from may be specified using the <span><strong 
class="command">listen-on</strong></span> option. <span><strong 
class="command">listen-on</strong></span> takes
@@ -3844,7 +3874,7 @@ avoid-v6-udp-ports {};
 </div>
 <div class="sect3" lang="en">
 <div class="titlepage"><div><div><h4 class="title">
-<a name="id2583571"></a>UDP Port Lists</h4></div></div></div>
+<a name="id2583582"></a>UDP Port Lists</h4></div></div></div>
 <p>
             <span><strong class="command">use-v4-udp-ports</strong></span>,
             <span><strong class="command">avoid-v4-udp-ports</strong></span>,
@@ -3886,7 +3916,7 @@ avoid-v6-udp-ports { 40000; range 50000 
 </div>
 <div class="sect3" lang="en">
 <div class="titlepage"><div><div><h4 class="title">
-<a name="id2583699"></a>Operating System Resource Limits</h4></div></div></div>
+<a name="id2583642"></a>Operating System Resource Limits</h4></div></div></div>
 <p>
             The server's usage of many system resources can be limited.
             Scaled values are allowed when specifying resource limits.  For
@@ -4048,7 +4078,7 @@ avoid-v6-udp-ports { 40000; range 50000 
 </div>
 <div class="sect3" lang="en">
 <div class="titlepage"><div><div><h4 class="title">
-<a name="id2583985"></a>Periodic Task Intervals</h4></div></div></div>
+<a name="id2584065"></a>Periodic Task Intervals</h4></div></div></div>
 <div class="variablelist"><dl>
 <dt><span class="term"><span><strong 
class="command">cleaning-interval</strong></span></span></dt>
 <dd><p>
@@ -5026,7 +5056,7 @@ avoid-v6-udp-ports { 40000; range 50000 
 </div>
 <div class="sect2" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id2586754"></a><span><strong 
class="command">statistics-channels</strong></span> Statement Definition and
+<a name="id2586902"></a><span><strong 
class="command">statistics-channels</strong></span> Statement Definition and
             Usage</h3></div></div></div>
 <p>
           The <span><strong 
class="command">statistics-channels</strong></span> statement
@@ -5077,7 +5107,7 @@ avoid-v6-udp-ports { 40000; range 50000 
 </div>
 <div class="sect2" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id2586908"></a><span><strong 
class="command">trusted-keys</strong></span> Statement 
Grammar</h3></div></div></div>
+<a name="id2586988"></a><span><strong 
class="command">trusted-keys</strong></span> Statement 
Grammar</h3></div></div></div>
 <pre class="programlisting"><span><strong 
class="command">trusted-keys</strong></span> {
     <em class="replaceable"><code>string</code></em> <em 
class="replaceable"><code>number</code></em> <em 
class="replaceable"><code>number</code></em> <em 
class="replaceable"><code>number</code></em> <em 
class="replaceable"><code>string</code></em> ;
     [<span class="optional"> <em class="replaceable"><code>string</code></em> 
<em class="replaceable"><code>number</code></em> <em 
class="replaceable"><code>number</code></em> <em 
class="replaceable"><code>number</code></em> <em 
class="replaceable"><code>string</code></em> ; [<span 
class="optional">...</span>]</span>]
@@ -5086,7 +5116,7 @@ avoid-v6-udp-ports { 40000; range 50000 
 </div>
 <div class="sect2" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id2586960"></a><span><strong 
class="command">trusted-keys</strong></span> Statement Definition
+<a name="id2587040"></a><span><strong 
class="command">trusted-keys</strong></span> Statement Definition
             and Usage</h3></div></div></div>
 <p>
             The <span><strong class="command">trusted-keys</strong></span> 
statement defines
@@ -5132,7 +5162,7 @@ avoid-v6-udp-ports { 40000; range 50000 
 </div>
 <div class="sect2" lang="en">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id2587042"></a><span><strong class="command">view</strong></span> 
Statement Definition and Usage</h3></div></div></div>
+<a name="id2587122"></a><span><strong class="command">view</strong></span> 
Statement Definition and Usage</h3></div></div></div>

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to