distinguish beween OS and server resource limits;
expand treatment of the datasize and recursive-clients options
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.0//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.0/docbookx.dtd">
|
||||
|
||||
<!-- File: $Id: Bv9ARM-book.xml,v 1.130 2001/05/09 16:33:35 gson Exp $ -->
|
||||
<!-- File: $Id: Bv9ARM-book.xml,v 1.131 2001/05/09 16:58:12 gson Exp $ -->
|
||||
|
||||
<book>
|
||||
<title>BIND 9 Administrator Reference Manual</title>
|
||||
@@ -3319,15 +3319,12 @@ but applies to notify messages sent to IPv6 addresses.</para>
|
||||
</variablelist>
|
||||
|
||||
</sect3>
|
||||
<sect3>
|
||||
|
||||
<title>Resource Limits</title>
|
||||
<sect3>
|
||||
<title>Operating System Resource Limits</title>
|
||||
|
||||
<para>The server's usage of many system resources can be limited.
|
||||
Some operating systems don't support some of the limits. On such
|
||||
systems, a warning will be issued if the unsupported limit is
|
||||
used. Some operating systems don't support limiting resources.</para>
|
||||
<para>Scaled values are allowed when specifying resource limits. For
|
||||
Scaled values are allowed when specifying resource limits. For
|
||||
example, <command>1G</command> can be used instead of
|
||||
<command>1073741824</command> to specify a limit of one
|
||||
gigabyte. <command>unlimited</command> requests unlimited use, or the
|
||||
@@ -3336,6 +3333,11 @@ that was in force when the server was started. See the description of
|
||||
<command>size_spec</command> in <xref
|
||||
linkend="configuration_file_elements"/>.</para>
|
||||
|
||||
<para>The following options set operating system resource limits for
|
||||
the name server process. Some operating systems don't support some or
|
||||
any of the limits. On such systems, a warning will be issued if the
|
||||
unsupported limit is used.</para>
|
||||
|
||||
<variablelist>
|
||||
|
||||
<varlistentry><term><command>coresize</command></term>
|
||||
@@ -3345,8 +3347,20 @@ is <literal>default</literal>.</para>
|
||||
|
||||
<varlistentry><term><command>datasize</command></term>
|
||||
<listitem><para>The maximum amount of data memory the server
|
||||
may use. The default is <literal>default</literal>.</para>
|
||||
</listitem></varlistentry>
|
||||
may use. The default is <literal>default</literal>.
|
||||
This is a hard limit on server memory usage.
|
||||
If the server attempts to allocate memory in excess of this
|
||||
limit, the allocation will fail, which may in turn leave
|
||||
the server unable to perform DNS service. Therefore,
|
||||
this option is rarely useful as a way of limiting the
|
||||
amount of memory used by the server, but it can be used
|
||||
to raise an operating system data size limit that is
|
||||
too small by default. If you wish to limit the amount
|
||||
of memory used by the server, use the
|
||||
<command>max-cache-size</command> and
|
||||
<command>recursive-clients</command>
|
||||
options instead.
|
||||
</para></listitem></varlistentry>
|
||||
|
||||
<varlistentry><term><command>files</command></term>
|
||||
<listitem><para>The maximum number of files the server
|
||||
@@ -3354,25 +3368,43 @@ may have open concurrently. The default is <literal>unlimited</literal>.
|
||||
</para>
|
||||
</listitem></varlistentry>
|
||||
|
||||
<varlistentry><term><command>stacksize</command></term>
|
||||
<listitem><para>The maximum amount of stack memory the server
|
||||
may use. The default is <literal>default</literal>.</para>
|
||||
</listitem></varlistentry>
|
||||
|
||||
</variablelist>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3>
|
||||
<title>Server Resource Limits</title>
|
||||
|
||||
<para>The following options set limits on the server's
|
||||
resource consumption that are enforced internally by the
|
||||
server rather than the operating system.</para>
|
||||
|
||||
<variablelist>
|
||||
|
||||
<varlistentry><term><command>max-ixfr-log-size</command></term>
|
||||
<listitem><para>This option is obsolete; it is accepted
|
||||
and ignored for BIND 8 compatibility.</para>
|
||||
</listitem></varlistentry>
|
||||
|
||||
<varlistentry><term><command>recursive-clients</command></term>
|
||||
<listitem><para>The maximum number of simultaneous recursive
|
||||
lookups the server will perform on behalf of clients. The default
|
||||
is <literal>1000</literal>.</para>
|
||||
</listitem></varlistentry>
|
||||
|
||||
<varlistentry><term><command>stacksize</command></term>
|
||||
<listitem><para>The maximum amount of stack memory the server
|
||||
may use. The default is <literal>default</literal>.</para>
|
||||
<listitem><para>The maximum number of simultaneous recursive lookups
|
||||
the server will perform on behalf of clients. The default is
|
||||
<literal>1000</literal>. Because each recursing clients uses a fair
|
||||
bit of memory, on the order of 20 kilobytes, the value of the
|
||||
<command>recursive-clients</command> option may have to be decreased
|
||||
on hosts with limited memory.
|
||||
</para>
|
||||
</listitem></varlistentry>
|
||||
|
||||
<varlistentry><term><command>tcp-clients</command></term>
|
||||
<listitem><para>The maximum number of simultaneous client TCP
|
||||
connections that the server will accept. The default is <literal>100</literal>.</para>
|
||||
connections that the server will accept.
|
||||
The default is <literal>100</literal>.</para>
|
||||
</listitem></varlistentry>
|
||||
|
||||
<varlistentry><term><command>max-cache-size</command></term>
|
||||
|
||||
@@ -91,7 +91,7 @@ HREF="Bv9ARM.ch06.html#Configuration_File_Grammar"
|
||||
></DT
|
||||
><DT
|
||||
>6.3. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN3393"
|
||||
HREF="Bv9ARM.ch06.html#AEN3400"
|
||||
>Zone File</A
|
||||
></DT
|
||||
></DL
|
||||
@@ -4035,7 +4035,7 @@ CLASS="filename"
|
||||
server's current directory. The format of the file is described
|
||||
in <A
|
||||
HREF="Bv9ARM.ch06.html#statsfile"
|
||||
>Section 6.2.14.14</A
|
||||
>Section 6.2.14.15</A
|
||||
></P
|
||||
></DD
|
||||
><DT
|
||||
@@ -4580,7 +4580,7 @@ CLASS="command"
|
||||
>statistics-file</B
|
||||
>. See also <A
|
||||
HREF="Bv9ARM.ch06.html#statsfile"
|
||||
>Section 6.2.14.14</A
|
||||
>Section 6.2.14.15</A
|
||||
>.
|
||||
</P
|
||||
></DD
|
||||
@@ -4851,7 +4851,7 @@ CLASS="command"
|
||||
synthetic responses to IPv6 queries as described in
|
||||
<A
|
||||
HREF="Bv9ARM.ch06.html#synthesis"
|
||||
>Section 6.2.14.12</A
|
||||
>Section 6.2.14.13</A
|
||||
>.
|
||||
</P
|
||||
></DD
|
||||
@@ -5410,15 +5410,11 @@ CLASS="sect3"
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN2508"
|
||||
>6.2.14.7. Resource Limits</A
|
||||
>6.2.14.7. Operating System Resource Limits</A
|
||||
></H3
|
||||
><P
|
||||
>The server's usage of many system resources can be limited.
|
||||
Some operating systems don't support some of the limits. On such
|
||||
systems, a warning will be issued if the unsupported limit is
|
||||
used. Some operating systems don't support limiting resources.</P
|
||||
><P
|
||||
>Scaled values are allowed when specifying resource limits. For
|
||||
Scaled values are allowed when specifying resource limits. For
|
||||
example, <B
|
||||
CLASS="command"
|
||||
>1G</B
|
||||
@@ -5444,6 +5440,11 @@ HREF="Bv9ARM.ch06.html#configuration_file_elements"
|
||||
>Section 6.1</A
|
||||
>.</P
|
||||
><P
|
||||
>The following options set operating system resource limits for
|
||||
the name server process. Some operating systems don't support some or
|
||||
any of the limits. On such systems, a warning will be issued if the
|
||||
unsupported limit is used.</P
|
||||
><P
|
||||
></P
|
||||
><DIV
|
||||
CLASS="variablelist"
|
||||
@@ -5472,7 +5473,26 @@ CLASS="command"
|
||||
may use. The default is <TT
|
||||
CLASS="literal"
|
||||
>default</TT
|
||||
>.</P
|
||||
>.
|
||||
This is a hard limit on server memory usage.
|
||||
If the server attempts to allocate memory in excess of this
|
||||
limit, the allocation will fail, which may in turn leave
|
||||
the server unable to perform DNS service. Therefore,
|
||||
this option is rarely useful as a way of limiting the
|
||||
amount of memory used by the server, but it can be used
|
||||
to raise an operating system data size limit that is
|
||||
too small by default. If you wish to limit the amount
|
||||
of memory used by the server, use the
|
||||
<B
|
||||
CLASS="command"
|
||||
>max-cache-size</B
|
||||
> and
|
||||
<B
|
||||
CLASS="command"
|
||||
>recursive-clients</B
|
||||
>
|
||||
options instead.
|
||||
</P
|
||||
></DD
|
||||
><DT
|
||||
><B
|
||||
@@ -5491,6 +5511,39 @@ CLASS="literal"
|
||||
><DT
|
||||
><B
|
||||
CLASS="command"
|
||||
>stacksize</B
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>The maximum amount of stack memory the server
|
||||
may use. The default is <TT
|
||||
CLASS="literal"
|
||||
>default</TT
|
||||
>.</P
|
||||
></DD
|
||||
></DL
|
||||
></DIV
|
||||
></DIV
|
||||
><DIV
|
||||
CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN2545"
|
||||
>6.2.14.8. Server Resource Limits</A
|
||||
></H3
|
||||
><P
|
||||
>The following options set limits on the server's
|
||||
resource consumption that are enforced internally by the
|
||||
server rather than the operating system.</P
|
||||
><P
|
||||
></P
|
||||
><DIV
|
||||
CLASS="variablelist"
|
||||
><DL
|
||||
><DT
|
||||
><B
|
||||
CLASS="command"
|
||||
>max-ixfr-log-size</B
|
||||
></DT
|
||||
><DD
|
||||
@@ -5505,25 +5558,19 @@ CLASS="command"
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>The maximum number of simultaneous recursive
|
||||
lookups the server will perform on behalf of clients. The default
|
||||
is <TT
|
||||
>The maximum number of simultaneous recursive lookups
|
||||
the server will perform on behalf of clients. The default is
|
||||
<TT
|
||||
CLASS="literal"
|
||||
>1000</TT
|
||||
>.</P
|
||||
></DD
|
||||
><DT
|
||||
><B
|
||||
>. Because each recursing clients uses a fair
|
||||
bit of memory, on the order of 20 kilobytes, the value of the
|
||||
<B
|
||||
CLASS="command"
|
||||
>stacksize</B
|
||||
></DT
|
||||
><DD
|
||||
><P
|
||||
>The maximum amount of stack memory the server
|
||||
may use. The default is <TT
|
||||
CLASS="literal"
|
||||
>default</TT
|
||||
>.</P
|
||||
>recursive-clients</B
|
||||
> option may have to be decreased
|
||||
on hosts with limited memory.
|
||||
</P
|
||||
></DD
|
||||
><DT
|
||||
><B
|
||||
@@ -5533,7 +5580,8 @@ CLASS="command"
|
||||
><DD
|
||||
><P
|
||||
>The maximum number of simultaneous client TCP
|
||||
connections that the server will accept. The default is <TT
|
||||
connections that the server will accept.
|
||||
The default is <TT
|
||||
CLASS="literal"
|
||||
>100</TT
|
||||
>.</P
|
||||
@@ -5565,8 +5613,8 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN2566"
|
||||
>6.2.14.8. Periodic Task Intervals</A
|
||||
NAME="AEN2573"
|
||||
>6.2.14.9. Periodic Task Intervals</A
|
||||
></H3
|
||||
><P
|
||||
></P
|
||||
@@ -5660,7 +5708,7 @@ CLASS="sect3"
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="topology"
|
||||
>6.2.14.9. Topology</A
|
||||
>6.2.14.10. Topology</A
|
||||
></H3
|
||||
><P
|
||||
>All other things being equal, when the server chooses a nameserver
|
||||
@@ -5724,7 +5772,7 @@ CLASS="sect3"
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="the_sortlist_statement"
|
||||
>6.2.14.10. The <B
|
||||
>6.2.14.11. The <B
|
||||
CLASS="command"
|
||||
>sortlist</B
|
||||
> Statement</A
|
||||
@@ -5740,7 +5788,7 @@ CLASS="command"
|
||||
>
|
||||
statement in <A
|
||||
HREF="Bv9ARM.ch06.html#rrset_ordering"
|
||||
>Section 6.2.14.11</A
|
||||
>Section 6.2.14.12</A
|
||||
>).
|
||||
The client resolver code should rearrange the RRs as appropriate,
|
||||
that is, using any addresses on the local net in preference to other addresses.
|
||||
@@ -5763,7 +5811,7 @@ CLASS="command"
|
||||
> statement
|
||||
does (<A
|
||||
HREF="Bv9ARM.ch06.html#topology"
|
||||
>Section 6.2.14.9</A
|
||||
>Section 6.2.14.10</A
|
||||
>).
|
||||
Each top level statement in the <B
|
||||
CLASS="command"
|
||||
@@ -5853,7 +5901,7 @@ CLASS="sect3"
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="rrset_ordering"
|
||||
>6.2.14.11. RRset Ordering</A
|
||||
>6.2.14.12. RRset Ordering</A
|
||||
></H3
|
||||
><P
|
||||
>When multiple records are returned in an answer it may be
|
||||
@@ -5869,7 +5917,7 @@ CLASS="command"
|
||||
> statement,
|
||||
<A
|
||||
HREF="Bv9ARM.ch06.html#the_sortlist_statement"
|
||||
>Section 6.2.14.10</A
|
||||
>Section 6.2.14.11</A
|
||||
>.
|
||||
</P
|
||||
><P
|
||||
@@ -5932,7 +5980,7 @@ CLASS="command"
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN2654"
|
||||
NAME="AEN2661"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -6056,7 +6104,7 @@ CLASS="sect3"
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="synthesis"
|
||||
>6.2.14.12. Synthetic IPv6 responses</A
|
||||
>6.2.14.13. Synthetic IPv6 responses</A
|
||||
></H3
|
||||
><P
|
||||
>Many existing stub resolvers support IPv6 DNS lookups as defined in
|
||||
@@ -6127,7 +6175,7 @@ CLASS="sect3"
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="tuning"
|
||||
>6.2.14.13. Tuning</A
|
||||
>6.2.14.14. Tuning</A
|
||||
></H3
|
||||
><P
|
||||
></P
|
||||
@@ -6284,7 +6332,7 @@ CLASS="sect3"
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="statsfile"
|
||||
>6.2.14.14. The Statistics File</A
|
||||
>6.2.14.15. The Statistics File</A
|
||||
></H3
|
||||
><P
|
||||
>The statistics file generated by <SPAN
|
||||
@@ -6319,7 +6367,7 @@ number is identical to the number in the beginning line.</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN2766"
|
||||
NAME="AEN2773"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -6728,7 +6776,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN2874"
|
||||
NAME="AEN2881"
|
||||
>6.2.17. <B
|
||||
CLASS="command"
|
||||
>trusted-keys</B
|
||||
@@ -6803,7 +6851,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN2890"
|
||||
NAME="AEN2897"
|
||||
>6.2.18. <B
|
||||
CLASS="command"
|
||||
>trusted-keys</B
|
||||
@@ -6838,7 +6886,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN2898"
|
||||
NAME="AEN2905"
|
||||
>6.2.19. <B
|
||||
CLASS="command"
|
||||
>view</B
|
||||
@@ -6901,7 +6949,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN2912"
|
||||
NAME="AEN2919"
|
||||
>6.2.20. <B
|
||||
CLASS="command"
|
||||
>view</B
|
||||
@@ -7531,7 +7579,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN3059"
|
||||
NAME="AEN3066"
|
||||
>6.2.22. <B
|
||||
CLASS="command"
|
||||
>zone</B
|
||||
@@ -7542,13 +7590,13 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN3062"
|
||||
NAME="AEN3069"
|
||||
>6.2.22.1. Zone Types</A
|
||||
></H3
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3064"
|
||||
NAME="AEN3071"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -7786,7 +7834,7 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN3119"
|
||||
NAME="AEN3126"
|
||||
>6.2.22.2. Class</A
|
||||
></H3
|
||||
><P
|
||||
@@ -7824,7 +7872,7 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN3129"
|
||||
NAME="AEN3136"
|
||||
>6.2.22.3. Zone Options</A
|
||||
></H3
|
||||
><P
|
||||
@@ -8244,7 +8292,7 @@ CLASS="command"
|
||||
>sig-validity-interval</B
|
||||
> in <A
|
||||
HREF="Bv9ARM.ch06.html#tuning"
|
||||
>Section 6.2.14.13</A
|
||||
>Section 6.2.14.14</A
|
||||
>.</P
|
||||
></DD
|
||||
><DT
|
||||
@@ -8333,7 +8381,7 @@ CLASS="command"
|
||||
><P
|
||||
> See the description in <A
|
||||
HREF="Bv9ARM.ch06.html#tuning"
|
||||
>Section 6.2.14.13</A
|
||||
>Section 6.2.14.14</A
|
||||
>.
|
||||
</P
|
||||
></DD
|
||||
@@ -8465,7 +8513,7 @@ CLASS="varname"
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3363"
|
||||
NAME="AEN3370"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -8572,7 +8620,7 @@ CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="AEN3393"
|
||||
NAME="AEN3400"
|
||||
>6.3. Zone File</A
|
||||
></H1
|
||||
><DIV
|
||||
@@ -8593,7 +8641,7 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN3398"
|
||||
NAME="AEN3405"
|
||||
>6.3.1.1. Resource Records</A
|
||||
></H3
|
||||
><P
|
||||
@@ -8606,17 +8654,17 @@ NAME="AEN3398"
|
||||
permitted for optimization purposes, for example, to specify
|
||||
that a particular nearby server be tried first. See <A
|
||||
HREF="Bv9ARM.ch06.html#the_sortlist_statement"
|
||||
>Section 6.2.14.10</A
|
||||
>Section 6.2.14.11</A
|
||||
> and <A
|
||||
HREF="Bv9ARM.ch06.html#rrset_ordering"
|
||||
>Section 6.2.14.11</A
|
||||
>Section 6.2.14.12</A
|
||||
>.</P
|
||||
><P
|
||||
>The components of a Resource Record are:</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3404"
|
||||
NAME="AEN3411"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -8727,7 +8775,7 @@ or historical (h) and no longer in general use):</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3436"
|
||||
NAME="AEN3443"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -9104,7 +9152,7 @@ are currently valid in the DNS:</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3548"
|
||||
NAME="AEN3555"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -9156,7 +9204,7 @@ data that describes the resource:</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3564"
|
||||
NAME="AEN3571"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -9333,7 +9381,7 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN3612"
|
||||
NAME="AEN3619"
|
||||
>6.3.1.2. Textual expression of RRs</A
|
||||
></H3
|
||||
><P
|
||||
@@ -9363,7 +9411,7 @@ knowledge of the typical representation for the data.</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3619"
|
||||
NAME="AEN3626"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -9572,7 +9620,7 @@ domain names.</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3685"
|
||||
NAME="AEN3692"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -9663,7 +9711,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN3713"
|
||||
NAME="AEN3720"
|
||||
>6.3.2. Discussion of MX Records</A
|
||||
></H2
|
||||
><P
|
||||
@@ -9696,7 +9744,7 @@ pointed to by the CNAME.</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3719"
|
||||
NAME="AEN3726"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -9992,7 +10040,7 @@ used in a zone file.</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3811"
|
||||
NAME="AEN3818"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -10075,7 +10123,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN3834"
|
||||
NAME="AEN3841"
|
||||
>6.3.4. Inverse Mapping in IPv4</A
|
||||
></H2
|
||||
><P
|
||||
@@ -10099,7 +10147,7 @@ CLASS="optional"
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3839"
|
||||
NAME="AEN3846"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -10179,7 +10227,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN3861"
|
||||
NAME="AEN3868"
|
||||
>6.3.5. Other Zone File Directives</A
|
||||
></H2
|
||||
><P
|
||||
@@ -10204,7 +10252,7 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN3868"
|
||||
NAME="AEN3875"
|
||||
>6.3.5.1. The <B
|
||||
CLASS="command"
|
||||
>$ORIGIN</B
|
||||
@@ -10274,7 +10322,7 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN3888"
|
||||
NAME="AEN3895"
|
||||
>6.3.5.2. The <B
|
||||
CLASS="command"
|
||||
>$INCLUDE</B
|
||||
@@ -10356,7 +10404,7 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN3908"
|
||||
NAME="AEN3915"
|
||||
>6.3.5.3. The <B
|
||||
CLASS="command"
|
||||
>$TTL</B
|
||||
@@ -10396,7 +10444,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN3919"
|
||||
NAME="AEN3926"
|
||||
>6.3.6. <SPAN
|
||||
CLASS="acronym"
|
||||
>BIND</SPAN
|
||||
@@ -10475,7 +10523,7 @@ CLASS="literal"
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN3939"
|
||||
NAME="AEN3946"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
|
||||
@@ -86,7 +86,7 @@ HREF="Bv9ARM.ch07.html#Access_Control_Lists"
|
||||
></DT
|
||||
><DT
|
||||
>7.2. <A
|
||||
HREF="Bv9ARM.ch07.html#AEN4011"
|
||||
HREF="Bv9ARM.ch07.html#AEN4018"
|
||||
><B
|
||||
CLASS="command"
|
||||
>chroot</B
|
||||
@@ -188,7 +188,7 @@ CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="AEN4011"
|
||||
NAME="AEN4018"
|
||||
>7.2. <B
|
||||
CLASS="command"
|
||||
>chroot</B
|
||||
@@ -267,7 +267,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN4034"
|
||||
NAME="AEN4041"
|
||||
>7.2.1. The <B
|
||||
CLASS="command"
|
||||
>chroot</B
|
||||
@@ -323,7 +323,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN4049"
|
||||
NAME="AEN4056"
|
||||
>7.2.2. Using the <B
|
||||
CLASS="command"
|
||||
>setuid</B
|
||||
|
||||
@@ -78,17 +78,17 @@ CLASS="TOC"
|
||||
></DT
|
||||
><DT
|
||||
>8.1. <A
|
||||
HREF="Bv9ARM.ch08.html#AEN4070"
|
||||
HREF="Bv9ARM.ch08.html#AEN4077"
|
||||
>Common Problems</A
|
||||
></DT
|
||||
><DT
|
||||
>8.2. <A
|
||||
HREF="Bv9ARM.ch08.html#AEN4075"
|
||||
HREF="Bv9ARM.ch08.html#AEN4082"
|
||||
>Incrementing and Changing the Serial Number</A
|
||||
></DT
|
||||
><DT
|
||||
>8.3. <A
|
||||
HREF="Bv9ARM.ch08.html#AEN4080"
|
||||
HREF="Bv9ARM.ch08.html#AEN4087"
|
||||
>Where Can I Get Help?</A
|
||||
></DT
|
||||
></DL
|
||||
@@ -98,7 +98,7 @@ CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="AEN4070"
|
||||
NAME="AEN4077"
|
||||
>8.1. Common Problems</A
|
||||
></H1
|
||||
><DIV
|
||||
@@ -106,7 +106,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN4072"
|
||||
NAME="AEN4079"
|
||||
>8.1.1. It's not working; how can I figure out what's wrong?</A
|
||||
></H2
|
||||
><P
|
||||
@@ -122,7 +122,7 @@ CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="AEN4075"
|
||||
NAME="AEN4082"
|
||||
>8.2. Incrementing and Changing the Serial Number</A
|
||||
></H1
|
||||
><P
|
||||
@@ -151,7 +151,7 @@ CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="AEN4080"
|
||||
NAME="AEN4087"
|
||||
>8.3. Where Can I Get Help?</A
|
||||
></H1
|
||||
><P
|
||||
|
||||
@@ -72,7 +72,7 @@ CLASS="TOC"
|
||||
></DT
|
||||
><DT
|
||||
>A.1. <A
|
||||
HREF="Bv9ARM.ch09.html#AEN4096"
|
||||
HREF="Bv9ARM.ch09.html#AEN4103"
|
||||
>Acknowledgements</A
|
||||
></DT
|
||||
><DT
|
||||
@@ -85,7 +85,7 @@ CLASS="acronym"
|
||||
></DT
|
||||
><DT
|
||||
>A.3. <A
|
||||
HREF="Bv9ARM.ch09.html#AEN4137"
|
||||
HREF="Bv9ARM.ch09.html#AEN4144"
|
||||
>General <SPAN
|
||||
CLASS="acronym"
|
||||
>DNS</SPAN
|
||||
@@ -103,7 +103,7 @@ CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="AEN4096"
|
||||
NAME="AEN4103"
|
||||
>A.1. Acknowledgements</A
|
||||
></H1
|
||||
><DIV
|
||||
@@ -111,7 +111,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN4098"
|
||||
NAME="AEN4105"
|
||||
>A.1.1. A Brief History of the <SPAN
|
||||
CLASS="acronym"
|
||||
>DNS</SPAN
|
||||
@@ -246,7 +246,7 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN4128"
|
||||
NAME="AEN4135"
|
||||
>A.2.1.1. HS = hesiod</A
|
||||
></H3
|
||||
><P
|
||||
@@ -267,7 +267,7 @@ CLASS="sect3"
|
||||
><H3
|
||||
CLASS="sect3"
|
||||
><A
|
||||
NAME="AEN4133"
|
||||
NAME="AEN4140"
|
||||
>A.2.1.2. CH = chaos</A
|
||||
></H3
|
||||
><P
|
||||
@@ -285,7 +285,7 @@ CLASS="sect1"
|
||||
><H1
|
||||
CLASS="sect1"
|
||||
><A
|
||||
NAME="AEN4137"
|
||||
NAME="AEN4144"
|
||||
>A.3. General <SPAN
|
||||
CLASS="acronym"
|
||||
>DNS</SPAN
|
||||
@@ -324,7 +324,7 @@ Unicast address scheme. For more information, see RFC 2374.</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN4148"
|
||||
NAME="AEN4155"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -543,7 +543,7 @@ VALIGN="MIDDLE"
|
||||
<DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN4217"
|
||||
NAME="AEN4224"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -726,7 +726,7 @@ unicast address consists of:</P
|
||||
><DIV
|
||||
CLASS="informaltable"
|
||||
><A
|
||||
NAME="AEN4272"
|
||||
NAME="AEN4279"
|
||||
></A
|
||||
><P
|
||||
></P
|
||||
@@ -886,19 +886,19 @@ TARGET="_top"
|
||||
</P
|
||||
><H3
|
||||
><A
|
||||
NAME="AEN4316"
|
||||
NAME="AEN4323"
|
||||
>Bibliography</A
|
||||
></H3
|
||||
><H1
|
||||
CLASS="bibliodiv"
|
||||
><A
|
||||
NAME="AEN4317"
|
||||
NAME="AEN4324"
|
||||
>Standards</A
|
||||
></H1
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4319"
|
||||
NAME="AEN4326"
|
||||
></A
|
||||
><P
|
||||
>[RFC974] <SPAN
|
||||
@@ -915,7 +915,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4326"
|
||||
NAME="AEN4333"
|
||||
></A
|
||||
><P
|
||||
>[RFC1034] <SPAN
|
||||
@@ -932,7 +932,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4333"
|
||||
NAME="AEN4340"
|
||||
></A
|
||||
><P
|
||||
>[RFC1035] <SPAN
|
||||
@@ -956,7 +956,7 @@ NAME="proposed_standards"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4342"
|
||||
NAME="AEN4349"
|
||||
></A
|
||||
><P
|
||||
>[RFC2181] <SPAN
|
||||
@@ -976,7 +976,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4350"
|
||||
NAME="AEN4357"
|
||||
></A
|
||||
><P
|
||||
>[RFC2308] <SPAN
|
||||
@@ -996,7 +996,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4358"
|
||||
NAME="AEN4365"
|
||||
></A
|
||||
><P
|
||||
>[RFC1995] <SPAN
|
||||
@@ -1016,7 +1016,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4366"
|
||||
NAME="AEN4373"
|
||||
></A
|
||||
><P
|
||||
>[RFC1996] <SPAN
|
||||
@@ -1033,7 +1033,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4373"
|
||||
NAME="AEN4380"
|
||||
></A
|
||||
><P
|
||||
>[RFC2136] <SPAN
|
||||
@@ -1059,7 +1059,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4390"
|
||||
NAME="AEN4397"
|
||||
></A
|
||||
><P
|
||||
>[RFC2845] <SPAN
|
||||
@@ -1088,13 +1088,13 @@ STYLE="margin-left=0.5in"
|
||||
><H1
|
||||
CLASS="bibliodiv"
|
||||
><A
|
||||
NAME="AEN4409"
|
||||
NAME="AEN4416"
|
||||
>Proposed Standards Still Under Development</A
|
||||
></H1
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4414"
|
||||
NAME="AEN4421"
|
||||
></A
|
||||
><P
|
||||
>[RFC1886] <SPAN
|
||||
@@ -1117,7 +1117,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4426"
|
||||
NAME="AEN4433"
|
||||
></A
|
||||
><P
|
||||
>[RFC2065] <SPAN
|
||||
@@ -1137,7 +1137,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4438"
|
||||
NAME="AEN4445"
|
||||
></A
|
||||
><P
|
||||
>[RFC2137] <SPAN
|
||||
@@ -1154,7 +1154,7 @@ STYLE="margin-left=0.5in"
|
||||
><H1
|
||||
CLASS="bibliodiv"
|
||||
><A
|
||||
NAME="AEN4446"
|
||||
NAME="AEN4453"
|
||||
>Other Important RFCs About <SPAN
|
||||
CLASS="acronym"
|
||||
>DNS</SPAN
|
||||
@@ -1163,7 +1163,7 @@ CLASS="acronym"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4449"
|
||||
NAME="AEN4456"
|
||||
></A
|
||||
><P
|
||||
>[RFC1535] <SPAN
|
||||
@@ -1183,7 +1183,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4457"
|
||||
NAME="AEN4464"
|
||||
></A
|
||||
><P
|
||||
>[RFC1536] <SPAN
|
||||
@@ -1215,7 +1215,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4478"
|
||||
NAME="AEN4485"
|
||||
></A
|
||||
><P
|
||||
>[RFC1982] <SPAN
|
||||
@@ -1235,13 +1235,13 @@ STYLE="margin-left=0.5in"
|
||||
><H1
|
||||
CLASS="bibliodiv"
|
||||
><A
|
||||
NAME="AEN4489"
|
||||
NAME="AEN4496"
|
||||
>Resource Record Types</A
|
||||
></H1
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4491"
|
||||
NAME="AEN4498"
|
||||
></A
|
||||
><P
|
||||
>[RFC1183] <SPAN
|
||||
@@ -1270,7 +1270,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4509"
|
||||
NAME="AEN4516"
|
||||
></A
|
||||
><P
|
||||
>[RFC1706] <SPAN
|
||||
@@ -1293,7 +1293,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4521"
|
||||
NAME="AEN4528"
|
||||
></A
|
||||
><P
|
||||
>[RFC2168] <SPAN
|
||||
@@ -1314,7 +1314,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4532"
|
||||
NAME="AEN4539"
|
||||
></A
|
||||
><P
|
||||
>[RFC1876] <SPAN
|
||||
@@ -1341,7 +1341,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4549"
|
||||
NAME="AEN4556"
|
||||
></A
|
||||
><P
|
||||
>[RFC2052] <SPAN
|
||||
@@ -1365,7 +1365,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4561"
|
||||
NAME="AEN4568"
|
||||
></A
|
||||
><P
|
||||
>[RFC2163] <SPAN
|
||||
@@ -1386,7 +1386,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4569"
|
||||
NAME="AEN4576"
|
||||
></A
|
||||
><P
|
||||
>[RFC2230] <SPAN
|
||||
@@ -1406,7 +1406,7 @@ STYLE="margin-left=0.5in"
|
||||
><H1
|
||||
CLASS="bibliodiv"
|
||||
><A
|
||||
NAME="AEN4577"
|
||||
NAME="AEN4584"
|
||||
><SPAN
|
||||
CLASS="acronym"
|
||||
>DNS</SPAN
|
||||
@@ -1415,7 +1415,7 @@ CLASS="acronym"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4580"
|
||||
NAME="AEN4587"
|
||||
></A
|
||||
><P
|
||||
>[RFC1101] <SPAN
|
||||
@@ -1435,7 +1435,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4588"
|
||||
NAME="AEN4595"
|
||||
></A
|
||||
><P
|
||||
>[RFC1123] <SPAN
|
||||
@@ -1452,7 +1452,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4595"
|
||||
NAME="AEN4602"
|
||||
></A
|
||||
><P
|
||||
>[RFC1591] <SPAN
|
||||
@@ -1469,7 +1469,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4602"
|
||||
NAME="AEN4609"
|
||||
></A
|
||||
><P
|
||||
>[RFC2317] <SPAN
|
||||
@@ -1492,7 +1492,7 @@ STYLE="margin-left=0.5in"
|
||||
><H1
|
||||
CLASS="bibliodiv"
|
||||
><A
|
||||
NAME="AEN4616"
|
||||
NAME="AEN4623"
|
||||
><SPAN
|
||||
CLASS="acronym"
|
||||
>DNS</SPAN
|
||||
@@ -1501,7 +1501,7 @@ CLASS="acronym"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4619"
|
||||
NAME="AEN4626"
|
||||
></A
|
||||
><P
|
||||
>[RFC1537] <SPAN
|
||||
@@ -1521,7 +1521,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4627"
|
||||
NAME="AEN4634"
|
||||
></A
|
||||
><P
|
||||
>[RFC1912] <SPAN
|
||||
@@ -1541,7 +1541,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4635"
|
||||
NAME="AEN4642"
|
||||
></A
|
||||
><P
|
||||
>[RFC1912] <SPAN
|
||||
@@ -1561,7 +1561,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4643"
|
||||
NAME="AEN4650"
|
||||
></A
|
||||
><P
|
||||
>[RFC2010] <SPAN
|
||||
@@ -1581,7 +1581,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4654"
|
||||
NAME="AEN4661"
|
||||
></A
|
||||
><P
|
||||
>[RFC2219] <SPAN
|
||||
@@ -1604,7 +1604,7 @@ STYLE="margin-left=0.5in"
|
||||
><H1
|
||||
CLASS="bibliodiv"
|
||||
><A
|
||||
NAME="AEN4666"
|
||||
NAME="AEN4673"
|
||||
>Other <SPAN
|
||||
CLASS="acronym"
|
||||
>DNS</SPAN
|
||||
@@ -1613,7 +1613,7 @@ CLASS="acronym"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4672"
|
||||
NAME="AEN4679"
|
||||
></A
|
||||
><P
|
||||
>[RFC1464] <SPAN
|
||||
@@ -1630,7 +1630,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4679"
|
||||
NAME="AEN4686"
|
||||
></A
|
||||
><P
|
||||
>[RFC1713] <SPAN
|
||||
@@ -1650,7 +1650,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4687"
|
||||
NAME="AEN4694"
|
||||
></A
|
||||
><P
|
||||
>[RFC1794] <SPAN
|
||||
@@ -1670,7 +1670,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4695"
|
||||
NAME="AEN4702"
|
||||
></A
|
||||
><P
|
||||
>[RFC2240] <SPAN
|
||||
@@ -1687,7 +1687,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4702"
|
||||
NAME="AEN4709"
|
||||
></A
|
||||
><P
|
||||
>[RFC2345] <SPAN
|
||||
@@ -1710,7 +1710,7 @@ STYLE="margin-left=0.5in"
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4716"
|
||||
NAME="AEN4723"
|
||||
></A
|
||||
><P
|
||||
>[RFC2352] <SPAN
|
||||
@@ -1727,13 +1727,13 @@ STYLE="margin-left=0.5in"
|
||||
><H1
|
||||
CLASS="bibliodiv"
|
||||
><A
|
||||
NAME="AEN4723"
|
||||
NAME="AEN4730"
|
||||
>Obsolete and Unimplemented Experimental RRs</A
|
||||
></H1
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4725"
|
||||
NAME="AEN4732"
|
||||
></A
|
||||
><P
|
||||
>[RFC1712] <SPAN
|
||||
@@ -1784,7 +1784,7 @@ CLASS="sect2"
|
||||
><H2
|
||||
CLASS="sect2"
|
||||
><A
|
||||
NAME="AEN4746"
|
||||
NAME="AEN4753"
|
||||
>A.4.3. Other Documents About <SPAN
|
||||
CLASS="acronym"
|
||||
>BIND</SPAN
|
||||
@@ -1794,13 +1794,13 @@ CLASS="acronym"
|
||||
></P
|
||||
><H3
|
||||
><A
|
||||
NAME="AEN4750"
|
||||
NAME="AEN4757"
|
||||
>Bibliography</A
|
||||
></H3
|
||||
><DIV
|
||||
CLASS="biblioentry"
|
||||
><A
|
||||
NAME="AEN4751"
|
||||
NAME="AEN4758"
|
||||
></A
|
||||
><P
|
||||
><SPAN
|
||||
|
||||
@@ -545,7 +545,7 @@ and Usage</A
|
||||
></DT
|
||||
><DT
|
||||
>6.2.17. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN2874"
|
||||
HREF="Bv9ARM.ch06.html#AEN2881"
|
||||
><B
|
||||
CLASS="command"
|
||||
>trusted-keys</B
|
||||
@@ -553,7 +553,7 @@ CLASS="command"
|
||||
></DT
|
||||
><DT
|
||||
>6.2.18. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN2890"
|
||||
HREF="Bv9ARM.ch06.html#AEN2897"
|
||||
><B
|
||||
CLASS="command"
|
||||
>trusted-keys</B
|
||||
@@ -562,7 +562,7 @@ and Usage</A
|
||||
></DT
|
||||
><DT
|
||||
>6.2.19. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN2898"
|
||||
HREF="Bv9ARM.ch06.html#AEN2905"
|
||||
><B
|
||||
CLASS="command"
|
||||
>view</B
|
||||
@@ -570,7 +570,7 @@ CLASS="command"
|
||||
></DT
|
||||
><DT
|
||||
>6.2.20. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN2912"
|
||||
HREF="Bv9ARM.ch06.html#AEN2919"
|
||||
><B
|
||||
CLASS="command"
|
||||
>view</B
|
||||
@@ -587,7 +587,7 @@ Statement Grammar</A
|
||||
></DT
|
||||
><DT
|
||||
>6.2.22. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN3059"
|
||||
HREF="Bv9ARM.ch06.html#AEN3066"
|
||||
><B
|
||||
CLASS="command"
|
||||
>zone</B
|
||||
@@ -597,7 +597,7 @@ CLASS="command"
|
||||
></DD
|
||||
><DT
|
||||
>6.3. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN3393"
|
||||
HREF="Bv9ARM.ch06.html#AEN3400"
|
||||
>Zone File</A
|
||||
></DT
|
||||
><DD
|
||||
@@ -609,7 +609,7 @@ HREF="Bv9ARM.ch06.html#types_of_resource_records_and_when_to_use_them"
|
||||
></DT
|
||||
><DT
|
||||
>6.3.2. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN3713"
|
||||
HREF="Bv9ARM.ch06.html#AEN3720"
|
||||
>Discussion of MX Records</A
|
||||
></DT
|
||||
><DT
|
||||
@@ -619,17 +619,17 @@ HREF="Bv9ARM.ch06.html#Setting_TTLs"
|
||||
></DT
|
||||
><DT
|
||||
>6.3.4. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN3834"
|
||||
HREF="Bv9ARM.ch06.html#AEN3841"
|
||||
>Inverse Mapping in IPv4</A
|
||||
></DT
|
||||
><DT
|
||||
>6.3.5. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN3861"
|
||||
HREF="Bv9ARM.ch06.html#AEN3868"
|
||||
>Other Zone File Directives</A
|
||||
></DT
|
||||
><DT
|
||||
>6.3.6. <A
|
||||
HREF="Bv9ARM.ch06.html#AEN3919"
|
||||
HREF="Bv9ARM.ch06.html#AEN3926"
|
||||
><SPAN
|
||||
CLASS="acronym"
|
||||
>BIND</SPAN
|
||||
@@ -659,7 +659,7 @@ HREF="Bv9ARM.ch07.html#Access_Control_Lists"
|
||||
></DT
|
||||
><DT
|
||||
>7.2. <A
|
||||
HREF="Bv9ARM.ch07.html#AEN4011"
|
||||
HREF="Bv9ARM.ch07.html#AEN4018"
|
||||
><B
|
||||
CLASS="command"
|
||||
>chroot</B
|
||||
@@ -673,7 +673,7 @@ UNIX servers)</A
|
||||
><DL
|
||||
><DT
|
||||
>7.2.1. <A
|
||||
HREF="Bv9ARM.ch07.html#AEN4034"
|
||||
HREF="Bv9ARM.ch07.html#AEN4041"
|
||||
>The <B
|
||||
CLASS="command"
|
||||
>chroot</B
|
||||
@@ -681,7 +681,7 @@ CLASS="command"
|
||||
></DT
|
||||
><DT
|
||||
>7.2.2. <A
|
||||
HREF="Bv9ARM.ch07.html#AEN4049"
|
||||
HREF="Bv9ARM.ch07.html#AEN4056"
|
||||
>Using the <B
|
||||
CLASS="command"
|
||||
>setuid</B
|
||||
@@ -705,26 +705,26 @@ HREF="Bv9ARM.ch08.html"
|
||||
><DL
|
||||
><DT
|
||||
>8.1. <A
|
||||
HREF="Bv9ARM.ch08.html#AEN4070"
|
||||
HREF="Bv9ARM.ch08.html#AEN4077"
|
||||
>Common Problems</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>8.1.1. <A
|
||||
HREF="Bv9ARM.ch08.html#AEN4072"
|
||||
HREF="Bv9ARM.ch08.html#AEN4079"
|
||||
>It's not working; how can I figure out what's wrong?</A
|
||||
></DT
|
||||
></DL
|
||||
></DD
|
||||
><DT
|
||||
>8.2. <A
|
||||
HREF="Bv9ARM.ch08.html#AEN4075"
|
||||
HREF="Bv9ARM.ch08.html#AEN4082"
|
||||
>Incrementing and Changing the Serial Number</A
|
||||
></DT
|
||||
><DT
|
||||
>8.3. <A
|
||||
HREF="Bv9ARM.ch08.html#AEN4080"
|
||||
HREF="Bv9ARM.ch08.html#AEN4087"
|
||||
>Where Can I Get Help?</A
|
||||
></DT
|
||||
></DL
|
||||
@@ -738,14 +738,14 @@ HREF="Bv9ARM.ch09.html"
|
||||
><DL
|
||||
><DT
|
||||
>A.1. <A
|
||||
HREF="Bv9ARM.ch09.html#AEN4096"
|
||||
HREF="Bv9ARM.ch09.html#AEN4103"
|
||||
>Acknowledgements</A
|
||||
></DT
|
||||
><DD
|
||||
><DL
|
||||
><DT
|
||||
>A.1.1. <A
|
||||
HREF="Bv9ARM.ch09.html#AEN4098"
|
||||
HREF="Bv9ARM.ch09.html#AEN4105"
|
||||
>A Brief History of the <SPAN
|
||||
CLASS="acronym"
|
||||
>DNS</SPAN
|
||||
@@ -775,7 +775,7 @@ HREF="Bv9ARM.ch09.html#classes_of_resource_records"
|
||||
></DD
|
||||
><DT
|
||||
>A.3. <A
|
||||
HREF="Bv9ARM.ch09.html#AEN4137"
|
||||
HREF="Bv9ARM.ch09.html#AEN4144"
|
||||
>General <SPAN
|
||||
CLASS="acronym"
|
||||
>DNS</SPAN
|
||||
@@ -809,7 +809,7 @@ HREF="Bv9ARM.ch09.html#internet_drafts"
|
||||
></DT
|
||||
><DT
|
||||
>A.4.3. <A
|
||||
HREF="Bv9ARM.ch09.html#AEN4746"
|
||||
HREF="Bv9ARM.ch09.html#AEN4753"
|
||||
>Other Documents About <SPAN
|
||||
CLASS="acronym"
|
||||
>BIND</SPAN
|
||||
|
||||
Reference in New Issue
Block a user