From 3dee62cfa5e6041699e11a1f22c83a009162d4e3 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Mon, 25 Jan 2021 16:21:35 +1100 Subject: [PATCH] Add a named acl example --- bin/tests/system/nsupdate/ns1/named.conf.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/tests/system/nsupdate/ns1/named.conf.in b/bin/tests/system/nsupdate/ns1/named.conf.in index f79a6f223a..b51e700185 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; }; };