WIFI-13798 : Increase MAX MTU to 1600

closes WIFI-13798 : Increase MAX MTU to 1600

Signed-off-by: joydeepbenison <joydeep.ghosh@benisontech.com>
This commit is contained in:
joydeepbenison
2024-07-11 11:03:16 +05:30
parent dd31b74374
commit 7530d318cd
5 changed files with 6 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ properties:
description:
The MTU of this logical interface.
type: integer
maximum: 1500
maximum: 1600
minimum: 1280
services:
description:

View File

@@ -6422,8 +6422,8 @@ function instantiateInterface(location, value, errors) {
function parseMtu(location, value, errors) {
if (type(value) in [ "int", "double" ]) {
if (value > 1500)
push(errors, [ location, "must be lower than or equal to 1500" ]);
if (value > 1600)
push(errors, [ location, "must be lower than or equal to 1600" ]);
if (value < 1280)
push(errors, [ location, "must be bigger than or equal to 1280" ]);

View File

@@ -856,7 +856,7 @@
"mtu": {
"description": "The MTU of this logical interface.",
"type": "integer",
"maximum": 1500,
"maximum": 1600,
"minimum": 1280
},
"services": {

View File

@@ -2296,7 +2296,7 @@
},
"mtu": {
"type": "integer",
"maximum": 1500,
"maximum": 1600,
"minimum": 1280
},
"services": {

View File

@@ -2623,7 +2623,7 @@
"mtu": {
"description": "The MTU of this logical interface.",
"type": "integer",
"maximum": 1500,
"maximum": 1600,
"minimum": 1280
},
"services": {