Skip to content

Commit 5ebca49

Browse files
author
Joji Mekkatt
authored
Merge pull request #46 from abhinandanpb/bgp_parser
bgp parser fix
2 parents 1b30a6c + 44a0709 commit 5ebca49

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

bgphost.json

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"routerip": {
1616
"type": "string",
1717
"title": "Bgp router intf ip",
18-
"length": 15,
1918
"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])$"
2019
},
2120
"as": {

contivModel.go

-4
Original file line numberDiff line numberDiff line change
@@ -1592,10 +1592,6 @@ func ValidateBgp(obj *Bgp) error {
15921592
return errors.New("neighbor-as string too long")
15931593
}
15941594

1595-
if len(obj.Routerip) > 15 {
1596-
return errors.New("routerip string too long")
1597-
}
1598-
15991595
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])$")
16001596
if routeripMatch.MatchString(obj.Routerip) == false {
16011597
return errors.New("routerip string invalid format")

0 commit comments

Comments
 (0)