mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 09:09:59 -04:00
Document changes to "rrset-order fixed" [rt17977]
This commit is contained in:
parent
0dba2713de
commit
767c53c304
3 changed files with 33 additions and 14 deletions
9
README
9
README
|
|
@ -62,6 +62,8 @@ BIND 9.5.0
|
|||
|
||||
Efficient LRU cache-cleaning mechanism.
|
||||
|
||||
NSID support.
|
||||
|
||||
BIND 9.4.0
|
||||
|
||||
BIND 9.4.0 has a number of new features over 9.3,
|
||||
|
|
@ -431,8 +433,6 @@ Building
|
|||
-DDIG_SIGCHASE_BU=1)
|
||||
Disable dropping queries from particular well known ports.
|
||||
-DNS_CLIENT_DROPPORT=0
|
||||
Disable support for "rrset-order fixed".
|
||||
-DDNS_RDATASET_FIXED=0
|
||||
|
||||
LDFLAGS
|
||||
Linker flags. Defaults to empty string.
|
||||
|
|
@ -468,6 +468,11 @@ Building
|
|||
on the configure command line. The default is operating
|
||||
system dependent.
|
||||
|
||||
Support for the "fixed" rrset-order option can be enabled
|
||||
or disabled by specifying "--enable-fixed-rrset" or
|
||||
"--disable-fixed-rrset" on the configure command line.
|
||||
The default is "disabled", to reduce memory footprint.
|
||||
|
||||
If your operating system has integrated support for IPv6, it
|
||||
will be used automatically. If you have installed KAME IPv6
|
||||
separately, use "--with-kame[=PATH]" to specify its location.
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
- PERFORMANCE OF THIS SOFTWARE.
|
||||
-->
|
||||
|
||||
<!-- File: $Id: Bv9ARM-book.xml,v 1.351 2008/05/01 18:23:06 jinmei Exp $ -->
|
||||
<!-- File: $Id: Bv9ARM-book.xml,v 1.352 2008/05/06 01:08:59 each Exp $ -->
|
||||
<book xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
<title>BIND 9 Administrator Reference Manual</title>
|
||||
|
||||
|
|
@ -7159,8 +7159,13 @@ query-source-v6 address * port *;
|
|||
</entry>
|
||||
<entry colname="2">
|
||||
<para>
|
||||
Records are returned in a round-robin
|
||||
order.
|
||||
Records are returned in a cyclic round-robin order.
|
||||
</para>
|
||||
<para>
|
||||
If <acronym>BIND</acronym> is configured with the
|
||||
"--enable-fixed-rrset" option at compile time, then
|
||||
the initial ordering of the RRset will match the
|
||||
one specified in the zone file.
|
||||
</para>
|
||||
</entry>
|
||||
</row>
|
||||
|
|
@ -7191,9 +7196,11 @@ query-source-v6 address * port *;
|
|||
|
||||
<note>
|
||||
<simpara>
|
||||
The <command>rrset-order</command> statement
|
||||
is not yet fully implemented in <acronym>BIND</acronym> 9.
|
||||
BIND 9 currently does not fully support "fixed" ordering.
|
||||
In this release of <acronym>BIND</acronym> 9, the
|
||||
<command>rrset-order</command> statement does not support
|
||||
"fixed" ordering by default. Fixed ordering can be enabled
|
||||
at compile time by specifying "--enable-fixed-rrset" on
|
||||
the "configure" command line.
|
||||
</simpara>
|
||||
</note>
|
||||
</sect3>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
- PERFORMANCE OF THIS SOFTWARE.
|
||||
-->
|
||||
<!-- $Id: Bv9ARM.ch06.html,v 1.179 2008/05/02 01:11:50 tbox Exp $ -->
|
||||
<!-- $Id: Bv9ARM.ch06.html,v 1.180 2008/05/06 01:09:00 each Exp $ -->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
|
|
@ -3935,8 +3935,13 @@ query-source-v6 address * port *;
|
|||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Records are returned in a round-robin
|
||||
order.
|
||||
Records are returned in a round-robin order.
|
||||
</p>
|
||||
<p>
|
||||
If <acronym class="acronym">BIND</acronym>is
|
||||
configured with the "--enable-fixed-rrset" option
|
||||
at compile time, then the initial ordering of the
|
||||
RRset will match the one specified in the zone file.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
@ -3964,9 +3969,11 @@ query-source-v6 address * port *;
|
|||
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
|
||||
<h3 class="title">Note</h3>
|
||||
<p>
|
||||
The <span><strong class="command">rrset-order</strong></span> statement
|
||||
is not yet fully implemented in <acronym class="acronym">BIND</acronym> 9.
|
||||
BIND 9 currently does not fully support "fixed" ordering.
|
||||
In this release of <acronym class="acronym">BIND</acronym> 9,
|
||||
the <span><strong class="command">rrset-order</strong></span>
|
||||
statement does not support "fixed" ordering by default.
|
||||
Fixed ordering can be enabled at compile time by specifying
|
||||
"--enable-fixed-rrset" on the "configure" command line.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue