]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
3625. [bug] Don't send notify messages to machines outside of the
authorMark Andrews <marka@isc.org>
Wed, 7 Aug 2013 05:48:55 +0000 (15:48 +1000)
committerMark Andrews <marka@isc.org>
Wed, 7 Aug 2013 05:51:24 +0000 (15:51 +1000)
                        test setup.

(cherry picked from commit f45f6541857a5dbb93ac24f321b9cf350ce242ba)

CHANGES
bin/tests/system/rrsetorder/ns1/named.conf

diff --git a/CHANGES b/CHANGES
index 9fb4cf282cd6984d1aca5049ffb60ce281fde6a0..4d5dc61ab34bf65dcaa412f09a5ea7a8d1163069 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+3625.  [bug]           Don't send notify messages to machines outside of the
+                       test setup.
+
        --- 9.8.6rc1 released ---
 
 3621.  [security]      Incorrect bounds checking on private type 'keydata'
index f228a07b2da3e72e97e2cbe797fc3de59775519f..fe8bb6419149e0f256c9ad8cc2a490ba218f2a7c 100644 (file)
@@ -27,7 +27,7 @@ options {
        listen-on { 10.53.0.1; };
        listen-on-v6 { none; };
        recursion no;
-       notify yes;
+       notify no;
        rrset-order {
                name "fixed.example" order fixed;
                name "random.example" order random;
@@ -40,4 +40,6 @@ options {
 zone "." {
        type master;
        file "root.db";
+       notify explicit;
+       also-notify { 10.53.0.2; };
 };