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)
This commit is contained in:
Mencken Davidson 2024-11-07 15:53:48 -05:00 committed by GitHub
parent fe0ae39903
commit 7ab780814b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ __all__ = (
)
# BGP ASN bounds
BGP_ASN_MIN = 1
BGP_ASN_MIN = 0
BGP_ASN_MAX = 2**32 - 1