From: Nicki Křížek Date: Tue, 4 Aug 2026 16:01:12 +0000 (+0000) Subject: Add missing standard IPv6 source address statements X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c803a9b2552c59bc77108d93753953331cb04b9b;p=thirdparty%2Fbind9.git Add missing standard IPv6 source address statements Instances that listen on IPv6 pin their query/notify/transfer source addresses to their own fd92:7065:b8e:ffff::N, but in some configs the *-source-v6 statements were left unset. Explicitly add the missing statements to make the configuration of IPv6-capable instances uniform. Assisted-by: Claude:claude-fable-5 --- diff --git a/bin/tests/system/cache_delegns/ns1/named.conf.j2 b/bin/tests/system/cache_delegns/ns1/named.conf.j2 index ed2f15cadd3..3d2d80c19ff 100644 --- a/bin/tests/system/cache_delegns/ns1/named.conf.j2 +++ b/bin/tests/system/cache_delegns/ns1/named.conf.j2 @@ -1,7 +1,10 @@ options { query-source address 10.53.0.1; + query-source-v6 address fd92:7065:b8e:ffff::1; notify-source 10.53.0.1; + notify-source-v6 fd92:7065:b8e:ffff::1; transfer-source 10.53.0.1; + transfer-source-v6 fd92:7065:b8e:ffff::1; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.1; }; diff --git a/bin/tests/system/catz/ns2/named.conf.j2 b/bin/tests/system/catz/ns2/named.conf.j2 index 620bfd6e3b5..d29e65dfc02 100644 --- a/bin/tests/system/catz/ns2/named.conf.j2 +++ b/bin/tests/system/catz/ns2/named.conf.j2 @@ -8,8 +8,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/catz/ns2/named7.conf.j2 b/bin/tests/system/catz/ns2/named7.conf.j2 index 1076e8c8de7..7abea92eb8a 100644 --- a/bin/tests/system/catz/ns2/named7.conf.j2 +++ b/bin/tests/system/catz/ns2/named7.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/catz/ns3/named.conf.j2 b/bin/tests/system/catz/ns3/named.conf.j2 index 3b491aed939..1e2ac13b78f 100644 --- a/bin/tests/system/catz/ns3/named.conf.j2 +++ b/bin/tests/system/catz/ns3/named.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.3; + query-source-v6 address fd92:7065:b8e:ffff::3; notify-source 10.53.0.3; + notify-source-v6 fd92:7065:b8e:ffff::3; transfer-source 10.53.0.3; + transfer-source-v6 fd92:7065:b8e:ffff::3; port @PORT@; allow-new-zones yes; pid-file "named.pid"; diff --git a/bin/tests/system/catz/ns4/named.conf.j2 b/bin/tests/system/catz/ns4/named.conf.j2 index 6525482b324..4886bfa1e3a 100644 --- a/bin/tests/system/catz/ns4/named.conf.j2 +++ b/bin/tests/system/catz/ns4/named.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.4; + query-source-v6 address fd92:7065:b8e:ffff::4; notify-source 10.53.0.4; + notify-source-v6 fd92:7065:b8e:ffff::4; transfer-source 10.53.0.4; + transfer-source-v6 fd92:7065:b8e:ffff::4; port @PORT@; tls-port @TLSPORT@; pid-file "named.pid"; diff --git a/bin/tests/system/chain/ns7/named.conf.j2 b/bin/tests/system/chain/ns7/named.conf.j2 index 2ff410965a6..16a7f14c6c4 100644 --- a/bin/tests/system/chain/ns7/named.conf.j2 +++ b/bin/tests/system/chain/ns7/named.conf.j2 @@ -1,8 +1,11 @@ options { directory "."; query-source address 10.53.0.7; + query-source-v6 address fd92:7065:b8e:ffff::7; notify-source 10.53.0.7; + notify-source-v6 fd92:7065:b8e:ffff::7; transfer-source 10.53.0.7; + transfer-source-v6 fd92:7065:b8e:ffff::7; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.7; }; diff --git a/bin/tests/system/digdelv/ns1/named.conf.j2 b/bin/tests/system/digdelv/ns1/named.conf.j2 index e1dc7babde6..4cb673a1f13 100644 --- a/bin/tests/system/digdelv/ns1/named.conf.j2 +++ b/bin/tests/system/digdelv/ns1/named.conf.j2 @@ -2,8 +2,11 @@ options { notify-source 10.53.0.1; + notify-source-v6 fd92:7065:b8e:ffff::1; transfer-source 10.53.0.1; + transfer-source-v6 fd92:7065:b8e:ffff::1; query-source address 10.53.0.1; + query-source-v6 address fd92:7065:b8e:ffff::1; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.1; }; diff --git a/bin/tests/system/digdelv/ns2/named.conf.j2 b/bin/tests/system/digdelv/ns2/named.conf.j2 index d0d3a96276d..e11cf56b9dd 100644 --- a/bin/tests/system/digdelv/ns2/named.conf.j2 +++ b/bin/tests/system/digdelv/ns2/named.conf.j2 @@ -2,8 +2,11 @@ options { notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/digdelv/ns3/named.conf.j2 b/bin/tests/system/digdelv/ns3/named.conf.j2 index 58febf64c1f..aade9232f9b 100644 --- a/bin/tests/system/digdelv/ns3/named.conf.j2 +++ b/bin/tests/system/digdelv/ns3/named.conf.j2 @@ -1,7 +1,10 @@ options { notify-source 10.53.0.3; + notify-source-v6 fd92:7065:b8e:ffff::3; transfer-source 10.53.0.3; + transfer-source-v6 fd92:7065:b8e:ffff::3; query-source address 10.53.0.3; + query-source-v6 address fd92:7065:b8e:ffff::3; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.3; }; diff --git a/bin/tests/system/filters/ns1/named.conf.j2 b/bin/tests/system/filters/ns1/named.conf.j2 index 81534e6895e..9d5019b93ca 100644 --- a/bin/tests/system/filters/ns1/named.conf.j2 +++ b/bin/tests/system/filters/ns1/named.conf.j2 @@ -3,8 +3,11 @@ options { query-source address 10.53.0.1; + query-source-v6 address fd92:7065:b8e:ffff::1; notify-source 10.53.0.1; + notify-source-v6 fd92:7065:b8e:ffff::1; transfer-source 10.53.0.1; + transfer-source-v6 fd92:7065:b8e:ffff::1; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.1; }; diff --git a/bin/tests/system/filters/ns2/named.conf.j2 b/bin/tests/system/filters/ns2/named.conf.j2 index 5e6fa70fbc8..e58160d02e3 100644 --- a/bin/tests/system/filters/ns2/named.conf.j2 +++ b/bin/tests/system/filters/ns2/named.conf.j2 @@ -5,7 +5,9 @@ options { query-source address 10.53.0.2; query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/filters/ns3/named.conf.j2 b/bin/tests/system/filters/ns3/named.conf.j2 index 41e921d9750..4803d3631e2 100644 --- a/bin/tests/system/filters/ns3/named.conf.j2 +++ b/bin/tests/system/filters/ns3/named.conf.j2 @@ -5,7 +5,9 @@ options { query-source address 10.53.0.3; query-source-v6 address fd92:7065:b8e:ffff::3; notify-source 10.53.0.3; + notify-source-v6 fd92:7065:b8e:ffff::3; transfer-source 10.53.0.3; + transfer-source-v6 fd92:7065:b8e:ffff::3; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.3; }; diff --git a/bin/tests/system/filters/ns4/named.conf.j2 b/bin/tests/system/filters/ns4/named.conf.j2 index 79114238722..6f3a3f327a2 100644 --- a/bin/tests/system/filters/ns4/named.conf.j2 +++ b/bin/tests/system/filters/ns4/named.conf.j2 @@ -3,8 +3,11 @@ options { query-source address 10.53.0.4; + query-source-v6 address fd92:7065:b8e:ffff::4; notify-source 10.53.0.4; + notify-source-v6 fd92:7065:b8e:ffff::4; transfer-source 10.53.0.4; + transfer-source-v6 fd92:7065:b8e:ffff::4; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.4; }; diff --git a/bin/tests/system/filters/ns5/named.conf.j2 b/bin/tests/system/filters/ns5/named.conf.j2 index 1a67e6c8f79..821450422dc 100644 --- a/bin/tests/system/filters/ns5/named.conf.j2 +++ b/bin/tests/system/filters/ns5/named.conf.j2 @@ -1,7 +1,10 @@ options { query-source address 10.53.0.5; + query-source-v6 address fd92:7065:b8e:ffff::5; notify-source 10.53.0.5; + notify-source-v6 fd92:7065:b8e:ffff::5; transfer-source 10.53.0.5; + transfer-source-v6 fd92:7065:b8e:ffff::5; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.5; }; diff --git a/bin/tests/system/geoip2/ns2/named.conf.j2 b/bin/tests/system/geoip2/ns2/named.conf.j2 index b4a00609575..8a60628d4b4 100644 --- a/bin/tests/system/geoip2/ns2/named.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/geoip2/ns2/named10.conf.j2 b/bin/tests/system/geoip2/ns2/named10.conf.j2 index f1b6623d95a..24c4c8e3527 100644 --- a/bin/tests/system/geoip2/ns2/named10.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named10.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/geoip2/ns2/named11.conf.j2 b/bin/tests/system/geoip2/ns2/named11.conf.j2 index 19688de9f85..944a15b08e7 100644 --- a/bin/tests/system/geoip2/ns2/named11.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named11.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/geoip2/ns2/named12.conf.j2 b/bin/tests/system/geoip2/ns2/named12.conf.j2 index 86abf2115ba..caecccb0bf5 100644 --- a/bin/tests/system/geoip2/ns2/named12.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named12.conf.j2 @@ -6,8 +6,11 @@ acl blocking { options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/geoip2/ns2/named3.conf.j2 b/bin/tests/system/geoip2/ns2/named3.conf.j2 index 63c824dad59..477db13e30e 100644 --- a/bin/tests/system/geoip2/ns2/named3.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named3.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/geoip2/ns2/named4.conf.j2 b/bin/tests/system/geoip2/ns2/named4.conf.j2 index 39cb149a0c4..92b5dc34c42 100644 --- a/bin/tests/system/geoip2/ns2/named4.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named4.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/geoip2/ns2/named5.conf.j2 b/bin/tests/system/geoip2/ns2/named5.conf.j2 index fd8e22e0264..10b3cd85853 100644 --- a/bin/tests/system/geoip2/ns2/named5.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named5.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/geoip2/ns2/named6.conf.j2 b/bin/tests/system/geoip2/ns2/named6.conf.j2 index e76813bf311..9d7acc304f7 100644 --- a/bin/tests/system/geoip2/ns2/named6.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named6.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/geoip2/ns2/named7.conf.j2 b/bin/tests/system/geoip2/ns2/named7.conf.j2 index 6a57790d69d..cd7f36a618b 100644 --- a/bin/tests/system/geoip2/ns2/named7.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named7.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/geoip2/ns2/named8.conf.j2 b/bin/tests/system/geoip2/ns2/named8.conf.j2 index c8654044759..f0de194f9f7 100644 --- a/bin/tests/system/geoip2/ns2/named8.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named8.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/geoip2/ns2/named9.conf.j2 b/bin/tests/system/geoip2/ns2/named9.conf.j2 index 8220006e3ca..6c5c1107343 100644 --- a/bin/tests/system/geoip2/ns2/named9.conf.j2 +++ b/bin/tests/system/geoip2/ns2/named9.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/idna/ns1/named.conf.j2 b/bin/tests/system/idna/ns1/named.conf.j2 index e1dc7babde6..4cb673a1f13 100644 --- a/bin/tests/system/idna/ns1/named.conf.j2 +++ b/bin/tests/system/idna/ns1/named.conf.j2 @@ -2,8 +2,11 @@ options { notify-source 10.53.0.1; + notify-source-v6 fd92:7065:b8e:ffff::1; transfer-source 10.53.0.1; + transfer-source-v6 fd92:7065:b8e:ffff::1; query-source address 10.53.0.1; + query-source-v6 address fd92:7065:b8e:ffff::1; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.1; }; diff --git a/bin/tests/system/notify/ns3/named.conf.j2 b/bin/tests/system/notify/ns3/named.conf.j2 index b63243a02fe..577136c7ff1 100644 --- a/bin/tests/system/notify/ns3/named.conf.j2 +++ b/bin/tests/system/notify/ns3/named.conf.j2 @@ -4,8 +4,11 @@ include "named-tls.conf"; options { query-source address 10.53.0.3; + query-source-v6 address fd92:7065:b8e:ffff::3; notify-source 10.53.0.3; + notify-source-v6 fd92:7065:b8e:ffff::3; transfer-source 10.53.0.3; + transfer-source-v6 fd92:7065:b8e:ffff::3; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.3; }; diff --git a/bin/tests/system/resolver/ns6/named.conf.j2 b/bin/tests/system/resolver/ns6/named.conf.j2 index 19d6a853c8f..c3fbadd7f67 100644 --- a/bin/tests/system/resolver/ns6/named.conf.j2 +++ b/bin/tests/system/resolver/ns6/named.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.6; + query-source-v6 address fd92:7065:b8e:ffff::6; notify-source 10.53.0.6; + notify-source-v6 fd92:7065:b8e:ffff::6; transfer-source 10.53.0.6; + transfer-source-v6 fd92:7065:b8e:ffff::6; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.6; }; diff --git a/bin/tests/system/resolver/ns7/named.conf.j2 b/bin/tests/system/resolver/ns7/named.conf.j2 index cbf94cc3bb3..b8e1e558efd 100644 --- a/bin/tests/system/resolver/ns7/named.conf.j2 +++ b/bin/tests/system/resolver/ns7/named.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.7; + query-source-v6 address fd92:7065:b8e:ffff::7; notify-source 10.53.0.7; + notify-source-v6 fd92:7065:b8e:ffff::7; transfer-source 10.53.0.7; + transfer-source-v6 fd92:7065:b8e:ffff::7; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.7; }; diff --git a/bin/tests/system/resolver/ns7/named2.conf.j2 b/bin/tests/system/resolver/ns7/named2.conf.j2 index c858207229d..1770988387b 100644 --- a/bin/tests/system/resolver/ns7/named2.conf.j2 +++ b/bin/tests/system/resolver/ns7/named2.conf.j2 @@ -2,8 +2,11 @@ options { query-source address 10.53.0.7; + query-source-v6 address fd92:7065:b8e:ffff::7; notify-source 10.53.0.7; + notify-source-v6 fd92:7065:b8e:ffff::7; transfer-source 10.53.0.7; + transfer-source-v6 fd92:7065:b8e:ffff::7; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.7; }; diff --git a/bin/tests/system/runtime/ns2/named1.conf.j2 b/bin/tests/system/runtime/ns2/named1.conf.j2 index 012d4c2a408..e8498fe9be9 100644 --- a/bin/tests/system/runtime/ns2/named1.conf.j2 +++ b/bin/tests/system/runtime/ns2/named1.conf.j2 @@ -2,8 +2,11 @@ options { notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/runtime/ns2/named5.conf.j2 b/bin/tests/system/runtime/ns2/named5.conf.j2 index 83a5cabc861..4cbfaa78bf3 100644 --- a/bin/tests/system/runtime/ns2/named5.conf.j2 +++ b/bin/tests/system/runtime/ns2/named5.conf.j2 @@ -1,7 +1,10 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/runtime/ns2/named6.conf.j2 b/bin/tests/system/runtime/ns2/named6.conf.j2 index b55a223d14e..9241750a10e 100644 --- a/bin/tests/system/runtime/ns2/named6.conf.j2 +++ b/bin/tests/system/runtime/ns2/named6.conf.j2 @@ -1,7 +1,10 @@ options { query-source address 10.53.0.2; + query-source-v6 address fd92:7065:b8e:ffff::2; notify-source 10.53.0.2; + notify-source-v6 fd92:7065:b8e:ffff::2; transfer-source 10.53.0.2; + transfer-source-v6 fd92:7065:b8e:ffff::2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; diff --git a/bin/tests/system/synthrecord/ns1/named.conf.j2 b/bin/tests/system/synthrecord/ns1/named.conf.j2 index b708d7f10cf..2bdf59abd87 100644 --- a/bin/tests/system/synthrecord/ns1/named.conf.j2 +++ b/bin/tests/system/synthrecord/ns1/named.conf.j2 @@ -3,8 +3,11 @@ options { notify-source 10.53.0.1; + notify-source-v6 fd92:7065:b8e:ffff::1; transfer-source 10.53.0.1; + transfer-source-v6 fd92:7065:b8e:ffff::1; query-source address 10.53.0.1; + query-source-v6 address fd92:7065:b8e:ffff::1; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.1; };