File tree 2 files changed +0
-5
lines changed
2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change 15
15
"routerip" : {
16
16
"type" : " string" ,
17
17
"title" : " Bgp router intf ip" ,
18
- "length" : 15 ,
19
18
"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])$"
20
19
},
21
20
"as" : {
Original file line number Diff line number Diff line change @@ -1592,10 +1592,6 @@ func ValidateBgp(obj *Bgp) error {
1592
1592
return errors .New ("neighbor-as string too long" )
1593
1593
}
1594
1594
1595
- if len (obj .Routerip ) > 15 {
1596
- return errors .New ("routerip string too long" )
1597
- }
1598
-
1599
1595
routeripMatch := 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])$" )
1600
1596
if routeripMatch .MatchString (obj .Routerip ) == false {
1601
1597
return errors .New ("routerip string invalid format" )
You can’t perform that action at this time.
0 commit comments