Skip to content

Commit

Permalink
Issue 17924 (BGP_ASN_MIN change from 1 to 0)
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
menckend authored Nov 7, 2024
1 parent fe0ae39 commit 7ab7808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/ipam/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
)

# BGP ASN bounds
BGP_ASN_MIN = 1
BGP_ASN_MIN = 0
BGP_ASN_MAX = 2**32 - 1


Expand Down

0 comments on commit 7ab7808

Please sign in to comment.