[DPB] Allow BGP_NEIGHBOR YANG model with just IP as the key (#7992)

Why I did it
[DPB] BGP_NEIGHBOR yang model causing DPB errors.

How I did it
Allowed the BGP_NEIGHBOR list with just IP as the key to allow the current BGP neighbor table in the community.

How to verify it
Built the SONIC YANG models.
This commit is contained in:
Venkatesan Mahalingam 2021-08-12 21:39:01 -07:00 committed by GitHub
parent 520c02b09c
commit f73ffa0913
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 62 additions and 0 deletions

View File

@ -983,6 +983,15 @@
}
},
"BGP_NEIGHBOR": {
"10.0.0.1": {
"asn": "65200",
"holdtime": "180",
"keepalive": "60",
"local_addr": "10.0.0.2",
"name":"PEER1",
"nhopself":"0",
"rrclient":"0"
},
"default|192.168.1.1": {
}
},

View File

@ -48,7 +48,60 @@ module sonic-bgp-neighbor {
container sonic-bgp-neighbor {
container BGP_NEIGHBOR {
list BGP_NEIGHBOR_TEMPLATE_LIST {
description "This list is to support template based BGP neighbor configuration handled by bgpcfgd";
key "neighbor";
leaf neighbor {
type inet:ip-address;
description "BGP Neighbor address";
}
leaf asn {
type uint32 {
range "1..4294967295";
}
description "Peer AS number";
}
leaf holdtime {
type uint16;
description "Hold time";
}
leaf keepalive {
type uint16;
description "Keepalive interval";
}
leaf local_addr {
type inet:ip-address;
description "Local source address or interface name to use for connection.";
}
leaf name {
type string;
description "Peer description";
}
leaf nhopself {
type uint8 {
range "0..1";
}
description "Nexthop is self, no nexthop calculation";
}
leaf rrclient {
type uint8 {
range "0..1";
}
description "Route reflector client";
}
}
list BGP_NEIGHBOR_LIST {
description "This list is to support generic BGP neighbor configuration handled by frrcfgd and
frr_mgmt_framework_config field should be set to true in DEVICE_METADATA talbe for accepting the generic BGP table configurations.";
key "vrf_name neighbor";
leaf vrf_name {