diff options
author | Simen Linderud <simen.linderud@gmail.com> | 2023-04-05 18:28:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 18:28:07 +0200 |
commit | 80543363e9f2ef77fe0bc4b33486f2599398b466 (patch) | |
tree | 14c5f806cd685d30e1bf84496ba42522634eb840 /tools/netbox | |
parent | 3e81ebe7e8688a25645f67a713845b6bae744bd4 (diff) | |
parent | 6affae31be717483400e3e9d17cf279938991629 (diff) |
Merge pull request #114 from gathering/fix-uplink-names-2
Renamed uplinks from 'CAT' to 'RJ45'
Diffstat (limited to 'tools/netbox')
-rw-r--r-- | tools/netbox/scripts/create-switch/create-switch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/netbox/scripts/create-switch/create-switch.py b/tools/netbox/scripts/create-switch/create-switch.py index 7af8523..1f53e7c 100644 --- a/tools/netbox/scripts/create-switch/create-switch.py +++ b/tools/netbox/scripts/create-switch/create-switch.py @@ -35,8 +35,8 @@ DEFAULT_IPV6_RING_DELIVERY = Prefix.objects.get(prefix='2a06:5841:e:2000::/52') UPLINK_TYPES = ( (InterfaceTypeChoices.TYPE_10GE_SFP_PLUS, '10G SFP+'), - (InterfaceTypeChoices.TYPE_1GE_FIXED, '1G CAT'), - (InterfaceTypeChoices.TYPE_10GE_FIXED, '10G CAT') + (InterfaceTypeChoices.TYPE_1GE_FIXED, '1G RJ45'), + (InterfaceTypeChoices.TYPE_10GE_FIXED, '10G RJ45') ) LEVERANSE_TYPES = ( |