mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Closes #2839: Add "110 punch" type for pass-through ports
This commit is contained in:
@ -2,6 +2,7 @@ v2.5.6 (FUTURE)
|
|||||||
|
|
||||||
## Enhancements
|
## Enhancements
|
||||||
|
|
||||||
|
* [#2839](https://github.com/digitalocean/netbox/issues/2839) - Add "110 punch" type for pass-through ports
|
||||||
* [#2854](https://github.com/digitalocean/netbox/issues/2854) - Enable bulk editing of pass-through ports
|
* [#2854](https://github.com/digitalocean/netbox/issues/2854) - Enable bulk editing of pass-through ports
|
||||||
|
|
||||||
## Bug Fixes
|
## Bug Fixes
|
||||||
|
@ -255,6 +255,7 @@ IFACE_MODE_CHOICES = [
|
|||||||
|
|
||||||
# Pass-through port types
|
# Pass-through port types
|
||||||
PORT_TYPE_8P8C = 1000
|
PORT_TYPE_8P8C = 1000
|
||||||
|
PORT_TYPE_110_PUNCH = 1100
|
||||||
PORT_TYPE_ST = 2000
|
PORT_TYPE_ST = 2000
|
||||||
PORT_TYPE_SC = 2100
|
PORT_TYPE_SC = 2100
|
||||||
PORT_TYPE_FC = 2200
|
PORT_TYPE_FC = 2200
|
||||||
@ -267,6 +268,7 @@ PORT_TYPE_CHOICES = [
|
|||||||
'Copper',
|
'Copper',
|
||||||
[
|
[
|
||||||
[PORT_TYPE_8P8C, '8P8C'],
|
[PORT_TYPE_8P8C, '8P8C'],
|
||||||
|
[PORT_TYPE_110_PUNCH, '110 Punch'],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
Reference in New Issue
Block a user