From: Mark Andrews Date: Mon, 25 Jan 2021 05:21:35 +0000 (+1100) Subject: Add a named acl example X-Git-Tag: v9.17.10~17^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3dee62cfa5e6041699e11a1f22c83a009162d4e3;p=thirdparty%2Fbind9.git Add a named acl example --- diff --git a/bin/tests/system/nsupdate/ns1/named.conf.in b/bin/tests/system/nsupdate/ns1/named.conf.in index f79a6f223a1..b51e7001858 100644 --- a/bin/tests/system/nsupdate/ns1/named.conf.in +++ b/bin/tests/system/nsupdate/ns1/named.conf.in @@ -23,6 +23,10 @@ options { minimal-responses no; }; +acl named-acl { + any; +}; + key rndc_key { secret "1234abcd8765"; algorithm hmac-sha256; @@ -67,7 +71,7 @@ zone "max-ttl.nil" { file "max-ttl.db"; max-zone-ttl 300; check-integrity no; - allow-update { any; }; + allow-update { named-acl; }; allow-transfer { any; }; };