Skip to content

Commit 9ac4bb6

Browse files
committed
Fixing subnet regex to take range
1 parent 9a9b401 commit 9ac4bb6

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
@@ -1868,7 +1868,7 @@ func ValidateNetwork(obj *Network) error {
18681868
return errors.New("networkName string too long")
18691869
}
18701870

1871-
subnetMatch := regexp.MustCompile("^([0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?/[0-9]{1,2}?)$")
1871+
subnetMatch := regexp.MustCompile("^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\-(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$")
18721872
if subnetMatch.MatchString(obj.Subnet) == false {
18731873
return errors.New("subnet string invalid format")
18741874
}

network.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"subnet": {
3232
"type": "string",
33-
"format": "^([0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?/[0-9]{1,2}?)$",
33+
"format": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\\\-(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$",
3434
"title": "Subnet",
3535
"showSummary": true
3636
},

0 commit comments

Comments
 (0)