Author: dougb
Date: Mon Jan 25 06:18:31 2010
New Revision: 202961
URL: http://svn.freebsd.org/changeset/base/202961

Log:
  Upgrade to BIND 9.6.1-P3.
  
  This version address the following vulnerabilities:
  
  BIND 9 Cache Update from Additional Section
  https://www.isc.org/advisories/CVE-2009-4022v6
  http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4022
  A nameserver with DNSSEC validation enabled may incorrectly add
  unauthenticated records to its cache that are received during the
  resolution of a recursive client query
  
  BIND 9 DNSSEC validation code could cause bogus NXDOMAIN responses
  https://www.isc.org/advisories/CVE-2010-0097
  http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0097
  There was an error in the DNSSEC NSEC/NSEC3 validation code that could
  cause bogus NXDOMAIN responses (that is, NXDOMAIN responses for records
  proven by NSEC or NSEC3 to exist) to be cached as if they had validated
  correctly
  
  These issues only affect systems with DNSSEC validation enabled.

Modified:
  head/contrib/bind9/CHANGES
  head/contrib/bind9/FAQ
  head/contrib/bind9/FAQ.xml
  head/contrib/bind9/bin/dnssec/dnssec-signzone.8
  head/contrib/bind9/bin/dnssec/dnssec-signzone.html
  head/contrib/bind9/bin/named/query.c
  head/contrib/bind9/doc/arm/Bv9ARM.pdf
  head/contrib/bind9/doc/arm/man.dnssec-signzone.html
  head/contrib/bind9/doc/arm/man.named-checkconf.html
  head/contrib/bind9/doc/arm/man.named-checkzone.html
  head/contrib/bind9/doc/arm/man.named.html
  head/contrib/bind9/doc/arm/man.nsupdate.html
  head/contrib/bind9/doc/arm/man.rndc-confgen.html
  head/contrib/bind9/doc/arm/man.rndc.conf.html
  head/contrib/bind9/doc/arm/man.rndc.html
  head/contrib/bind9/lib/dns/include/dns/db.h
  head/contrib/bind9/lib/dns/include/dns/ncache.h
  head/contrib/bind9/lib/dns/include/dns/types.h
  head/contrib/bind9/lib/dns/rbtdb.c
  head/contrib/bind9/lib/dns/resolver.c
  head/contrib/bind9/lib/dns/validator.c
  head/contrib/bind9/lib/lwres/man/lwres.html
  head/contrib/bind9/lib/lwres/man/lwres_buffer.html
  head/contrib/bind9/lib/lwres/man/lwres_config.html
  head/contrib/bind9/lib/lwres/man/lwres_context.html
  head/contrib/bind9/lib/lwres/man/lwres_gabn.html
  head/contrib/bind9/lib/lwres/man/lwres_gai_strerror.html
  head/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.html
  head/contrib/bind9/lib/lwres/man/lwres_gethostent.html
  head/contrib/bind9/lib/lwres/man/lwres_getipnode.html
  head/contrib/bind9/lib/lwres/man/lwres_getnameinfo.html
  head/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.html
  head/contrib/bind9/lib/lwres/man/lwres_gnba.html
  head/contrib/bind9/lib/lwres/man/lwres_hstrerror.html
  head/contrib/bind9/lib/lwres/man/lwres_inetntop.html
  head/contrib/bind9/lib/lwres/man/lwres_noop.html
  head/contrib/bind9/lib/lwres/man/lwres_packet.html
  head/contrib/bind9/lib/lwres/man/lwres_resutil.html
  head/contrib/bind9/version
Directory Properties:
  head/contrib/bind9/   (props changed)

