File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1864,6 +1864,11 @@ func ValidateNetwork(obj *Network) error {
1864
1864
return errors .New ("encap string invalid format" )
1865
1865
}
1866
1866
1867
+ gatewayMatch := 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})?$" )
1868
+ if gatewayMatch .MatchString (obj .Gateway ) == false {
1869
+ return errors .New ("gateway string invalid format" )
1870
+ }
1871
+
1867
1872
if len (obj .NetworkName ) > 64 {
1868
1873
return errors .New ("networkName string too long" )
1869
1874
}
Original file line number Diff line number Diff line change 36
36
},
37
37
"gateway" : {
38
38
"type" : " string" ,
39
+ "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})?$" ,
39
40
"title" : " Gateway" ,
40
41
"showSummary" : true
41
42
}
You can’t perform that action at this time.
0 commit comments