mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-26 18:38:38 -06:00
choices.py - Add VARP IPAddressRole
This commit is contained in:
parent
2207ea1a32
commit
60a730f5c4
@ -79,6 +79,7 @@ class IPAddressRoleChoices(ChoiceSet):
|
||||
ROLE_LOOPBACK = 'loopback'
|
||||
ROLE_SECONDARY = 'secondary'
|
||||
ROLE_ANYCAST = 'anycast'
|
||||
ROLE_VARP = 'varp'
|
||||
ROLE_VIP = 'vip'
|
||||
ROLE_VRRP = 'vrrp'
|
||||
ROLE_HSRP = 'hsrp'
|
||||
@ -89,6 +90,7 @@ class IPAddressRoleChoices(ChoiceSet):
|
||||
(ROLE_LOOPBACK, _('Loopback'), 'gray'),
|
||||
(ROLE_SECONDARY, _('Secondary'), 'blue'),
|
||||
(ROLE_ANYCAST, _('Anycast'), 'yellow'),
|
||||
(ROLE_VARP, 'VARP', 'lime'),
|
||||
(ROLE_VIP, 'VIP', 'purple'),
|
||||
(ROLE_VRRP, 'VRRP', 'green'),
|
||||
(ROLE_HSRP, 'HSRP', 'green'),
|
||||
|
Loading…
Reference in New Issue
Block a user