From 0fe0267c72dc10e7acc3dab4783ca17f7e1d0230 Mon Sep 17 00:00:00 2001 From: Marco Ceppi Date: Thu, 21 Nov 2019 16:27:41 -0500 Subject: [PATCH] Add Keystone interface type --- netbox/dcim/constants.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/netbox/dcim/constants.py b/netbox/dcim/constants.py index 0979ea37e..82233d821 100644 --- a/netbox/dcim/constants.py +++ b/netbox/dcim/constants.py @@ -141,6 +141,8 @@ IFACE_TYPE_SUMMITSTACK512 = 5330 # Other IFACE_TYPE_OTHER = 32767 +IFACE_TYPE_KEYSTONE = 32766 + IFACE_TYPE_CHOICES = [ [ @@ -266,6 +268,7 @@ IFACE_TYPE_CHOICES = [ [ 'Other', [ + [IFACE_TYPE_KEYSTONE, 'Keystone'], [IFACE_TYPE_OTHER, 'Other'], ] ],