From: Ivan Poddubny Date: Sun, 5 May 2024 14:20:15 +0000 (+0200) Subject: configs: Fix a misleading IPv6 ACL example in Named ACLs X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=685f525b286382e316da6a7d8f5ebeb03046f2c3;p=thirdparty%2Fasterisk.git configs: Fix a misleading IPv6 ACL example in Named ACLs "deny=::" is equivalent to "::/128". In order to mean "deny everything by default" it must be "::/0". --- diff --git a/configs/samples/acl.conf.sample b/configs/samples/acl.conf.sample index b052606ce7..60404cbb4c 100644 --- a/configs/samples/acl.conf.sample +++ b/configs/samples/acl.conf.sample @@ -73,7 +73,7 @@ ; ; Named ACLs can use ipv6 addresses just like normal ACLs. ;[ipv6_example_1] -;deny = :: +;deny = ::/0 ;permit = ::1/128 ; ;[ipv6_example_2]