1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #6822: Use consistent maximum value for interface MTU

This commit is contained in:
jeremystretch
2021-07-27 16:04:51 -04:00
parent 4f6944424b
commit 8355270a1a
7 changed files with 18 additions and 20 deletions

View File

@ -29,7 +29,7 @@ REARPORT_POSITIONS_MAX = 1024
#
INTERFACE_MTU_MIN = 1
INTERFACE_MTU_MAX = 32767 # Max value of a signed 16-bit integer
INTERFACE_MTU_MAX = 65536
VIRTUAL_IFACE_TYPES = [
InterfaceTypeChoices.TYPE_VIRTUAL,