Modified: head/contrib/bind9/CHANGES
==============================================================================
--- head/contrib/bind9/CHANGES  Mon Jan 25 04:42:54 2010        (r202960)
+++ head/contrib/bind9/CHANGES  Mon Jan 25 06:18:31 2010        (r202961)
@@ -1,3 +1,15 @@
+       --- 9.6.1-P3 released ---
+
+2831.  [security]      Do not attempt to validate or cache
+                       out-of-bailiwick data returned with a secure
+                       answer; it must be re-fetched from its original
+                       source and validated in that context. [RT #20819]
+
+2828.  [security]      Cached CNAME or DNAME RR could be returned to clients
+                       without DNSSEC validation. [RT #20737]
+
+2827.  [security]      Bogus NXDOMAIN could be cached as if valid. [RT #20712]
+
        --- 9.6.1-P2 released ---
 
 2772.  [security]      When validating, track whether pending data was from

Modified: head/contrib/bind9/FAQ
==============================================================================
--- head/contrib/bind9/FAQ      Mon Jan 25 04:42:54 2010        (r202960)
+++ head/contrib/bind9/FAQ      Mon Jan 25 06:18:31 2010        (r202961)
@@ -153,24 +153,29 @@ A: BIND 9.3 and later: Use TSIG to selec
 
    Master 10.0.1.1:
            key "external" {
-                   algorithm hmac-md5;
-                   secret "xxxxxxxx";
+                   algorithm hmac-sha256;
+                   secret "xxxxxxxxxxxxxxxxxxxxxxxx";
            };
            view "internal" {
-                   match-clients { !key external; 10.0.1/24; };
+                   match-clients { !key external; // reject message ment for 
the
+                                                  // external view.
+                                   10.0.1/24; };  // accept from these 
addresses.
                    ...
            };
            view "external" {
                    match-clients { key external; any; };
-                   server 10.0.1.2 { keys external; };
+                   server 10.0.1.2 { keys external; };  // tag messages from 
the
+                                                        // external view to the
+                                                        // other servers for 
the
+                                                        // view.
                    recursion no;
                    ...
            };
 
    Slave 10.0.1.2:
            key "external" {
-                   algorithm hmac-md5;
-                   secret "xxxxxxxx";
+                   algorithm hmac-sha256;
+                   secret "xxxxxxxxxxxxxxxxxxxxxxxx";
            };
            view "internal" {
                    match-clients { !key external; 10.0.1/24; };
@@ -220,13 +225,13 @@ A: You choose one view to be master and 
 
    Master 10.0.1.1:
            key "external" {
-                   algorithm hmac-md5;
-                   secret "xxxxxxxx";
+                   algorithm hmac-sha256;
+                   secret "xxxxxxxxxxxxxxxxxxxxxxxx";
            };
 
            key "mykey" {
-                   algorithm hmac-md5;
-                   secret "yyyyyyyy";
+                   algorithm hmac-sha256;
+                   secret "yyyyyyyyyyyyyyyyyyyyyyyy";
            };
 
            view "internal" {
@@ -239,7 +244,7 @@ A: You choose one view to be master and 
                            type master;
                            file "internal/example.db";
                            allow-update { key mykey; };
-                           notify-also { 10.0.1.1; };
+                           also-notify { 10.0.1.1; };
                    };
            };
 
@@ -249,7 +254,7 @@ A: You choose one view to be master and 
                            type slave;
                            file "external/example.db";
                            masters { 10.0.1.1; };
-                           transfer-source { 10.0.1.1; };
+                           transfer-source 10.0.1.1;
                            // allow-update-forwarding { any; };
                            // allow-notify { ... };
                    };

Modified: head/contrib/bind9/FAQ.xml
==============================================================================
--- head/contrib/bind9/FAQ.xml  Mon Jan 25 04:42:54 2010        (r202960)
+++ head/contrib/bind9/FAQ.xml  Mon Jan 25 06:18:31 2010        (r202961)
@@ -17,7 +17,7 @@
  - PERFORMANCE OF THIS SOFTWARE.
 -->
 
-<!-- $Id: FAQ.xml,v 1.46.56.4 2009/02/19 01:51:58 tbox Exp $ -->
+<!-- $Id: FAQ.xml,v 1.46.56.4.12.1 2009/12/31 23:17:56 tbox Exp $ -->
 
 <article class="faq">
   <title>Frequently Asked Questions about BIND 9</title>
@@ -319,24 +319,29 @@ Slave: 10.0.1.3 (internal), 10.0.1.4 (ex
          <programlisting>
 Master 10.0.1.1:
        key "external" {
-               algorithm hmac-md5;
-               secret "xxxxxxxx";
+               algorithm hmac-sha256;
+               secret "xxxxxxxxxxxxxxxxxxxxxxxx";
        };
        view "internal" {
-               match-clients { !key external; 10.0.1/24; };
+               match-clients { !key external; // reject message ment for the
+                                              // external view.
+                               10.0.1/24; };  // accept from these addresses.
                ...
        };
        view "external" {
                match-clients { key external; any; };
-               server 10.0.1.2 { keys external; };
+               server 10.0.1.2 { keys external; };  // tag messages from the
+                                                    // external view to the
+                                                    // other servers for the
+                                                    // view.
                recursion no;
                ...
        };
 
 Slave 10.0.1.2:
        key "external" {
-               algorithm hmac-md5;
-               secret "xxxxxxxx";
+               algorithm hmac-sha256;
+               secret "xxxxxxxxxxxxxxxxxxxxxxxx";
        };
        view "internal" {
                match-clients { !key external; 10.0.1/24; };
@@ -424,13 +429,13 @@ named-checkzone example.com tmp</program
          <programlisting>
 Master 10.0.1.1:
        key "external" {
-               algorithm hmac-md5;
-               secret "xxxxxxxx";
+               algorithm hmac-sha256;
+               secret "xxxxxxxxxxxxxxxxxxxxxxxx";
        };
 
        key "mykey" {
-               algorithm hmac-md5;
-               secret "yyyyyyyy";
+               algorithm hmac-sha256;
+               secret "yyyyyyyyyyyyyyyyyyyyyyyy";
        };
 
        view "internal" {
@@ -443,7 +448,7 @@ Master 10.0.1.1:
                        type master;
                        file "internal/example.db";
                        allow-update { key mykey; };
-                       notify-also { 10.0.1.1; };
+                       also-notify { 10.0.1.1; };
                };
        };
 
@@ -453,7 +458,7 @@ Master 10.0.1.1:
                        type slave;
                        file "external/example.db";
                        masters { 10.0.1.1; };
-                       transfer-source { 10.0.1.1; };
+                       transfer-source 10.0.1.1;
                        // allow-update-forwarding { any; };
                        // allow-notify { ... };
                };

Modified: head/contrib/bind9/bin/dnssec/dnssec-signzone.8
==============================================================================
--- head/contrib/bind9/bin/dnssec/dnssec-signzone.8     Mon Jan 25 04:42:54 
2010        (r202960)
+++ head/contrib/bind9/bin/dnssec/dnssec-signzone.8     Mon Jan 25 06:18:31 
2010        (r202961)
@@ -13,163 +13,287 @@
 .\" 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.44.4 2009/06/09 01:47:19 each Exp $
+.\" $Id: dnssec-signzone.8,v 1.47.44.4.8.1 2009/12/31 23:17:46 tbox Exp $
 .\"
 .hy 0
 .ad l
-.\"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
+.\"     Title: dnssec\-signzone
+.\"    Author: 
+.\" Generator: DocBook XSL Stylesheets v1.71.1 <http://docbook.sf.net/>
+.\"      Date: June 08, 2009
+.\"    Manual: BIND9
+.\"    Source: BIND9
+.\"
+.TH "DNSSEC\-SIGNZONE" "8" "June 08, 2009" "BIND9" "BIND9"
+.\" disable hyphenation
+.nh
+.\" disable justification (adjust text to left margin only)
+.ad l
+.SH "NAME"
+dnssec\-signzone \- DNSSEC zone signing tool
 .SH "SYNOPSIS"
 .HP 16
-\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...]
+\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...]
 .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"
