Closes #18816:Add FC/UPC, FC/APC and FC/PC port types

This commit is contained in:
Ben Dale 2025-03-15 10:59:23 +10:00
parent ab0a1f0bbc
commit ef7ffdd382
2 changed files with 7 additions and 0 deletions

View File

@ -40,6 +40,7 @@ NetBox now supports the designation of customer VLANs (CVLANs) and service VLANs
### Enhancements
* [18816](https://github.com/netbox-community/netbox/issues/18816) - Added FC/UPC, FC/APC and FC/PC port types
* [#6414](https://github.com/netbox-community/netbox/issues/6414) - Prefixes can now be scoped by region, site group, site, or location
* [#7699](https://github.com/netbox-community/netbox/issues/7699) - Virtualization clusters can now be scoped by region, site group, site, or location
* [#9604](https://github.com/netbox-community/netbox/issues/9604) - The scope of a circuit termination now include a region, site group, site, location, or provider network

View File

@ -1345,6 +1345,9 @@ class PortTypeChoices(ChoiceSet):
TYPE_SC_UPC = 'sc-upc'
TYPE_SC_APC = 'sc-apc'
TYPE_FC = 'fc'
TYPE_FC_PC = 'fc-pc'
TYPE_FC_UPC = 'fc-upc'
TYPE_FC_APC = 'fc-apc'
TYPE_LC = 'lc'
TYPE_LC_PC = 'lc-pc'
TYPE_LC_UPC = 'lc-upc'
@ -1405,6 +1408,9 @@ class PortTypeChoices(ChoiceSet):
_('Fiber Optic'),
(
(TYPE_FC, 'FC'),
(TYPE_FC_PC, 'FC/PC'),
(TYPE_FC_UPC, 'FC/UPC'),
(TYPE_FC_APC, 'FC/APC'),
(TYPE_LC, 'LC'),
(TYPE_LC_PC, 'LC/PC'),
(TYPE_LC_UPC, 'LC/UPC'),