]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Q: I want to use IPv6 locally but I don't have a external IPv6 connection.
authorMark Andrews <marka@isc.org>
Wed, 27 Aug 2008 02:34:48 +0000 (02:34 +0000)
committerMark Andrews <marka@isc.org>
Wed, 27 Aug 2008 02:34:48 +0000 (02:34 +0000)
   External lookups are slow.

FAQ.xml

diff --git a/FAQ.xml b/FAQ.xml
index 2fe6d29df1e8c426cef60db0a58a9f47cefc8dee..b944487b2367fc83eecf49f32ff9c24db60f5a91 100644 (file)
--- a/FAQ.xml
+++ b/FAQ.xml
@@ -17,7 +17,7 @@
  - PERFORMANCE OF THIS SOFTWARE.
 -->
 
-<!-- $Id: FAQ.xml,v 1.43 2008/07/17 00:24:51 jreed Exp $ -->
+<!-- $Id: FAQ.xml,v 1.44 2008/08/27 02:34:48 marka Exp $ -->
 
 <article class="faq">
   <title>Frequently Asked Questions about BIND 9</title>
@@ -391,6 +391,11 @@ named-checkzone example.com tmp</programlisting>
          of input</quote> where 99 is the last line of named.conf.
        </para>
       </question>
+      <answer>
+       <para>
+         There are unbalanced quotes in named.conf.
+       </para>
+      </answer>
       <answer>
        <para>
          Some text editors (notepad and wordpad) fail to put a line
@@ -661,6 +666,25 @@ zone "list.dsbl.org" {
        </para>
       </answer>
     </qandaentry>
+
+    <qandaentry>
+      <question>
+       <para>
+         I want to use IPv6 locally but I don't have a external IPv6
+         connection.  External lookups are slow.
+       </para>
+      </question>
+      <answer>
+       <para>
+         You can use server clauses to stop named making external lookups
+         over IPv6.
+       </para>
+        <programlisting>
+server fd81:ec6c:bd62::/48 { bogus no; }; // site ULA prefix
+server ::/0 { bogus yes; };
+</programlisting>
+      </answer>
+    </qandaentry>
     
     </qandadiv> <!-- Configuration and Setup Questions -->