Skip to content

Commit f9a424e

Browse files
authored
fix pkt tag range enforcement (#40)
1 parent 86366e2 commit f9a424e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contivModel.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2981,7 +2981,7 @@ func ValidateNetwork(obj *Network) error {
29812981
return errors.New("nwType string invalid format")
29822982
}
29832983

2984-
if obj.PktTag > 4094 {
2984+
if obj.PktTag > 1.6777216e+07 {
29852985
return errors.New("pktTag Value Out of bound")
29862986
}
29872987

network.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"type": "int",
3838
"title": "Vlan/Vxlan Tag",
3939
"showSummary": true,
40-
"max": 4094
40+
"max": 16777216
4141
},
4242
"subnet": {
4343
"type": "string",

0 commit comments

Comments
 (0)