mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-03 02:17:12 +00:00
yang: nbr plist nb conversion for more afi-safis
Signed-off-by: Chirag Shah <chirag@nvidia.com>
This commit is contained in:
parent
d9986d26c0
commit
f4eac84c5a
1750
bgpd/bgp_nb.c
1750
bgpd/bgp_nb.c
File diff suppressed because it is too large
Load Diff
1000
bgpd/bgp_nb.h
1000
bgpd/bgp_nb.h
File diff suppressed because it is too large
Load Diff
8596
bgpd/bgp_nb_config.c
8596
bgpd/bgp_nb_config.c
File diff suppressed because it is too large
Load Diff
@ -552,7 +552,7 @@ struct nb_node {
|
||||
* from working properly on shared libraries. For those compilers, use a fixed
|
||||
* size array to work around the problem.
|
||||
*/
|
||||
#define YANG_MODULE_MAX_NODES 1400
|
||||
#define YANG_MODULE_MAX_NODES 2000
|
||||
|
||||
struct frr_yang_module_info {
|
||||
/* YANG module name. */
|
||||
|
@ -598,6 +598,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-multicast" {
|
||||
@ -626,6 +628,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-multicast" {
|
||||
@ -654,7 +658,9 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
}
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-labeled-unicast" {
|
||||
uses structure-neighbor-group-add-paths;
|
||||
@ -682,6 +688,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-labeled-unicast" {
|
||||
@ -710,6 +718,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv4-unicast" {
|
||||
@ -734,6 +744,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l3vpn-ipv6-unicast" {
|
||||
@ -758,6 +770,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/l2vpn-evpn" {
|
||||
@ -772,6 +786,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-route-server;
|
||||
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv4-flowspec" {
|
||||
@ -780,6 +796,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-route-server;
|
||||
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/neighbor/afi-safis/afi-safi/ipv6-flowspec" {
|
||||
@ -788,6 +806,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-route-server;
|
||||
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/unnumbered-neighbor/afi-safis/afi-safi/ipv4-unicast" {
|
||||
@ -855,6 +875,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/unnumbered-neighbor/afi-safis/afi-safi/ipv4-multicast" {
|
||||
@ -883,6 +905,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/unnumbered-neighbor/afi-safis/afi-safi/ipv6-multicast" {
|
||||
@ -911,6 +935,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/unnumbered-neighbor/afi-safis/afi-safi/ipv4-labeled-unicast" {
|
||||
@ -939,6 +965,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/unnumbered-neighbor/afi-safis/afi-safi/ipv6-labeled-unicast" {
|
||||
@ -1037,6 +1065,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-route-server;
|
||||
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/neighbors/unnumbered-neighbor/afi-safis/afi-safi/ipv6-flowspec" {
|
||||
@ -1045,6 +1075,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-route-server;
|
||||
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-unicast" {
|
||||
@ -1112,6 +1144,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-multicast" {
|
||||
@ -1140,6 +1174,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-multicast" {
|
||||
@ -1168,6 +1204,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv4-labeled-unicast" {
|
||||
@ -1196,6 +1234,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-labeled-unicast" {
|
||||
@ -1224,6 +1264,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv4-unicast" {
|
||||
@ -1248,6 +1290,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l3vpn-ipv6-unicast" {
|
||||
@ -1272,6 +1316,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-weight;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/l2vpn-evpn" {
|
||||
@ -1294,6 +1340,8 @@ module frr-bgp {
|
||||
uses structure-neighbor-route-server;
|
||||
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
|
||||
augment "/frr-rt:routing/frr-rt:control-plane-protocols/frr-rt:control-plane-protocol/bgp/peer-groups/peer-group/afi-safis/afi-safi/ipv6-flowspec" {
|
||||
@ -1302,5 +1350,7 @@ module frr-bgp {
|
||||
uses structure-neighbor-route-server;
|
||||
|
||||
uses structure-neighbor-group-soft-reconfiguration;
|
||||
|
||||
uses structure-neighbor-group-filter-config;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user