mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-07 22:29:23 +00:00
yang: rework PIM MSDP mesh group
Allow PIM MSDP configuration to support multiple MSDP mesh groups per PIM instance. Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
This commit is contained in:
parent
c20270787c
commit
0213a65800
@ -174,26 +174,36 @@ module frr-pim {
|
|||||||
"Enable ssmpingd operation.";
|
"Enable ssmpingd operation.";
|
||||||
}
|
}
|
||||||
|
|
||||||
container msdp-mesh-group {
|
list msdp-mesh-groups {
|
||||||
presence
|
key "name";
|
||||||
"Configure MSDP mesh-group.";
|
description
|
||||||
|
"RFC 3618 Section 10.2. MSDP mesh-group semantics
|
||||||
|
|
||||||
leaf mesh-group-name {
|
Groups multiple MSDP peers to reduce SA flooding typically used
|
||||||
type string;
|
in intra-domain settings.";
|
||||||
|
|
||||||
|
leaf name {
|
||||||
|
type string {
|
||||||
|
length 1..64;
|
||||||
|
}
|
||||||
description
|
description
|
||||||
"MSDP mesh group name.";
|
"The mesh group name.";
|
||||||
}
|
}
|
||||||
|
|
||||||
leaf-list member-ip {
|
leaf source {
|
||||||
type inet:ip-address;
|
type inet:ip-address;
|
||||||
description
|
description
|
||||||
"Peer ip address.";
|
"Source IP address for the TCP connections.";
|
||||||
}
|
}
|
||||||
|
|
||||||
leaf source-ip {
|
list members {
|
||||||
type inet:ip-address;
|
key "address";
|
||||||
description
|
|
||||||
"Source ip address for the TCP connection.";
|
leaf address {
|
||||||
|
type inet:ip-address;
|
||||||
|
description
|
||||||
|
"Peer member IP address.";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user