mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-25 18:08:38 -06:00
Closes #8100: Add "other" choice for FHRP group protocol
This commit is contained in:
parent
ceb941df81
commit
8e95ac42c2
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## v3.1.3 (FUTURE)
|
## v3.1.3 (FUTURE)
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
* [#8100](https://github.com/netbox-community/netbox/issues/8100) - Add "other" choice for FHRP group protocol
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* [#7246](https://github.com/netbox-community/netbox/issues/7246) - Don't attempt to URL-decode NAPALM response payloads
|
* [#7246](https://github.com/netbox-community/netbox/issues/7246) - Don't attempt to URL-decode NAPALM response payloads
|
||||||
|
@ -135,6 +135,7 @@ class FHRPGroupProtocolChoices(ChoiceSet):
|
|||||||
PROTOCOL_HSRP = 'hsrp'
|
PROTOCOL_HSRP = 'hsrp'
|
||||||
PROTOCOL_GLBP = 'glbp'
|
PROTOCOL_GLBP = 'glbp'
|
||||||
PROTOCOL_CARP = 'carp'
|
PROTOCOL_CARP = 'carp'
|
||||||
|
PROTOCOL_OTHER = 'other'
|
||||||
|
|
||||||
CHOICES = (
|
CHOICES = (
|
||||||
(PROTOCOL_VRRP2, 'VRRPv2'),
|
(PROTOCOL_VRRP2, 'VRRPv2'),
|
||||||
@ -142,6 +143,7 @@ class FHRPGroupProtocolChoices(ChoiceSet):
|
|||||||
(PROTOCOL_HSRP, 'HSRP'),
|
(PROTOCOL_HSRP, 'HSRP'),
|
||||||
(PROTOCOL_GLBP, 'GLBP'),
|
(PROTOCOL_GLBP, 'GLBP'),
|
||||||
(PROTOCOL_CARP, 'CARP'),
|
(PROTOCOL_CARP, 'CARP'),
|
||||||
|
(PROTOCOL_OTHER, 'Other'),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user