From 4b94567a0529f005b3de97bf2ce5617d3ed91fec Mon Sep 17 00:00:00 2001 From: Daniel Barton Date: Fri, 31 May 2024 20:58:25 +0800 Subject: [PATCH] Allocations: Correct CIDR_MAX_BITS to match the expected limit --- app/Services/Allocations/AssignmentService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Allocations/AssignmentService.php b/app/Services/Allocations/AssignmentService.php index 54994ee724..821255d49c 100644 --- a/app/Services/Allocations/AssignmentService.php +++ b/app/Services/Allocations/AssignmentService.php @@ -14,7 +14,7 @@ class AssignmentService { - public const CIDR_MAX_BITS = 27; + public const CIDR_MAX_BITS = 25; public const CIDR_MIN_BITS = 32; public const PORT_FLOOR = 1024; public const PORT_CEIL = 65535;