2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-02 23:55:27 +00:00

the rndc.conf port and default-port clauses are now implemented [RT #1419]

This commit is contained in:
Andreas Gustafsson
2001-06-18 22:19:02 +00:00
parent d748172fd7
commit 2aca7f657d
9 changed files with 269 additions and 247 deletions

View File

@@ -2,7 +2,7 @@
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.0//EN" <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.0//EN"
"http://www.oasis-open.org/docbook/xml/4.0/docbookx.dtd"> "http://www.oasis-open.org/docbook/xml/4.0/docbookx.dtd">
<!-- File: $Id: Bv9ARM-book.xml,v 1.140 2001/06/14 20:36:30 bwelling Exp $ --> <!-- File: $Id: Bv9ARM-book.xml,v 1.141 2001/06/18 22:18:53 gson Exp $ -->
<book> <book>
<title>BIND 9 Administrator Reference Manual</title> <title>BIND 9 Administrator Reference Manual</title>
@@ -825,33 +825,42 @@ of a server.</para>
be shared. The order of statements is not be shared. The order of statements is not
significant.</para> significant.</para>
<para>The <command>options</command> statement has two clauses: <command>default-server</command> and <command>default-key</command>. <command>default-server</command> takes a <para>The <command>options</command> statement has three clauses:
<command>default-server</command>, <command>default-key</command>,
and <command>default-port</command>.
<command>default-server</command> takes a
host name or address argument and represents the server that will host name or address argument and represents the server that will
be contacted if no <option>-s</option> be contacted if no <option>-s</option>
option is provided on the command line. <command>default-key</command> takes option is provided on the command line.
<command>default-key</command> takes
the name of key as its argument, as defined by a <command>key</command> statement. the name of key as its argument, as defined by a <command>key</command> statement.
In the future a <command>default-port</command> clause will be <command>default-port</command> specifies the port to which
added to specify the port to which <command>rndc</command> should <command>rndc</command> should connect if no
connect.</para> port is given on the command line or in a
<command>server</command> statement.</para>
<para>The <command>key</command> statement names a key with its <para>The <command>key</command> statement names a key with its
string argument. The string is required by the server to be a valid string argument. The string is required by the server to be a valid
domain name, though it need not actually be hierarchical; thus, domain name, though it need not actually be hierarchical; thus,
a string like "<userinput>rndc_key</userinput>" is a valid name. a string like "<userinput>rndc_key</userinput>" is a valid name.
The <command>key</command> statement has two clauses: <command>algorithm</command> and <command>secret</command>. The <command>key</command> statement has two clauses:
While the configuration parser will accept any string as the argument <command>algorithm</command> and <command>secret</command>.
While the configuration parser will accept any string as the argument
to algorithm, currently only the string "<userinput>hmac-md5</userinput>" to algorithm, currently only the string "<userinput>hmac-md5</userinput>"
has any meaning. The secret is a base-64 encoded string, typically has any meaning. The secret is a base-64 encoded string, typically
generated with either <command>dnssec-keygen</command> or <command>mmencode</command>.</para> generated with either <command>dnssec-keygen</command> or <command>mmencode</command>.</para>
<para>The <command>server</command> statement uses the key clause <para>The <command>server</command> statement uses the key clause
to associate a <command>key</command>-defined key with a server. to associate a <command>key</command>-defined key with a server.
The argument to the <command>server</command> statement is a The argument to the <command>server</command> statement is a
host name or address (addresses must be double quoted). The argument host name or address (addresses must be double quoted). The argument
to the key clause is the name of the key as defined by the <command>key</command> statement. to the key clause is the name of the key as defined by the <command>key</command> statement.
A <command>port</command> clause will be added to a future release The <command>port</command> clause can be used to
to specify the port to which <command>rndc</command> should connect specify the port to which <command>rndc</command> should connect
on the given server.</para> on the given server.</para>
<para>A sample minimal configuration file is as follows:</para> <para>A sample minimal configuration file is as follows:</para>
<programlisting> <programlisting>
key rndc_key { key rndc_key {
algorithm "hmac-md5"; algorithm "hmac-md5";
secret "c3Ryb25nIGVub3VnaCBmb3IgYSBtYW4gYnV0IG1hZGUgZm9yIGEgd29tYW4K"; secret "c3Ryb25nIGVub3VnaCBmb3IgYSBtYW4gYnV0IG1hZGUgZm9yIGEgd29tYW4K";
@@ -861,6 +870,7 @@ options {
default-key rndc_key; default-key rndc_key;
}; };
</programlisting> </programlisting>
<para>This file, if installed as <filename>/etc/rndc.conf</filename>, <para>This file, if installed as <filename>/etc/rndc.conf</filename>,
would allow the command:</para> would allow the command:</para>
<para><prompt>$ </prompt><userinput>rndc reload</userinput></para> <para><prompt>$ </prompt><userinput>rndc reload</userinput></para>

View File

@@ -1184,13 +1184,19 @@ CLASS="command"
>The <B >The <B
CLASS="command" CLASS="command"
>options</B >options</B
> statement has two clauses: <B > statement has three clauses:
<B
CLASS="command" CLASS="command"
>default-server</B >default-server</B
> and <B >, <B
CLASS="command" CLASS="command"
>default-key</B >default-key</B
>. <B >,
and <B
CLASS="command"
>default-port</B
>.
<B
CLASS="command" CLASS="command"
>default-server</B >default-server</B
> takes a > takes a
@@ -1199,7 +1205,8 @@ be contacted if no <TT
CLASS="option" CLASS="option"
>-s</TT >-s</TT
> >
option is provided on the command line. <B option is provided on the command line.
<B
CLASS="command" CLASS="command"
>default-key</B >default-key</B
> takes > takes
@@ -1207,15 +1214,19 @@ the name of key as its argument, as defined by a <B
CLASS="command" CLASS="command"
>key</B >key</B
> statement. > statement.
In the future a <B <B
CLASS="command" CLASS="command"
>default-port</B >default-port</B
> clause will be > specifies the port to which
added to specify the port to which <B <B
CLASS="command" CLASS="command"
>rndc</B >rndc</B
> should > should connect if no
connect.</P port is given on the command line or in a
<B
CLASS="command"
>server</B
> statement.</P
><P ><P
>The <B >The <B
CLASS="command" CLASS="command"
@@ -1232,14 +1243,15 @@ CLASS="userinput"
The <B The <B
CLASS="command" CLASS="command"
>key</B >key</B
> statement has two clauses: <B > statement has two clauses:
<B
CLASS="command" CLASS="command"
>algorithm</B >algorithm</B
> and <B > and <B
CLASS="command" CLASS="command"
>secret</B >secret</B
>. >.
While the configuration parser will accept any string as the argument While the configuration parser will accept any string as the argument
to algorithm, currently only the string "<TT to algorithm, currently only the string "<TT
CLASS="userinput" CLASS="userinput"
><B ><B
@@ -1263,7 +1275,7 @@ to associate a <B
CLASS="command" CLASS="command"
>key</B >key</B
>-defined key with a server. >-defined key with a server.
The argument to the <B The argument to the <B
CLASS="command" CLASS="command"
>server</B >server</B
> statement is a > statement is a
@@ -1272,11 +1284,11 @@ to the key clause is the name of the key as defined by the <B
CLASS="command" CLASS="command"
>key</B >key</B
> statement. > statement.
A <B The <B
CLASS="command" CLASS="command"
>port</B >port</B
> clause will be added to a future release > clause can be used to
to specify the port to which <B specify the port to which <B
CLASS="command" CLASS="command"
>rndc</B >rndc</B
> should connect > should connect
@@ -1336,7 +1348,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN648" NAME="AEN650"
>3.4.2. Signals</A >3.4.2. Signals</A
></H2 ></H2
><P ><P
@@ -1349,7 +1361,7 @@ CLASS="command"
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN652" NAME="AEN654"
></A ></A
><P ><P
></P ></P

View File

@@ -88,7 +88,7 @@ HREF="Bv9ARM.ch04.html#incremental_zone_transfers"
></DT ></DT
><DT ><DT
>4.3. <A >4.3. <A
HREF="Bv9ARM.ch04.html#AEN712" HREF="Bv9ARM.ch04.html#AEN714"
>Split DNS</A >Split DNS</A
></DT ></DT
><DT ><DT
@@ -98,12 +98,12 @@ HREF="Bv9ARM.ch04.html#tsig"
></DT ></DT
><DT ><DT
>4.5. <A >4.5. <A
HREF="Bv9ARM.ch04.html#AEN872" HREF="Bv9ARM.ch04.html#AEN874"
>TKEY</A >TKEY</A
></DT ></DT
><DT ><DT
>4.6. <A >4.6. <A
HREF="Bv9ARM.ch04.html#AEN887" HREF="Bv9ARM.ch04.html#AEN889"
>SIG(0)</A >SIG(0)</A
></DT ></DT
><DT ><DT
@@ -113,7 +113,7 @@ HREF="Bv9ARM.ch04.html#DNSSEC"
></DT ></DT
><DT ><DT
>4.8. <A >4.8. <A
HREF="Bv9ARM.ch04.html#AEN972" HREF="Bv9ARM.ch04.html#AEN974"
>IPv6 Support in <SPAN >IPv6 Support in <SPAN
CLASS="acronym" CLASS="acronym"
>BIND</SPAN >BIND</SPAN
@@ -274,7 +274,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN712" NAME="AEN714"
>4.3. Split DNS</A >4.3. Split DNS</A
></H1 ></H1
><P ><P
@@ -672,7 +672,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN803" NAME="AEN805"
>4.4.1. Generate Shared Keys for Each Pair of Hosts</A >4.4.1. Generate Shared Keys for Each Pair of Hosts</A
></H2 ></H2
><P ><P
@@ -690,7 +690,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN808" NAME="AEN810"
>4.4.1.1. Automatic Generation</A >4.4.1.1. Automatic Generation</A
></H3 ></H3
><P ><P
@@ -732,7 +732,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN819" NAME="AEN821"
>4.4.1.2. Manual Generation</A >4.4.1.2. Manual Generation</A
></H3 ></H3
><P ><P
@@ -753,7 +753,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN824" NAME="AEN826"
>4.4.2. Copying the Shared Secret to Both Machines</A >4.4.2. Copying the Shared Secret to Both Machines</A
></H2 ></H2
><P ><P
@@ -765,7 +765,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN827" NAME="AEN829"
>4.4.3. Informing the Servers of the Key's Existence</A >4.4.3. Informing the Servers of the Key's Existence</A
></H2 ></H2
><P ><P
@@ -813,7 +813,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN839" NAME="AEN841"
>4.4.4. Instructing the Server to Use the Key</A >4.4.4. Instructing the Server to Use the Key</A
></H2 ></H2
><P ><P
@@ -873,7 +873,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN855" NAME="AEN857"
>4.4.5. TSIG Key Based Access Control</A >4.4.5. TSIG Key Based Access Control</A
></H2 ></H2
><P ><P
@@ -919,7 +919,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN868" NAME="AEN870"
>4.4.6. Errors</A >4.4.6. Errors</A
></H2 ></H2
><P ><P
@@ -948,7 +948,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN872" NAME="AEN874"
>4.5. TKEY</A >4.5. TKEY</A
></H1 ></H1
><P ><P
@@ -1014,7 +1014,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN887" NAME="AEN889"
>4.6. SIG(0)</A >4.6. SIG(0)</A
></H1 ></H1
><P ><P
@@ -1086,7 +1086,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN904" NAME="AEN906"
>4.7.1. Generating Keys</A >4.7.1. Generating Keys</A
></H2 ></H2
><P ><P
@@ -1165,7 +1165,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN924" NAME="AEN926"
>4.7.2. Creating a Keyset</A >4.7.2. Creating a Keyset</A
></H2 ></H2
><P ><P
@@ -1218,7 +1218,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN936" NAME="AEN938"
>4.7.3. Signing the Child's Keyset</A >4.7.3. Signing the Child's Keyset</A
></H2 ></H2
><P ><P
@@ -1268,7 +1268,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN949" NAME="AEN951"
>4.7.4. Signing the Zone</A >4.7.4. Signing the Zone</A
></H2 ></H2
><P ><P
@@ -1330,7 +1330,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN965" NAME="AEN967"
>4.7.5. Configuring Servers</A >4.7.5. Configuring Servers</A
></H2 ></H2
><P ><P
@@ -1357,7 +1357,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN972" NAME="AEN974"
>4.8. IPv6 Support in <SPAN >4.8. IPv6 Support in <SPAN
CLASS="acronym" CLASS="acronym"
>BIND</SPAN >BIND</SPAN
@@ -1417,7 +1417,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN988" NAME="AEN990"
>4.8.1. Address Lookups Using AAAA Records</A >4.8.1. Address Lookups Using AAAA Records</A
></H2 ></H2
><P ><P
@@ -1439,7 +1439,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN993" NAME="AEN995"
>4.8.2. Address Lookups Using A6 Records</A >4.8.2. Address Lookups Using A6 Records</A
></H2 ></H2
><P ><P
@@ -1459,7 +1459,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN997" NAME="AEN999"
>4.8.2.1. A6 Chains</A >4.8.2.1. A6 Chains</A
></H3 ></H3
><P ><P
@@ -1505,7 +1505,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN1008" NAME="AEN1010"
>4.8.2.2. A6 Records for DNS Servers</A >4.8.2.2. A6 Records for DNS Servers</A
></H3 ></H3
><P ><P
@@ -1535,7 +1535,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1014" NAME="AEN1016"
>4.8.3. Address to Name Lookups Using Nibble Format</A >4.8.3. Address to Name Lookups Using Nibble Format</A
></H2 ></H2
><P ><P
@@ -1566,7 +1566,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1021" NAME="AEN1023"
>4.8.4. Address to Name Lookups Using Bitstring Format</A >4.8.4. Address to Name Lookups Using Bitstring Format</A
></H2 ></H2
><P ><P
@@ -1593,7 +1593,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1028" NAME="AEN1030"
>4.8.5. Using DNAME for Delegation of IPv6 Reverse Addresses</A >4.8.5. Using DNAME for Delegation of IPv6 Reverse Addresses</A
></H2 ></H2
><P ><P

View File

@@ -81,7 +81,7 @@ CLASS="TOC"
></DT ></DT
><DT ><DT
>5.1. <A >5.1. <A
HREF="Bv9ARM.ch05.html#AEN1048" HREF="Bv9ARM.ch05.html#AEN1050"
>The Lightweight Resolver Library</A >The Lightweight Resolver Library</A
></DT ></DT
><DT ><DT
@@ -96,7 +96,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN1048" NAME="AEN1050"
>5.1. The Lightweight Resolver Library</A >5.1. The Lightweight Resolver Library</A
></H1 ></H1
><P ><P

View File

@@ -91,7 +91,7 @@ HREF="Bv9ARM.ch06.html#Configuration_File_Grammar"
></DT ></DT
><DT ><DT
>6.3. <A >6.3. <A
HREF="Bv9ARM.ch06.html#AEN3459" HREF="Bv9ARM.ch06.html#AEN3461"
>Zone File</A >Zone File</A
></DT ></DT
></DL ></DL
@@ -145,7 +145,7 @@ file documentation:</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN1090" NAME="AEN1092"
></A ></A
><P ><P
></P ></P
@@ -740,7 +740,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN1253" NAME="AEN1255"
>6.1.1.1. Syntax</A >6.1.1.1. Syntax</A
></H3 ></H3
><PRE ><PRE
@@ -771,7 +771,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN1261" NAME="AEN1263"
>6.1.1.2. Definition and Usage</A >6.1.1.2. Definition and Usage</A
></H3 ></H3
><P ><P
@@ -882,7 +882,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1290" NAME="AEN1292"
>6.1.2. Comment Syntax</A >6.1.2. Comment Syntax</A
></H2 ></H2
><P ><P
@@ -901,7 +901,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN1295" NAME="AEN1297"
>6.1.2.1. Syntax</A >6.1.2.1. Syntax</A
></H3 ></H3
><P ><P
@@ -933,7 +933,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN1304" NAME="AEN1306"
>6.1.2.2. Definition and Usage</A >6.1.2.2. Definition and Usage</A
></H3 ></H3
><P ><P
@@ -1043,7 +1043,7 @@ CLASS="acronym"
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN1328" NAME="AEN1330"
></A ></A
><P ><P
></P ></P
@@ -1271,7 +1271,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1397" NAME="AEN1399"
>6.2.1. <B >6.2.1. <B
CLASS="command" CLASS="command"
>acl</B >acl</B
@@ -1318,7 +1318,7 @@ CLASS="command"
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN1410" NAME="AEN1412"
></A ></A
><P ><P
></P ></P
@@ -1416,7 +1416,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1439" NAME="AEN1441"
>6.2.3. <B >6.2.3. <B
CLASS="command" CLASS="command"
>controls</B >controls</B
@@ -1671,7 +1671,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1502" NAME="AEN1504"
>6.2.5. <B >6.2.5. <B
CLASS="command" CLASS="command"
>include</B >include</B
@@ -1691,7 +1691,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1507" NAME="AEN1509"
>6.2.6. <B >6.2.6. <B
CLASS="command" CLASS="command"
>include</B >include</B
@@ -1721,7 +1721,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1514" NAME="AEN1516"
>6.2.7. <B >6.2.7. <B
CLASS="command" CLASS="command"
>key</B >key</B
@@ -1755,7 +1755,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1521" NAME="AEN1523"
>6.2.8. <B >6.2.8. <B
CLASS="command" CLASS="command"
>key</B >key</B
@@ -1809,7 +1809,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1533" NAME="AEN1535"
>6.2.9. <B >6.2.9. <B
CLASS="command" CLASS="command"
>logging</B >logging</B
@@ -1969,7 +1969,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1573" NAME="AEN1575"
>6.2.10. <B >6.2.10. <B
CLASS="command" CLASS="command"
>logging</B >logging</B
@@ -2032,7 +2032,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN1589" NAME="AEN1591"
>6.2.10.1. The <B >6.2.10.1. The <B
CLASS="command" CLASS="command"
>channel</B >channel</B
@@ -2474,7 +2474,7 @@ CLASS="acronym"
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN1693" NAME="AEN1695"
></A ></A
><P ><P
></P ></P
@@ -2842,7 +2842,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1803" NAME="AEN1805"
>6.2.11. <B >6.2.11. <B
CLASS="command" CLASS="command"
>lwres</B >lwres</B
@@ -2939,7 +2939,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1827" NAME="AEN1829"
>6.2.12. <B >6.2.12. <B
CLASS="command" CLASS="command"
>lwres</B >lwres</B
@@ -3013,7 +3013,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN1846" NAME="AEN1848"
>6.2.13. <B >6.2.13. <B
CLASS="command" CLASS="command"
>options</B >options</B
@@ -3954,7 +3954,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN2060" NAME="AEN2062"
>6.2.14. <B >6.2.14. <B
CLASS="command" CLASS="command"
>options</B >options</B
@@ -4873,7 +4873,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN2340" NAME="AEN2342"
>6.2.14.2. Forwarding</A >6.2.14.2. Forwarding</A
></H3 ></H3
><P ><P
@@ -5077,7 +5077,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN2405" NAME="AEN2407"
>6.2.14.4. Interfaces</A >6.2.14.4. Interfaces</A
></H3 ></H3
><P ><P
@@ -5172,7 +5172,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN2431" NAME="AEN2433"
>6.2.14.5. Query Address</A >6.2.14.5. Query Address</A
></H3 ></H3
><P ><P
@@ -5585,7 +5585,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN2567" NAME="AEN2569"
>6.2.14.7. Operating System Resource Limits</A >6.2.14.7. Operating System Resource Limits</A
></H3 ></H3
><P ><P
@@ -5705,7 +5705,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN2604" NAME="AEN2606"
>6.2.14.8. Server Resource Limits</A >6.2.14.8. Server Resource Limits</A
></H3 ></H3
><P ><P
@@ -5789,7 +5789,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN2632" NAME="AEN2634"
>6.2.14.9. Periodic Task Intervals</A >6.2.14.9. Periodic Task Intervals</A
></H3 ></H3
><P ><P
@@ -6156,7 +6156,7 @@ CLASS="command"
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN2720" NAME="AEN2722"
></A ></A
><P ><P
></P ></P
@@ -6543,7 +6543,7 @@ number is identical to the number in the beginning line.</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN2832" NAME="AEN2834"
></A ></A
><P ><P
></P ></P
@@ -6952,7 +6952,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN2940" NAME="AEN2942"
>6.2.17. <B >6.2.17. <B
CLASS="command" CLASS="command"
>trusted-keys</B >trusted-keys</B
@@ -7027,7 +7027,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN2956" NAME="AEN2958"
>6.2.18. <B >6.2.18. <B
CLASS="command" CLASS="command"
>trusted-keys</B >trusted-keys</B
@@ -7062,7 +7062,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN2964" NAME="AEN2966"
>6.2.19. <B >6.2.19. <B
CLASS="command" CLASS="command"
>view</B >view</B
@@ -7125,7 +7125,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN2978" NAME="AEN2980"
>6.2.20. <B >6.2.20. <B
CLASS="command" CLASS="command"
>view</B >view</B
@@ -7755,7 +7755,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN3125" NAME="AEN3127"
>6.2.22. <B >6.2.22. <B
CLASS="command" CLASS="command"
>zone</B >zone</B
@@ -7766,13 +7766,13 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN3128" NAME="AEN3130"
>6.2.22.1. Zone Types</A >6.2.22.1. Zone Types</A
></H3 ></H3
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3130" NAME="AEN3132"
></A ></A
><P ><P
></P ></P
@@ -8010,7 +8010,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN3185" NAME="AEN3187"
>6.2.22.2. Class</A >6.2.22.2. Class</A
></H3 ></H3
><P ><P
@@ -8048,7 +8048,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN3195" NAME="AEN3197"
>6.2.22.3. Zone Options</A >6.2.22.3. Zone Options</A
></H3 ></H3
><P ><P
@@ -8689,7 +8689,7 @@ CLASS="varname"
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3429" NAME="AEN3431"
></A ></A
><P ><P
></P ></P
@@ -8796,7 +8796,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN3459" NAME="AEN3461"
>6.3. Zone File</A >6.3. Zone File</A
></H1 ></H1
><DIV ><DIV
@@ -8817,7 +8817,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN3464" NAME="AEN3466"
>6.3.1.1. Resource Records</A >6.3.1.1. Resource Records</A
></H3 ></H3
><P ><P
@@ -8840,7 +8840,7 @@ HREF="Bv9ARM.ch06.html#rrset_ordering"
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3470" NAME="AEN3472"
></A ></A
><P ><P
></P ></P
@@ -8951,7 +8951,7 @@ or historical (h) and no longer in general use):</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3502" NAME="AEN3504"
></A ></A
><P ><P
></P ></P
@@ -9328,7 +9328,7 @@ are currently valid in the DNS:</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3614" NAME="AEN3616"
></A ></A
><P ><P
></P ></P
@@ -9380,7 +9380,7 @@ data that describes the resource:</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3630" NAME="AEN3632"
></A ></A
><P ><P
></P ></P
@@ -9557,7 +9557,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN3678" NAME="AEN3680"
>6.3.1.2. Textual expression of RRs</A >6.3.1.2. Textual expression of RRs</A
></H3 ></H3
><P ><P
@@ -9587,7 +9587,7 @@ knowledge of the typical representation for the data.</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3685" NAME="AEN3687"
></A ></A
><P ><P
></P ></P
@@ -9796,7 +9796,7 @@ domain names.</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3751" NAME="AEN3753"
></A ></A
><P ><P
></P ></P
@@ -9887,7 +9887,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN3779" NAME="AEN3781"
>6.3.2. Discussion of MX Records</A >6.3.2. Discussion of MX Records</A
></H2 ></H2
><P ><P
@@ -9920,7 +9920,7 @@ pointed to by the CNAME.</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3785" NAME="AEN3787"
></A ></A
><P ><P
></P ></P
@@ -10216,7 +10216,7 @@ used in a zone file.</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3877" NAME="AEN3879"
></A ></A
><P ><P
></P ></P
@@ -10299,7 +10299,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN3900" NAME="AEN3902"
>6.3.4. Inverse Mapping in IPv4</A >6.3.4. Inverse Mapping in IPv4</A
></H2 ></H2
><P ><P
@@ -10323,7 +10323,7 @@ CLASS="optional"
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN3905" NAME="AEN3907"
></A ></A
><P ><P
></P ></P
@@ -10403,7 +10403,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN3927" NAME="AEN3929"
>6.3.5. Other Zone File Directives</A >6.3.5. Other Zone File Directives</A
></H2 ></H2
><P ><P
@@ -10428,7 +10428,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN3934" NAME="AEN3936"
>6.3.5.1. The <B >6.3.5.1. The <B
CLASS="command" CLASS="command"
>$ORIGIN</B >$ORIGIN</B
@@ -10498,7 +10498,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN3954" NAME="AEN3956"
>6.3.5.2. The <B >6.3.5.2. The <B
CLASS="command" CLASS="command"
>$INCLUDE</B >$INCLUDE</B
@@ -10580,7 +10580,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN3974" NAME="AEN3976"
>6.3.5.3. The <B >6.3.5.3. The <B
CLASS="command" CLASS="command"
>$TTL</B >$TTL</B
@@ -10620,7 +10620,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN3985" NAME="AEN3987"
>6.3.6. <SPAN >6.3.6. <SPAN
CLASS="acronym" CLASS="acronym"
>BIND</SPAN >BIND</SPAN
@@ -10699,7 +10699,7 @@ CLASS="literal"
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN4005" NAME="AEN4007"
></A ></A
><P ><P
></P ></P

View File

@@ -86,7 +86,7 @@ HREF="Bv9ARM.ch07.html#Access_Control_Lists"
></DT ></DT
><DT ><DT
>7.2. <A >7.2. <A
HREF="Bv9ARM.ch07.html#AEN4077" HREF="Bv9ARM.ch07.html#AEN4079"
><B ><B
CLASS="command" CLASS="command"
>chroot</B >chroot</B
@@ -188,7 +188,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN4077" NAME="AEN4079"
>7.2. <B >7.2. <B
CLASS="command" CLASS="command"
>chroot</B >chroot</B
@@ -267,7 +267,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN4100" NAME="AEN4102"
>7.2.1. The <B >7.2.1. The <B
CLASS="command" CLASS="command"
>chroot</B >chroot</B
@@ -340,7 +340,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN4118" NAME="AEN4120"
>7.2.2. Using the <B >7.2.2. Using the <B
CLASS="command" CLASS="command"
>setuid</B >setuid</B

View File

@@ -78,17 +78,17 @@ CLASS="TOC"
></DT ></DT
><DT ><DT
>8.1. <A >8.1. <A
HREF="Bv9ARM.ch08.html#AEN4139" HREF="Bv9ARM.ch08.html#AEN4141"
>Common Problems</A >Common Problems</A
></DT ></DT
><DT ><DT
>8.2. <A >8.2. <A
HREF="Bv9ARM.ch08.html#AEN4144" HREF="Bv9ARM.ch08.html#AEN4146"
>Incrementing and Changing the Serial Number</A >Incrementing and Changing the Serial Number</A
></DT ></DT
><DT ><DT
>8.3. <A >8.3. <A
HREF="Bv9ARM.ch08.html#AEN4149" HREF="Bv9ARM.ch08.html#AEN4151"
>Where Can I Get Help?</A >Where Can I Get Help?</A
></DT ></DT
></DL ></DL
@@ -98,7 +98,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN4139" NAME="AEN4141"
>8.1. Common Problems</A >8.1. Common Problems</A
></H1 ></H1
><DIV ><DIV
@@ -106,7 +106,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN4141" NAME="AEN4143"
>8.1.1. It's not working; how can I figure out what's wrong?</A >8.1.1. It's not working; how can I figure out what's wrong?</A
></H2 ></H2
><P ><P
@@ -122,7 +122,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN4144" NAME="AEN4146"
>8.2. Incrementing and Changing the Serial Number</A >8.2. Incrementing and Changing the Serial Number</A
></H1 ></H1
><P ><P
@@ -151,7 +151,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN4149" NAME="AEN4151"
>8.3. Where Can I Get Help?</A >8.3. Where Can I Get Help?</A
></H1 ></H1
><P ><P

View File

@@ -72,7 +72,7 @@ CLASS="TOC"
></DT ></DT
><DT ><DT
>A.1. <A >A.1. <A
HREF="Bv9ARM.ch09.html#AEN4165" HREF="Bv9ARM.ch09.html#AEN4167"
>Acknowledgements</A >Acknowledgements</A
></DT ></DT
><DT ><DT
@@ -85,7 +85,7 @@ CLASS="acronym"
></DT ></DT
><DT ><DT
>A.3. <A >A.3. <A
HREF="Bv9ARM.ch09.html#AEN4206" HREF="Bv9ARM.ch09.html#AEN4208"
>General <SPAN >General <SPAN
CLASS="acronym" CLASS="acronym"
>DNS</SPAN >DNS</SPAN
@@ -103,7 +103,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN4165" NAME="AEN4167"
>A.1. Acknowledgements</A >A.1. Acknowledgements</A
></H1 ></H1
><DIV ><DIV
@@ -111,7 +111,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN4167" NAME="AEN4169"
>A.1.1. A Brief History of the <SPAN >A.1.1. A Brief History of the <SPAN
CLASS="acronym" CLASS="acronym"
>DNS</SPAN >DNS</SPAN
@@ -246,7 +246,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN4197" NAME="AEN4199"
>A.2.1.1. HS = hesiod</A >A.2.1.1. HS = hesiod</A
></H3 ></H3
><P ><P
@@ -267,7 +267,7 @@ CLASS="sect3"
><H3 ><H3
CLASS="sect3" CLASS="sect3"
><A ><A
NAME="AEN4202" NAME="AEN4204"
>A.2.1.2. CH = chaos</A >A.2.1.2. CH = chaos</A
></H3 ></H3
><P ><P
@@ -285,7 +285,7 @@ CLASS="sect1"
><H1 ><H1
CLASS="sect1" CLASS="sect1"
><A ><A
NAME="AEN4206" NAME="AEN4208"
>A.3. General <SPAN >A.3. General <SPAN
CLASS="acronym" CLASS="acronym"
>DNS</SPAN >DNS</SPAN
@@ -324,7 +324,7 @@ Unicast address scheme. For more information, see RFC 2374.</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN4217" NAME="AEN4219"
></A ></A
><P ><P
></P ></P
@@ -543,7 +543,7 @@ VALIGN="MIDDLE"
<DIV <DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN4286" NAME="AEN4288"
></A ></A
><P ><P
></P ></P
@@ -726,7 +726,7 @@ unicast address consists of:</P
><DIV ><DIV
CLASS="informaltable" CLASS="informaltable"
><A ><A
NAME="AEN4341" NAME="AEN4343"
></A ></A
><P ><P
></P ></P
@@ -886,19 +886,19 @@ TARGET="_top"
</P </P
><H3 ><H3
><A ><A
NAME="AEN4385" NAME="AEN4387"
>Bibliography</A >Bibliography</A
></H3 ></H3
><H1 ><H1
CLASS="bibliodiv" CLASS="bibliodiv"
><A ><A
NAME="AEN4386" NAME="AEN4388"
>Standards</A >Standards</A
></H1 ></H1
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4388" NAME="AEN4390"
></A ></A
><P ><P
>[RFC974]&nbsp;<SPAN >[RFC974]&nbsp;<SPAN
@@ -915,7 +915,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4395" NAME="AEN4397"
></A ></A
><P ><P
>[RFC1034]&nbsp;<SPAN >[RFC1034]&nbsp;<SPAN
@@ -932,7 +932,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4402" NAME="AEN4404"
></A ></A
><P ><P
>[RFC1035]&nbsp;<SPAN >[RFC1035]&nbsp;<SPAN
@@ -956,7 +956,7 @@ NAME="proposed_standards"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4411" NAME="AEN4413"
></A ></A
><P ><P
>[RFC2181]&nbsp;<SPAN >[RFC2181]&nbsp;<SPAN
@@ -976,7 +976,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4419" NAME="AEN4421"
></A ></A
><P ><P
>[RFC2308]&nbsp;<SPAN >[RFC2308]&nbsp;<SPAN
@@ -996,7 +996,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4427" NAME="AEN4429"
></A ></A
><P ><P
>[RFC1995]&nbsp;<SPAN >[RFC1995]&nbsp;<SPAN
@@ -1016,7 +1016,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4435" NAME="AEN4437"
></A ></A
><P ><P
>[RFC1996]&nbsp;<SPAN >[RFC1996]&nbsp;<SPAN
@@ -1033,7 +1033,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4442" NAME="AEN4444"
></A ></A
><P ><P
>[RFC2136]&nbsp;<SPAN >[RFC2136]&nbsp;<SPAN
@@ -1059,7 +1059,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4459" NAME="AEN4461"
></A ></A
><P ><P
>[RFC2845]&nbsp;<SPAN >[RFC2845]&nbsp;<SPAN
@@ -1088,13 +1088,13 @@ STYLE="margin-left=0.5in"
><H1 ><H1
CLASS="bibliodiv" CLASS="bibliodiv"
><A ><A
NAME="AEN4478" NAME="AEN4480"
>Proposed Standards Still Under Development</A >Proposed Standards Still Under Development</A
></H1 ></H1
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4483" NAME="AEN4485"
></A ></A
><P ><P
>[RFC1886]&nbsp;<SPAN >[RFC1886]&nbsp;<SPAN
@@ -1117,7 +1117,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4495" NAME="AEN4497"
></A ></A
><P ><P
>[RFC2065]&nbsp;<SPAN >[RFC2065]&nbsp;<SPAN
@@ -1137,7 +1137,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4507" NAME="AEN4509"
></A ></A
><P ><P
>[RFC2137]&nbsp;<SPAN >[RFC2137]&nbsp;<SPAN
@@ -1154,7 +1154,7 @@ STYLE="margin-left=0.5in"
><H1 ><H1
CLASS="bibliodiv" CLASS="bibliodiv"
><A ><A
NAME="AEN4515" NAME="AEN4517"
>Other Important RFCs About <SPAN >Other Important RFCs About <SPAN
CLASS="acronym" CLASS="acronym"
>DNS</SPAN >DNS</SPAN
@@ -1163,7 +1163,7 @@ CLASS="acronym"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4518" NAME="AEN4520"
></A ></A
><P ><P
>[RFC1535]&nbsp;<SPAN >[RFC1535]&nbsp;<SPAN
@@ -1183,7 +1183,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4526" NAME="AEN4528"
></A ></A
><P ><P
>[RFC1536]&nbsp;<SPAN >[RFC1536]&nbsp;<SPAN
@@ -1215,7 +1215,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4547" NAME="AEN4549"
></A ></A
><P ><P
>[RFC1982]&nbsp;<SPAN >[RFC1982]&nbsp;<SPAN
@@ -1235,13 +1235,13 @@ STYLE="margin-left=0.5in"
><H1 ><H1
CLASS="bibliodiv" CLASS="bibliodiv"
><A ><A
NAME="AEN4558" NAME="AEN4560"
>Resource Record Types</A >Resource Record Types</A
></H1 ></H1
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4560" NAME="AEN4562"
></A ></A
><P ><P
>[RFC1183]&nbsp;<SPAN >[RFC1183]&nbsp;<SPAN
@@ -1270,7 +1270,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4578" NAME="AEN4580"
></A ></A
><P ><P
>[RFC1706]&nbsp;<SPAN >[RFC1706]&nbsp;<SPAN
@@ -1293,7 +1293,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4590" NAME="AEN4592"
></A ></A
><P ><P
>[RFC2168]&nbsp;<SPAN >[RFC2168]&nbsp;<SPAN
@@ -1314,7 +1314,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4601" NAME="AEN4603"
></A ></A
><P ><P
>[RFC1876]&nbsp;<SPAN >[RFC1876]&nbsp;<SPAN
@@ -1341,7 +1341,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4618" NAME="AEN4620"
></A ></A
><P ><P
>[RFC2052]&nbsp;<SPAN >[RFC2052]&nbsp;<SPAN
@@ -1365,7 +1365,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4630" NAME="AEN4632"
></A ></A
><P ><P
>[RFC2163]&nbsp;<SPAN >[RFC2163]&nbsp;<SPAN
@@ -1386,7 +1386,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4638" NAME="AEN4640"
></A ></A
><P ><P
>[RFC2230]&nbsp;<SPAN >[RFC2230]&nbsp;<SPAN
@@ -1406,7 +1406,7 @@ STYLE="margin-left=0.5in"
><H1 ><H1
CLASS="bibliodiv" CLASS="bibliodiv"
><A ><A
NAME="AEN4646" NAME="AEN4648"
><SPAN ><SPAN
CLASS="acronym" CLASS="acronym"
>DNS</SPAN >DNS</SPAN
@@ -1415,7 +1415,7 @@ CLASS="acronym"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4649" NAME="AEN4651"
></A ></A
><P ><P
>[RFC1101]&nbsp;<SPAN >[RFC1101]&nbsp;<SPAN
@@ -1435,7 +1435,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4657" NAME="AEN4659"
></A ></A
><P ><P
>[RFC1123]&nbsp;<SPAN >[RFC1123]&nbsp;<SPAN
@@ -1452,7 +1452,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4664" NAME="AEN4666"
></A ></A
><P ><P
>[RFC1591]&nbsp;<SPAN >[RFC1591]&nbsp;<SPAN
@@ -1469,7 +1469,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4671" NAME="AEN4673"
></A ></A
><P ><P
>[RFC2317]&nbsp;<SPAN >[RFC2317]&nbsp;<SPAN
@@ -1492,7 +1492,7 @@ STYLE="margin-left=0.5in"
><H1 ><H1
CLASS="bibliodiv" CLASS="bibliodiv"
><A ><A
NAME="AEN4685" NAME="AEN4687"
><SPAN ><SPAN
CLASS="acronym" CLASS="acronym"
>DNS</SPAN >DNS</SPAN
@@ -1501,7 +1501,7 @@ CLASS="acronym"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4688" NAME="AEN4690"
></A ></A
><P ><P
>[RFC1537]&nbsp;<SPAN >[RFC1537]&nbsp;<SPAN
@@ -1521,7 +1521,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4696" NAME="AEN4698"
></A ></A
><P ><P
>[RFC1912]&nbsp;<SPAN >[RFC1912]&nbsp;<SPAN
@@ -1541,7 +1541,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4704" NAME="AEN4706"
></A ></A
><P ><P
>[RFC1912]&nbsp;<SPAN >[RFC1912]&nbsp;<SPAN
@@ -1561,7 +1561,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4712" NAME="AEN4714"
></A ></A
><P ><P
>[RFC2010]&nbsp;<SPAN >[RFC2010]&nbsp;<SPAN
@@ -1581,7 +1581,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4723" NAME="AEN4725"
></A ></A
><P ><P
>[RFC2219]&nbsp;<SPAN >[RFC2219]&nbsp;<SPAN
@@ -1604,7 +1604,7 @@ STYLE="margin-left=0.5in"
><H1 ><H1
CLASS="bibliodiv" CLASS="bibliodiv"
><A ><A
NAME="AEN4735" NAME="AEN4737"
>Other <SPAN >Other <SPAN
CLASS="acronym" CLASS="acronym"
>DNS</SPAN >DNS</SPAN
@@ -1613,7 +1613,7 @@ CLASS="acronym"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4741" NAME="AEN4743"
></A ></A
><P ><P
>[RFC1464]&nbsp;<SPAN >[RFC1464]&nbsp;<SPAN
@@ -1630,7 +1630,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4748" NAME="AEN4750"
></A ></A
><P ><P
>[RFC1713]&nbsp;<SPAN >[RFC1713]&nbsp;<SPAN
@@ -1650,7 +1650,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4756" NAME="AEN4758"
></A ></A
><P ><P
>[RFC1794]&nbsp;<SPAN >[RFC1794]&nbsp;<SPAN
@@ -1670,7 +1670,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4764" NAME="AEN4766"
></A ></A
><P ><P
>[RFC2240]&nbsp;<SPAN >[RFC2240]&nbsp;<SPAN
@@ -1687,7 +1687,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4771" NAME="AEN4773"
></A ></A
><P ><P
>[RFC2345]&nbsp;<SPAN >[RFC2345]&nbsp;<SPAN
@@ -1710,7 +1710,7 @@ STYLE="margin-left=0.5in"
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4785" NAME="AEN4787"
></A ></A
><P ><P
>[RFC2352]&nbsp;<SPAN >[RFC2352]&nbsp;<SPAN
@@ -1727,13 +1727,13 @@ STYLE="margin-left=0.5in"
><H1 ><H1
CLASS="bibliodiv" CLASS="bibliodiv"
><A ><A
NAME="AEN4792" NAME="AEN4794"
>Obsolete and Unimplemented Experimental RRs</A >Obsolete and Unimplemented Experimental RRs</A
></H1 ></H1
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4794" NAME="AEN4796"
></A ></A
><P ><P
>[RFC1712]&nbsp;<SPAN >[RFC1712]&nbsp;<SPAN
@@ -1784,7 +1784,7 @@ CLASS="sect2"
><H2 ><H2
CLASS="sect2" CLASS="sect2"
><A ><A
NAME="AEN4815" NAME="AEN4817"
>A.4.3. Other Documents About <SPAN >A.4.3. Other Documents About <SPAN
CLASS="acronym" CLASS="acronym"
>BIND</SPAN >BIND</SPAN
@@ -1794,13 +1794,13 @@ CLASS="acronym"
></P ></P
><H3 ><H3
><A ><A
NAME="AEN4819" NAME="AEN4821"
>Bibliography</A >Bibliography</A
></H3 ></H3
><DIV ><DIV
CLASS="biblioentry" CLASS="biblioentry"
><A ><A
NAME="AEN4820" NAME="AEN4822"
></A ></A
><P ><P
><SPAN ><SPAN

View File

@@ -193,7 +193,7 @@ HREF="Bv9ARM.ch03.html#AEN371"
></DT ></DT
><DT ><DT
>3.4.2. <A >3.4.2. <A
HREF="Bv9ARM.ch03.html#AEN648" HREF="Bv9ARM.ch03.html#AEN650"
>Signals</A >Signals</A
></DT ></DT
></DL ></DL
@@ -228,7 +228,7 @@ HREF="Bv9ARM.ch04.html#incremental_zone_transfers"
></DT ></DT
><DT ><DT
>4.3. <A >4.3. <A
HREF="Bv9ARM.ch04.html#AEN712" HREF="Bv9ARM.ch04.html#AEN714"
>Split DNS</A >Split DNS</A
></DT ></DT
><DT ><DT
@@ -240,44 +240,44 @@ HREF="Bv9ARM.ch04.html#tsig"
><DL ><DL
><DT ><DT
>4.4.1. <A >4.4.1. <A
HREF="Bv9ARM.ch04.html#AEN803" HREF="Bv9ARM.ch04.html#AEN805"
>Generate Shared Keys for Each Pair of Hosts</A >Generate Shared Keys for Each Pair of Hosts</A
></DT ></DT
><DT ><DT
>4.4.2. <A >4.4.2. <A
HREF="Bv9ARM.ch04.html#AEN824" HREF="Bv9ARM.ch04.html#AEN826"
>Copying the Shared Secret to Both Machines</A >Copying the Shared Secret to Both Machines</A
></DT ></DT
><DT ><DT
>4.4.3. <A >4.4.3. <A
HREF="Bv9ARM.ch04.html#AEN827" HREF="Bv9ARM.ch04.html#AEN829"
>Informing the Servers of the Key's Existence</A >Informing the Servers of the Key's Existence</A
></DT ></DT
><DT ><DT
>4.4.4. <A >4.4.4. <A
HREF="Bv9ARM.ch04.html#AEN839" HREF="Bv9ARM.ch04.html#AEN841"
>Instructing the Server to Use the Key</A >Instructing the Server to Use the Key</A
></DT ></DT
><DT ><DT
>4.4.5. <A >4.4.5. <A
HREF="Bv9ARM.ch04.html#AEN855" HREF="Bv9ARM.ch04.html#AEN857"
>TSIG Key Based Access Control</A >TSIG Key Based Access Control</A
></DT ></DT
><DT ><DT
>4.4.6. <A >4.4.6. <A
HREF="Bv9ARM.ch04.html#AEN868" HREF="Bv9ARM.ch04.html#AEN870"
>Errors</A >Errors</A
></DT ></DT
></DL ></DL
></DD ></DD
><DT ><DT
>4.5. <A >4.5. <A
HREF="Bv9ARM.ch04.html#AEN872" HREF="Bv9ARM.ch04.html#AEN874"
>TKEY</A >TKEY</A
></DT ></DT
><DT ><DT
>4.6. <A >4.6. <A
HREF="Bv9ARM.ch04.html#AEN887" HREF="Bv9ARM.ch04.html#AEN889"
>SIG(0)</A >SIG(0)</A
></DT ></DT
><DT ><DT
@@ -289,34 +289,34 @@ HREF="Bv9ARM.ch04.html#DNSSEC"
><DL ><DL
><DT ><DT
>4.7.1. <A >4.7.1. <A
HREF="Bv9ARM.ch04.html#AEN904" HREF="Bv9ARM.ch04.html#AEN906"
>Generating Keys</A >Generating Keys</A
></DT ></DT
><DT ><DT
>4.7.2. <A >4.7.2. <A
HREF="Bv9ARM.ch04.html#AEN924" HREF="Bv9ARM.ch04.html#AEN926"
>Creating a Keyset</A >Creating a Keyset</A
></DT ></DT
><DT ><DT
>4.7.3. <A >4.7.3. <A
HREF="Bv9ARM.ch04.html#AEN936" HREF="Bv9ARM.ch04.html#AEN938"
>Signing the Child's Keyset</A >Signing the Child's Keyset</A
></DT ></DT
><DT ><DT
>4.7.4. <A >4.7.4. <A
HREF="Bv9ARM.ch04.html#AEN949" HREF="Bv9ARM.ch04.html#AEN951"
>Signing the Zone</A >Signing the Zone</A
></DT ></DT
><DT ><DT
>4.7.5. <A >4.7.5. <A
HREF="Bv9ARM.ch04.html#AEN965" HREF="Bv9ARM.ch04.html#AEN967"
>Configuring Servers</A >Configuring Servers</A
></DT ></DT
></DL ></DL
></DD ></DD
><DT ><DT
>4.8. <A >4.8. <A
HREF="Bv9ARM.ch04.html#AEN972" HREF="Bv9ARM.ch04.html#AEN974"
>IPv6 Support in <SPAN >IPv6 Support in <SPAN
CLASS="acronym" CLASS="acronym"
>BIND</SPAN >BIND</SPAN
@@ -326,27 +326,27 @@ CLASS="acronym"
><DL ><DL
><DT ><DT
>4.8.1. <A >4.8.1. <A
HREF="Bv9ARM.ch04.html#AEN988" HREF="Bv9ARM.ch04.html#AEN990"
>Address Lookups Using AAAA Records</A >Address Lookups Using AAAA Records</A
></DT ></DT
><DT ><DT
>4.8.2. <A >4.8.2. <A
HREF="Bv9ARM.ch04.html#AEN993" HREF="Bv9ARM.ch04.html#AEN995"
>Address Lookups Using A6 Records</A >Address Lookups Using A6 Records</A
></DT ></DT
><DT ><DT
>4.8.3. <A >4.8.3. <A
HREF="Bv9ARM.ch04.html#AEN1014" HREF="Bv9ARM.ch04.html#AEN1016"
>Address to Name Lookups Using Nibble Format</A >Address to Name Lookups Using Nibble Format</A
></DT ></DT
><DT ><DT
>4.8.4. <A >4.8.4. <A
HREF="Bv9ARM.ch04.html#AEN1021" HREF="Bv9ARM.ch04.html#AEN1023"
>Address to Name Lookups Using Bitstring Format</A >Address to Name Lookups Using Bitstring Format</A
></DT ></DT
><DT ><DT
>4.8.5. <A >4.8.5. <A
HREF="Bv9ARM.ch04.html#AEN1028" HREF="Bv9ARM.ch04.html#AEN1030"
>Using DNAME for Delegation of IPv6 Reverse Addresses</A >Using DNAME for Delegation of IPv6 Reverse Addresses</A
></DT ></DT
></DL ></DL
@@ -365,7 +365,7 @@ CLASS="acronym"
><DL ><DL
><DT ><DT
>5.1. <A >5.1. <A
HREF="Bv9ARM.ch05.html#AEN1048" HREF="Bv9ARM.ch05.html#AEN1050"
>The Lightweight Resolver Library</A >The Lightweight Resolver Library</A
></DT ></DT
><DT ><DT
@@ -399,7 +399,7 @@ HREF="Bv9ARM.ch06.html#address_match_lists"
></DT ></DT
><DT ><DT
>6.1.2. <A >6.1.2. <A
HREF="Bv9ARM.ch06.html#AEN1290" HREF="Bv9ARM.ch06.html#AEN1292"
>Comment Syntax</A >Comment Syntax</A
></DT ></DT
></DL ></DL
@@ -413,7 +413,7 @@ HREF="Bv9ARM.ch06.html#Configuration_File_Grammar"
><DL ><DL
><DT ><DT
>6.2.1. <A >6.2.1. <A
HREF="Bv9ARM.ch06.html#AEN1397" HREF="Bv9ARM.ch06.html#AEN1399"
><B ><B
CLASS="command" CLASS="command"
>acl</B >acl</B
@@ -430,7 +430,7 @@ Usage</A
></DT ></DT
><DT ><DT
>6.2.3. <A >6.2.3. <A
HREF="Bv9ARM.ch06.html#AEN1439" HREF="Bv9ARM.ch06.html#AEN1441"
><B ><B
CLASS="command" CLASS="command"
>controls</B >controls</B
@@ -447,7 +447,7 @@ Usage</A
></DT ></DT
><DT ><DT
>6.2.5. <A >6.2.5. <A
HREF="Bv9ARM.ch06.html#AEN1502" HREF="Bv9ARM.ch06.html#AEN1504"
><B ><B
CLASS="command" CLASS="command"
>include</B >include</B
@@ -455,7 +455,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>6.2.6. <A >6.2.6. <A
HREF="Bv9ARM.ch06.html#AEN1507" HREF="Bv9ARM.ch06.html#AEN1509"
><B ><B
CLASS="command" CLASS="command"
>include</B >include</B
@@ -464,7 +464,7 @@ Usage</A
></DT ></DT
><DT ><DT
>6.2.7. <A >6.2.7. <A
HREF="Bv9ARM.ch06.html#AEN1514" HREF="Bv9ARM.ch06.html#AEN1516"
><B ><B
CLASS="command" CLASS="command"
>key</B >key</B
@@ -472,7 +472,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>6.2.8. <A >6.2.8. <A
HREF="Bv9ARM.ch06.html#AEN1521" HREF="Bv9ARM.ch06.html#AEN1523"
><B ><B
CLASS="command" CLASS="command"
>key</B >key</B
@@ -480,7 +480,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>6.2.9. <A >6.2.9. <A
HREF="Bv9ARM.ch06.html#AEN1533" HREF="Bv9ARM.ch06.html#AEN1535"
><B ><B
CLASS="command" CLASS="command"
>logging</B >logging</B
@@ -488,7 +488,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>6.2.10. <A >6.2.10. <A
HREF="Bv9ARM.ch06.html#AEN1573" HREF="Bv9ARM.ch06.html#AEN1575"
><B ><B
CLASS="command" CLASS="command"
>logging</B >logging</B
@@ -496,7 +496,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>6.2.11. <A >6.2.11. <A
HREF="Bv9ARM.ch06.html#AEN1803" HREF="Bv9ARM.ch06.html#AEN1805"
><B ><B
CLASS="command" CLASS="command"
>lwres</B >lwres</B
@@ -504,7 +504,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>6.2.12. <A >6.2.12. <A
HREF="Bv9ARM.ch06.html#AEN1827" HREF="Bv9ARM.ch06.html#AEN1829"
><B ><B
CLASS="command" CLASS="command"
>lwres</B >lwres</B
@@ -512,7 +512,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>6.2.13. <A >6.2.13. <A
HREF="Bv9ARM.ch06.html#AEN1846" HREF="Bv9ARM.ch06.html#AEN1848"
><B ><B
CLASS="command" CLASS="command"
>options</B >options</B
@@ -520,7 +520,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>6.2.14. <A >6.2.14. <A
HREF="Bv9ARM.ch06.html#AEN2060" HREF="Bv9ARM.ch06.html#AEN2062"
><B ><B
CLASS="command" CLASS="command"
>options</B >options</B
@@ -545,7 +545,7 @@ and Usage</A
></DT ></DT
><DT ><DT
>6.2.17. <A >6.2.17. <A
HREF="Bv9ARM.ch06.html#AEN2940" HREF="Bv9ARM.ch06.html#AEN2942"
><B ><B
CLASS="command" CLASS="command"
>trusted-keys</B >trusted-keys</B
@@ -553,7 +553,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>6.2.18. <A >6.2.18. <A
HREF="Bv9ARM.ch06.html#AEN2956" HREF="Bv9ARM.ch06.html#AEN2958"
><B ><B
CLASS="command" CLASS="command"
>trusted-keys</B >trusted-keys</B
@@ -562,7 +562,7 @@ and Usage</A
></DT ></DT
><DT ><DT
>6.2.19. <A >6.2.19. <A
HREF="Bv9ARM.ch06.html#AEN2964" HREF="Bv9ARM.ch06.html#AEN2966"
><B ><B
CLASS="command" CLASS="command"
>view</B >view</B
@@ -570,7 +570,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>6.2.20. <A >6.2.20. <A
HREF="Bv9ARM.ch06.html#AEN2978" HREF="Bv9ARM.ch06.html#AEN2980"
><B ><B
CLASS="command" CLASS="command"
>view</B >view</B
@@ -587,7 +587,7 @@ Statement Grammar</A
></DT ></DT
><DT ><DT
>6.2.22. <A >6.2.22. <A
HREF="Bv9ARM.ch06.html#AEN3125" HREF="Bv9ARM.ch06.html#AEN3127"
><B ><B
CLASS="command" CLASS="command"
>zone</B >zone</B
@@ -597,7 +597,7 @@ CLASS="command"
></DD ></DD
><DT ><DT
>6.3. <A >6.3. <A
HREF="Bv9ARM.ch06.html#AEN3459" HREF="Bv9ARM.ch06.html#AEN3461"
>Zone File</A >Zone File</A
></DT ></DT
><DD ><DD
@@ -609,7 +609,7 @@ HREF="Bv9ARM.ch06.html#types_of_resource_records_and_when_to_use_them"
></DT ></DT
><DT ><DT
>6.3.2. <A >6.3.2. <A
HREF="Bv9ARM.ch06.html#AEN3779" HREF="Bv9ARM.ch06.html#AEN3781"
>Discussion of MX Records</A >Discussion of MX Records</A
></DT ></DT
><DT ><DT
@@ -619,17 +619,17 @@ HREF="Bv9ARM.ch06.html#Setting_TTLs"
></DT ></DT
><DT ><DT
>6.3.4. <A >6.3.4. <A
HREF="Bv9ARM.ch06.html#AEN3900" HREF="Bv9ARM.ch06.html#AEN3902"
>Inverse Mapping in IPv4</A >Inverse Mapping in IPv4</A
></DT ></DT
><DT ><DT
>6.3.5. <A >6.3.5. <A
HREF="Bv9ARM.ch06.html#AEN3927" HREF="Bv9ARM.ch06.html#AEN3929"
>Other Zone File Directives</A >Other Zone File Directives</A
></DT ></DT
><DT ><DT
>6.3.6. <A >6.3.6. <A
HREF="Bv9ARM.ch06.html#AEN3985" HREF="Bv9ARM.ch06.html#AEN3987"
><SPAN ><SPAN
CLASS="acronym" CLASS="acronym"
>BIND</SPAN >BIND</SPAN
@@ -659,7 +659,7 @@ HREF="Bv9ARM.ch07.html#Access_Control_Lists"
></DT ></DT
><DT ><DT
>7.2. <A >7.2. <A
HREF="Bv9ARM.ch07.html#AEN4077" HREF="Bv9ARM.ch07.html#AEN4079"
><B ><B
CLASS="command" CLASS="command"
>chroot</B >chroot</B
@@ -673,7 +673,7 @@ UNIX servers)</A
><DL ><DL
><DT ><DT
>7.2.1. <A >7.2.1. <A
HREF="Bv9ARM.ch07.html#AEN4100" HREF="Bv9ARM.ch07.html#AEN4102"
>The <B >The <B
CLASS="command" CLASS="command"
>chroot</B >chroot</B
@@ -681,7 +681,7 @@ CLASS="command"
></DT ></DT
><DT ><DT
>7.2.2. <A >7.2.2. <A
HREF="Bv9ARM.ch07.html#AEN4118" HREF="Bv9ARM.ch07.html#AEN4120"
>Using the <B >Using the <B
CLASS="command" CLASS="command"
>setuid</B >setuid</B
@@ -705,26 +705,26 @@ HREF="Bv9ARM.ch08.html"
><DL ><DL
><DT ><DT
>8.1. <A >8.1. <A
HREF="Bv9ARM.ch08.html#AEN4139" HREF="Bv9ARM.ch08.html#AEN4141"
>Common Problems</A >Common Problems</A
></DT ></DT
><DD ><DD
><DL ><DL
><DT ><DT
>8.1.1. <A >8.1.1. <A
HREF="Bv9ARM.ch08.html#AEN4141" HREF="Bv9ARM.ch08.html#AEN4143"
>It's not working; how can I figure out what's wrong?</A >It's not working; how can I figure out what's wrong?</A
></DT ></DT
></DL ></DL
></DD ></DD
><DT ><DT
>8.2. <A >8.2. <A
HREF="Bv9ARM.ch08.html#AEN4144" HREF="Bv9ARM.ch08.html#AEN4146"
>Incrementing and Changing the Serial Number</A >Incrementing and Changing the Serial Number</A
></DT ></DT
><DT ><DT
>8.3. <A >8.3. <A
HREF="Bv9ARM.ch08.html#AEN4149" HREF="Bv9ARM.ch08.html#AEN4151"
>Where Can I Get Help?</A >Where Can I Get Help?</A
></DT ></DT
></DL ></DL
@@ -738,14 +738,14 @@ HREF="Bv9ARM.ch09.html"
><DL ><DL
><DT ><DT
>A.1. <A >A.1. <A
HREF="Bv9ARM.ch09.html#AEN4165" HREF="Bv9ARM.ch09.html#AEN4167"
>Acknowledgements</A >Acknowledgements</A
></DT ></DT
><DD ><DD
><DL ><DL
><DT ><DT
>A.1.1. <A >A.1.1. <A
HREF="Bv9ARM.ch09.html#AEN4167" HREF="Bv9ARM.ch09.html#AEN4169"
>A Brief History of the <SPAN >A Brief History of the <SPAN
CLASS="acronym" CLASS="acronym"
>DNS</SPAN >DNS</SPAN
@@ -775,7 +775,7 @@ HREF="Bv9ARM.ch09.html#classes_of_resource_records"
></DD ></DD
><DT ><DT
>A.3. <A >A.3. <A
HREF="Bv9ARM.ch09.html#AEN4206" HREF="Bv9ARM.ch09.html#AEN4208"
>General <SPAN >General <SPAN
CLASS="acronym" CLASS="acronym"
>DNS</SPAN >DNS</SPAN
@@ -809,7 +809,7 @@ HREF="Bv9ARM.ch09.html#internet_drafts"
></DT ></DT
><DT ><DT
>A.4.3. <A >A.4.3. <A
HREF="Bv9ARM.ch09.html#AEN4815" HREF="Bv9ARM.ch09.html#AEN4817"
>Other Documents About <SPAN >Other Documents About <SPAN
CLASS="acronym" CLASS="acronym"
>BIND</SPAN >BIND</SPAN