-.TP
+.PP
 \-a
-Verify all generated signatures\&.
-.TP
+.RS 4
+Verify all generated signatures.
+.RE
+.PP
 \-c \fIclass\fR
-Specifies the DNS class of the zone\&.
-.TP
+.RS 4
+Specifies the DNS class of the zone.
+.RE
+.PP
 \-k \fIkey\fR
-Treat specified key as a key signing key ignoring any key flags\&. This option 
may be specified multiple times\&.
-.TP
+.RS 4
+Treat specified key as a key signing key ignoring any key flags. This option 
may be specified multiple times.
+.RE
+.PP
 \-l \fIdomain\fR
-Generate a DLV set in addition to the key (DNSKEY) and DS sets\&. The domain 
is appended to the name of the records\&.
-.TP
+.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
 \-d \fIdirectory\fR
-Look for \fIkeyset\fR files in \fBdirectory\fR as the directory
-.TP
+.RS 4
+Look for
+\fIkeyset\fR
+files in
+\fBdirectory\fR
+as the directory
+.RE
+.PP
 \-g
-Generate DS records for child zones from keyset files\&. Existing DS records 
will be removed\&.
-.TP
+.RS 4
+Generate DS records for child zones from keyset files. Existing DS records 
will be removed.
+.RE
+.PP
 \-s \fIstart\-time\fR
-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
+.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
 \-e \fIend\-time\fR
-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
+.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
 \-f \fIoutput\-file\fR
-The name of the output file containing the signed zone\&. The default is to 
append \fI\&.signed\fR to the input filename\&.
-.TP
+.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
 \-h
-Prints a short summary of the options and arguments to 
\fBdnssec\-signzone\fR\&.
-.TP
+.RS 4
+Prints a short summary of the options and arguments to
+\fBdnssec\-signzone\fR.
+.RE
+.PP
 \-i \fIinterval\fR
