diff options
author | 2020-04-28 16:46:20 +0200 | |
---|---|---|
committer | 2020-04-28 10:46:20 -0400 | |
commit | 5347bc38e733a0ff084aafe7713d24903596f440 (patch) | |
tree | 10c049d8eefc0e333197014051ff205374fb4090 /plugin | |
parent | dcdbec53e4f2537ca45374e1391b00b4f131eed1 (diff) | |
download | coredns-5347bc38e733a0ff084aafe7713d24903596f440.tar.gz coredns-5347bc38e733a0ff084aafe7713d24903596f440.tar.zst coredns-5347bc38e733a0ff084aafe7713d24903596f440.zip |
Fix CIDR in example (#3864)
Signed-off-by: Krzysztof DÄ…browski <krzysdabro@live.com>
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/acl/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
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 } } |