From 7ab780814bcdd06366ca663cc4f45da58361b7cf Mon Sep 17 00:00:00 2001 From: Mencken Davidson <76002183+menckend@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:53:48 -0500 Subject: [PATCH] Issue 17924 (BGP_ASN_MIN change from 1 to 0) Changing BGP_ASN_MIN from 1 to 0 to reflect the validity of ASN 0 (not used in BGP route updates, but used in BGP RPKI ROAs.) [https://github.com/netbox-community/netbox/issues/17924](https://github.com/netbox-community/netbox/issues/17924) --- netbox/ipam/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/ipam/fields.py b/netbox/ipam/fields.py index a82976326..c6aec4728 100644 --- a/netbox/ipam/fields.py +++ b/netbox/ipam/fields.py @@ -14,7 +14,7 @@ __all__ = ( ) # BGP ASN bounds -BGP_ASN_MIN = 1 +BGP_ASN_MIN = 0 BGP_ASN_MAX = 2**32 - 1