-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
+.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
 \-I \fIinput\-format\fR
-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
+.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
 \-j \fIjitter\fR
-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
+.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
 \-n \fIncpus\fR
-Specifies the number of threads to use\&. By default, one thread is started 
for each detected CPU\&.
-.TP
+.RS 4
+Specifies the number of threads to use. By default, one thread is started for 
each detected CPU.
+.RE
+.PP
 \-N \fIsoa\-serial\-format\fR
-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
+.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
 \fB"keep"\fR
-Do not modify the SOA serial number\&.
-.TP
+.RS 4
+Do not modify the SOA serial number.
+.RE
+.PP
 \fB"increment"\fR
-Increment the SOA serial number using RFC 1982 arithmetics\&.
-.TP
+.RS 4
+Increment the SOA serial number using RFC 1982 arithmetics.
+.RE
+.PP
 \fB"unixtime"\fR
-Set the SOA serial number to the number of seconds since epoch\&.
+.RS 4
+Set the SOA serial number to the number of seconds since epoch.
 .RE
-.IP
-.TP
+.RE
+.RE
+.PP
 \-o \fIorigin\fR
-The zone origin\&. If not specified, the name of the zone file is assumed to 
be the origin\&.
-.TP
+.RS 4
+The zone origin. If not specified, the name of the zone file is assumed to be 
the origin.
+.RE
+.PP
 \-O \fIoutput\-format\fR
-The format of the output file containing the signed zone\&. Possible formats 
are \fB"text"\fR (default) and \fB"raw"\fR\&.
-.TP
+.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
 \-p
-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
+.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
 \-r \fIrandomdev\fR
-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
+.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
 \-t
-Print statistics at completion\&.
-.TP
+.RS 4
+Print statistics at completion.
+.RE
+.PP
 \-v \fIlevel\fR
-Sets the debugging level\&.
-.TP
+.RS 4
+Sets the debugging level.
+.RE
+.PP
 \-z
-Ignore KSK flag on key when determining what to sign\&.
-.TP
+.RS 4
+Ignore KSK flag on key when determining what to sign.
+.RE
+.PP
 \-3 \fIsalt\fR
-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
+.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
 \-H \fIiterations\fR
-When generating a NSEC3 chain use this many interations\&. The default is 
100\&.
-.TP
+.RS 4
+When generating a NSEC3 chain use this many interations. The default is 100.
+.RE
+.PP
 \-A
-When generating a NSEC3 chain set the OPTOUT flag on all NSEC3 records and do 
not generate NSEC3 records for insecure delegations\&.
-.TP
+.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
 zonefile
-The file containing the zone to be signed\&.
-.TP
+.RS 4
+The file containing the zone to be signed.
+.RE
+.PP
 key
-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\&.
+.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
 .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)\&.
+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
 .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\&.
+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
 .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\&.
