From cef24200838e5485c77563e8c7ead8dfc0893b09 Mon Sep 17 00:00:00 2001
From: Ivan Poddubny <ivan.poddubny@gmail.com>
Date: Sun, 5 May 2024 16:20:15 +0200
Subject: [PATCH] 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".

(cherry picked from commit 685f525b286382e316da6a7d8f5ebeb03046f2c3)
---
 configs/samples/acl.conf.sample | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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]
-- 
GitLab