From 5347bc38e733a0ff084aafe7713d24903596f440 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20D=C4=85browski?= Date: Tue, 28 Apr 2020 16:46:20 +0200 Subject: [PATCH] Fix CIDR in example (#3864) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Krzysztof DÄ…browski --- plugin/acl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/acl/README.md b/plugin/acl/README.md index 3c1e193ee..d1c4e5483 100644 --- a/plugin/acl/README.md +++ b/plugin/acl/README.md @@ -53,7 +53,7 @@ Allow only DNS queries from 192.168.0.0/24 and 192.168.1.0/24: ~~~ corefile . { acl { - allow net 192.168.0.0/16 192.168.1.0/24 + allow net 192.168.0.0/24 192.168.1.0/24 block } }