+\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
-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\&.
+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 
+Internet Systems Consortium
+.SH "COPYRIGHT"
+Copyright \(co 2004\-2009 Internet Systems Consortium, Inc. ("ISC")
+.br
+Copyright \(co 2000\-2003 Internet Software Consortium.
+.br

Modified: head/contrib/bind9/bin/dnssec/dnssec-signzone.html
==============================================================================
--- head/contrib/bind9/bin/dnssec/dnssec-signzone.html  Mon Jan 25 04:42:54 
2010        (r202960)
+++ head/contrib/bind9/bin/dnssec/dnssec-signzone.html  Mon Jan 25 06:18:31 
2010        (r202961)
@@ -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.44.4 2009/06/09 01:47:19 each Exp $ -->
+<!-- $Id: dnssec-signzone.html,v 1.33.44.4.8.1 2009/12/31 23:17:46 tbox 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.67.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.71.1">
 </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="id215236"></a><h2>DESCRIPTION</h2>
+<a name="id2543554"></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="id215253"></a><h2>OPTIONS</h2>
+<a name="id2543569"></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="id216044"></a><h2>EXAMPLE</h2>
+<a name="id2544407"></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,7 +287,7 @@ db.example.com.signed
 %</pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id216098"></a><h2>KNOWN BUGS</h2>
+<a name="id2544458"></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
@@ -312,14 +312,14 @@ db.example.com.signed
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id216132"></a><h2>SEE ALSO</h2>
+<a name="id2544484"></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="id216155"></a><h2>AUTHOR</h2>
+<a name="id2544645"></a><h2>AUTHOR</h2>
 <p><span class="corpauthor">Internet Systems Consortium</span>
     </p>
 </div>

Modified: head/contrib/bind9/bin/named/query.c
==============================================================================
--- head/contrib/bind9/bin/named/query.c        Mon Jan 25 04:42:54 2010        
(r202960)
+++ head/contrib/bind9/bin/named/query.c        Mon Jan 25 06:18:31 2010        
(r202961)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: query.c,v 1.313.20.7.12.1 2009/11/18 23:58:04 marka Exp $ */
+/* $Id: query.c,v 1.313.20.7.12.4 2009/12/31 22:53:03 each Exp $ */
 
 /*! \file */
 
@@ -1160,7 +1160,8 @@ query_addadditional(void *arg, dns_name_
                        goto cleanup;
        }
        result = dns_db_find(db, name, version, type,
-                            client->query.dboptions | DNS_DBFIND_GLUEOK,
+                            client->query.dboptions |
+                            DNS_DBFIND_GLUEOK | DNS_DBFIND_ADDITIONALOK,
                             client->now, &node, fname, rdataset,
                             sigrdataset);
        if (result == DNS_R_GLUE &&
@@ -1645,7 +1646,8 @@ query_addadditional2(void *arg, dns_name
                goto try_glue;
 
        result = dns_db_find(db, name, version, type,
-                            client->query.dboptions | DNS_DBFIND_GLUEOK,
+                            client->query.dboptions |
+                            DNS_DBFIND_GLUEOK | DNS_DBFIND_ADDITIONALOK,
                             client->now, &node, fname, NULL, NULL);
        if (result == ISC_R_SUCCESS)
                goto found;
@@ -3718,8 +3720,6 @@ query_find(ns_client_t *client, dns_fetc
        dns_rdataset_t *noqname;
        isc_boolean_t resuming;
        int line = -1;
-       dns_rdataset_t tmprdataset;
-       unsigned int dboptions;
 
        CTRACE("query_find");
 
@@ -3937,49 +3937,9 @@ query_find(ns_client_t *client, dns_fetc
        /*
         * Now look for an answer in the database.
         */
-       dboptions = client->query.dboptions;
-       if (sigrdataset == NULL && client->view->enablednssec) {
-               /*
-                * If the client doesn't want DNSSEC we still want to
-                * look for any data pending validation to save a remote
-                * lookup if possible.
-                */
-               dns_rdataset_init(&tmprdataset);
-               sigrdataset = &tmprdataset;
-               dboptions |= DNS_DBFIND_PENDINGOK;
-       }
- refind:
        result = dns_db_find(db, client->query.qname, version, type,
-                            dboptions, client->now, &node, fname,
-                            rdataset, sigrdataset);
-       /*
-        * If we have found pending data try to validate it.
-        * If the data does not validate as secure and we can't
-        * use the unvalidated data requery the database with
-        * pending disabled to prevent infinite looping.
-        */
-       if (result != ISC_R_SUCCESS || !DNS_TRUST_PENDING(rdataset->trust))
-               goto validation_done;
-       if (validate(client, db, fname, rdataset, sigrdataset))
-               goto validation_done;
-       if (rdataset->trust != dns_trust_pending_answer ||
-           !PENDINGOK(client->query.dboptions)) {
-               dns_rdataset_disassociate(rdataset);
-               if (sigrdataset != NULL &&
-                   dns_rdataset_isassociated(sigrdataset))
-                       dns_rdataset_disassociate(sigrdataset);
-               if (sigrdataset == &tmprdataset)
-                       sigrdataset = NULL;
-               dns_db_detachnode(db, &node);
-               dboptions &= ~DNS_DBFIND_PENDINGOK;
-               goto refind;
-       }
- validation_done:
-       if (sigrdataset == &tmprdataset) {
-               if (dns_rdataset_isassociated(sigrdataset))
-                       dns_rdataset_disassociate(sigrdataset);
-               sigrdataset = NULL;
-       }
+                            client->query.dboptions, client->now,
+                            &node, fname, rdataset, sigrdataset);
 
  resume:
        CTRACE("query_find: resume");

Modified: head/contrib/bind9/doc/arm/Bv9ARM.pdf
==============================================================================
Binary file (source and/or target). No diff available.

Modified: head/contrib/bind9/doc/arm/man.dnssec-signzone.html
==============================================================================
--- head/contrib/bind9/doc/arm/man.dnssec-signzone.html Mon Jan 25 04:42:54 
2010        (r202960)
+++ head/contrib/bind9/doc/arm/man.dnssec-signzone.html Mon Jan 25 06:18:31 
2010        (r202961)
@@ -14,12 +14,12 @@
  - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  - PERFORMANCE OF THIS SOFTWARE.
 -->
-<!-- $Id: man.dnssec-signzone.html,v 1.94.14.11 2009/06/09 02:47:43 each Exp $ 
-->
+<!-- $Id: man.dnssec-signzone.html,v 1.94.14.11.8.1 2009/12/31 23:17:55 tbox 
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.67.2">
+<meta name="generator" content="DocBook XSL Stylesheets V1.71.1">
 <link rel="start" href="Bv9ARM.html" title="BIND 9 Administrator Reference 
Manual">
 <link rel="up" href="Bv9ARM.ch10.html" title="Manual pages">
 <link rel="prev" href="man.dnssec-keygen.html" title="dnssec-keygen">
@@ -50,7 +50,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="id306704"></a><h2>DESCRIPTION</h2>
+<a name="id2607752"></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
@@ -61,7 +61,7 @@
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id306727"></a><h2>OPTIONS</h2>
+<a name="id2607771"></a><h2>OPTIONS</h2>
 <div class="variablelist"><dl>
 <dt><span class="term">-a</span></dt>
 <dd><p>
@@ -276,7 +276,7 @@
 </dl></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id307453"></a><h2>EXAMPLE</h2>
+<a name="id2659163"></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>
@@ -305,7 +305,7 @@ db.example.com.signed
 %</pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id307535"></a><h2>KNOWN BUGS</h2>
+<a name="id2659304"></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
@@ -330,14 +330,14 @@ db.example.com.signed
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id307579"></a><h2>SEE ALSO</h2>
+<a name="id2659404"></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="id307606"></a><h2>AUTHOR</h2>
+<a name="id2659429"></a><h2>AUTHOR</h2>
 <p><span class="corpauthor">Internet Systems Consortium</span>
     </p>
 </div>

Modified: head/contrib/bind9/doc/arm/man.named-checkconf.html
==============================================================================
--- head/contrib/bind9/doc/arm/man.named-checkconf.html Mon Jan 25 04:42:54 
2010        (r202960)
+++ head/contrib/bind9/doc/arm/man.named-checkconf.html Mon Jan 25 06:18:31 
2010        (r202961)
@@ -14,7 +14,7 @@
  - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  - PERFORMANCE OF THIS SOFTWARE.
 -->
-<!-- $Id: man.named-checkconf.html,v 1.92.14.8 2009/06/04 03:07:24 tbox Exp $ 
-->
+<!-- $Id: man.named-checkconf.html,v 1.92.14.8.8.1 2009/12/31 23:17:55 tbox 
Exp $ -->
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@@ -50,14 +50,14 @@
 <div class="cmdsynopsis"><p><code class="command">named-checkconf</code>  
[<code class="option">-h</code>] [<code class="option">-v</code>] [<code 
class="option">-j</code>] [<code class="option">-t <em 
class="replaceable"><code>directory</code></em></code>] {filename} [<code 
class="option">-z</code>]</p></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2608653"></a><h2>DESCRIPTION</h2>
+<a name="id2608660"></a><h2>DESCRIPTION</h2>
 <p><span><strong class="command">named-checkconf</strong></span>
       checks the syntax, but not the semantics, of a named
       configuration file.
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2608667"></a><h2>OPTIONS</h2>
+<a name="id2608674"></a><h2>OPTIONS</h2>
 <div class="variablelist"><dl>
 <dt><span class="term">-h</span></dt>
 <dd><p>
@@ -92,21 +92,21 @@
 </dl></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2608784"></a><h2>RETURN VALUES</h2>
+<a name="id2608790"></a><h2>RETURN VALUES</h2>
 <p><span><strong class="command">named-checkconf</strong></span>
       returns an exit status of 1 if
       errors were detected and 0 otherwise.
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2608797"></a><h2>SEE ALSO</h2>
+<a name="id2608804"></a><h2>SEE ALSO</h2>
 <p><span class="citerefentry"><span 
class="refentrytitle">named</span>(8)</span>,
       <span class="citerefentry"><span 
class="refentrytitle">named-checkzone</span>(8)</span>,
       <em class="citetitle">BIND 9 Administrator Reference Manual</em>.
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2608827"></a><h2>AUTHOR</h2>
+<a name="id2608834"></a><h2>AUTHOR</h2>
 <p><span class="corpauthor">Internet Systems Consortium</span>
     </p>
 </div>

Modified: head/contrib/bind9/doc/arm/man.named-checkzone.html
==============================================================================
--- head/contrib/bind9/doc/arm/man.named-checkzone.html Mon Jan 25 04:42:54 
2010        (r202960)
+++ head/contrib/bind9/doc/arm/man.named-checkzone.html Mon Jan 25 06:18:31 
2010        (r202961)
@@ -14,7 +14,7 @@
  - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  - PERFORMANCE OF THIS SOFTWARE.
 -->
-<!-- $Id: man.named-checkzone.html,v 1.98.14.8 2009/06/04 03:07:24 tbox Exp $ 
-->
+<!-- $Id: man.named-checkzone.html,v 1.98.14.8.8.1 2009/12/31 23:17:55 tbox 
Exp $ -->
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@@ -51,7 +51,7 @@
 <div class="cmdsynopsis"><p><code class="command">named-compilezone</code>  
[<code class="option">-d</code>] [<code class="option">-j</code>] [<code 
class="option">-q</code>] [<code class="option">-v</code>] [<code 
class="option">-c <em class="replaceable"><code>class</code></em></code>] 
[<code class="option">-C <em class="replaceable"><code>mode</code></em></code>] 
[<code class="option">-f <em 
class="replaceable"><code>format</code></em></code>] [<code class="option">-F 
<em class="replaceable"><code>format</code></em></code>] [<code 
class="option">-i <em class="replaceable"><code>mode</code></em></code>] [<code 
class="option">-k <em class="replaceable"><code>mode</code></em></code>] [<code 
class="option">-m <em class="replaceable"><code>mode</code></em></code>] [<code 
class="option">-n <em class="replaceable"><code>mode</code></em></code>] [<code 
class="option">-o <em class="replaceable"><code>filename</code></em></code>] 
[<code class="option">-s <em class="replaceable"><co
 de>style</code></em></code>] [<code class="option">-t <em 
class="replaceable"><code>directory</code></em></code>] [<code 
class="option">-w <em class="replaceable"><code>directory</code></em></code>] 
[<code class="option">-D</code>] [<code class="option">-W <em 
class="replaceable"><code>mode</code></em></code>] {zonename} 
{filename}</p></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2609642"></a><h2>DESCRIPTION</h2>
+<a name="id2609649"></a><h2>DESCRIPTION</h2>
 <p><span><strong class="command">named-checkzone</strong></span>
       checks the syntax and integrity of a zone file.  It performs the
       same checks as <span><strong class="command">named</strong></span> does 
when loading a
@@ -71,7 +71,7 @@
      </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2609692"></a><h2>OPTIONS</h2>
+<a name="id2659465"></a><h2>OPTIONS</h2>
 <div class="variablelist"><dl>
 <dt><span class="term">-d</span></dt>
 <dd><p>
@@ -257,14 +257,14 @@
 </dl></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2660197"></a><h2>RETURN VALUES</h2>
+<a name="id2660272"></a><h2>RETURN VALUES</h2>
 <p><span><strong class="command">named-checkzone</strong></span>
       returns an exit status of 1 if
       errors were detected and 0 otherwise.
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2660211"></a><h2>SEE ALSO</h2>
+<a name="id2660285"></a><h2>SEE ALSO</h2>
 <p><span class="citerefentry"><span 
class="refentrytitle">named</span>(8)</span>,
       <span class="citerefentry"><span 
class="refentrytitle">named-checkconf</span>(8)</span>,
       <em class="citetitle">RFC 1035</em>,
@@ -272,7 +272,7 @@
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2660244"></a><h2>AUTHOR</h2>
+<a name="id2660318"></a><h2>AUTHOR</h2>
 <p><span class="corpauthor">Internet Systems Consortium</span>
     </p>
 </div>

Modified: head/contrib/bind9/doc/arm/man.named.html
==============================================================================
--- head/contrib/bind9/doc/arm/man.named.html   Mon Jan 25 04:42:54 2010        
(r202960)
+++ head/contrib/bind9/doc/arm/man.named.html   Mon Jan 25 06:18:31 2010        
(r202961)
@@ -14,7 +14,7 @@
  - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  - PERFORMANCE OF THIS SOFTWARE.
 -->
-<!-- $Id: man.named.html,v 1.99.14.8 2009/06/04 03:07:24 tbox Exp $ -->
+<!-- $Id: man.named.html,v 1.99.14.8.8.1 2009/12/31 23:17:55 tbox Exp $ -->
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@@ -50,7 +50,7 @@
 <div class="cmdsynopsis"><p><code class="command">named</code>  [<code 
class="option">-4</code>] [<code class="option">-6</code>] [<code 
class="option">-c <em class="replaceable"><code>config-file</code></em></code>] 
[<code class="option">-d <em 
class="replaceable"><code>debug-level</code></em></code>] [<code 
class="option">-f</code>] [<code class="option">-g</code>] [<code 
class="option">-m <em class="replaceable"><code>flag</code></em></code>] [<code 
class="option">-n <em class="replaceable"><code>#cpus</code></em></code>] 
[<code class="option">-p <em class="replaceable"><code>port</code></em></code>] 
[<code class="option">-s</code>] [<code class="option">-S <em 
class="replaceable"><code>#max-socks</code></em></code>] [<code 
class="option">-t <em class="replaceable"><code>directory</code></em></code>] 
[<code class="option">-u <em class="replaceable"><code>user</code></em></code>] 
[<code class="option">-v</code>] [<code class="option">-V</code>] [<code 
class="option">-x <em
  class="replaceable"><code>cache-file</code></em></code>]</p></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2610090"></a><h2>DESCRIPTION</h2>
+<a name="id2610097"></a><h2>DESCRIPTION</h2>
 <p><span><strong class="command">named</strong></span>
       is a Domain Name System (DNS) server,
       part of the BIND 9 distribution from ISC.  For more
@@ -65,7 +65,7 @@
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2610121"></a><h2>OPTIONS</h2>
+<a name="id2610128"></a><h2>OPTIONS</h2>
 <div class="variablelist"><dl>
 <dt><span class="term">-4</span></dt>
 <dd><p>
@@ -238,7 +238,7 @@
 </dl></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2610584"></a><h2>SIGNALS</h2>
+<a name="id2612161"></a><h2>SIGNALS</h2>
 <p>
       In routine operation, signals should not be used to control
       the nameserver; <span><strong class="command">rndc</strong></span> 
should be used
@@ -259,7 +259,7 @@
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2612204"></a><h2>CONFIGURATION</h2>
+<a name="id2612211"></a><h2>CONFIGURATION</h2>
 <p>
       The <span><strong class="command">named</strong></span> configuration 
file is too complex
       to describe in detail here.  A complete description is provided
@@ -268,7 +268,7 @@
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2612292"></a><h2>FILES</h2>
+<a name="id2612298"></a><h2>FILES</h2>
 <div class="variablelist"><dl>
 <dt><span class="term"><code 
class="filename">/etc/named.conf</code></span></dt>
 <dd><p>
@@ -281,7 +281,7 @@
 </dl></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2612336"></a><h2>SEE ALSO</h2>
+<a name="id2612342"></a><h2>SEE ALSO</h2>
 <p><em class="citetitle">RFC 1033</em>,
       <em class="citetitle">RFC 1034</em>,
       <em class="citetitle">RFC 1035</em>,
@@ -294,7 +294,7 @@
     </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2612406"></a><h2>AUTHOR</h2>
+<a name="id2612412"></a><h2>AUTHOR</h2>
 <p><span class="corpauthor">Internet Systems Consortium</span>
     </p>
 </div>

Modified: head/contrib/bind9/doc/arm/man.nsupdate.html
==============================================================================
--- head/contrib/bind9/doc/arm/man.nsupdate.html        Mon Jan 25 04:42:54 
2010        (r202960)
+++ head/contrib/bind9/doc/arm/man.nsupdate.html        Mon Jan 25 06:18:31 
2010        (r202961)
@@ -14,7 +14,7 @@
  - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  - PERFORMANCE OF THIS SOFTWARE.
 -->
-<!-- $Id: man.nsupdate.html,v 1.22.14.9 2009/06/04 03:07:24 tbox Exp $ -->
+<!-- $Id: man.nsupdate.html,v 1.22.14.9.8.1 2009/12/31 23:17:55 tbox Exp $ -->
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@@ -50,7 +50,7 @@
 <div class="cmdsynopsis"><p><code class="command">nsupdate</code>  [<code 
class="option">-d</code>] [<code class="option">-D</code>] [[<code 
class="option">-g</code>] |  [<code class="option">-o</code>] |  [<code 
class="option">-y <em class="replaceable"><code>[<span 
class="optional">hmac:</span>]keyname:secret</code></em></code>] |  [<code 
class="option">-k <em class="replaceable"><code>keyfile</code></em></code>]] 
[<code class="option">-t <em 
class="replaceable"><code>timeout</code></em></code>] [<code class="option">-u 
<em class="replaceable"><code>udptimeout</code></em></code>] [<code 
class="option">-r <em class="replaceable"><code>udpretries</code></em></code>] 
[<code class="option">-R <em 
class="replaceable"><code>randomdev</code></em></code>] [<code 
class="option">-v</code>] [filename]</p></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2610840"></a><h2>DESCRIPTION</h2>

*** 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