From df430394b018fcb2f4b7bbc42be3c22f7e05bc26 Mon Sep 17 00:00:00 2001 From: jeremystretch Date: Tue, 1 Mar 2022 11:07:19 -0500 Subject: [PATCH] Closes #8766: Add SCTP to service protocols list --- docs/release-notes/version-3.1.md | 1 + netbox/ipam/choices.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/docs/release-notes/version-3.1.md b/docs/release-notes/version-3.1.md index 08a9ab337..ebe9bee46 100644 --- a/docs/release-notes/version-3.1.md +++ b/docs/release-notes/version-3.1.md @@ -6,6 +6,7 @@ * [#8594](https://github.com/netbox-community/netbox/issues/8594) - Enable filtering by exact description match for all applicable models * [#8629](https://github.com/netbox-community/netbox/issues/8629) - Add description to tag table search function +* [#8766](https://github.com/netbox-community/netbox/issues/8766) - Add SCTP to service protocols list ### Bug Fixes diff --git a/netbox/ipam/choices.py b/netbox/ipam/choices.py index 526ef07d9..647a82810 100644 --- a/netbox/ipam/choices.py +++ b/netbox/ipam/choices.py @@ -189,8 +189,10 @@ class ServiceProtocolChoices(ChoiceSet): PROTOCOL_TCP = 'tcp' PROTOCOL_UDP = 'udp' + PROTOCOL_SCTP = 'sctp' CHOICES = ( (PROTOCOL_TCP, 'TCP'), (PROTOCOL_UDP, 'UDP'), + (PROTOCOL_SCTP, 'SCTP'), )