Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pimd: MSDP SA filtering support #12484

Merged
merged 4 commits into from
Jul 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
yang: MSDP SA filtering support
Add option to configure MSDP peer SA incoming/outgoing filtering.

Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
  • Loading branch information
rzalamena committed Jul 27, 2024
commit bfae003b62a9dde706ab55250ebda7ea3cb1e676
16 changes: 16 additions & 0 deletions yang/frr-pim.yang
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ module frr-pim {

prefix frr-pim;

import frr-filter {
prefix frr-filter;
}

import frr-interface {
prefix frr-interface;
}
Expand Down Expand Up @@ -267,6 +271,18 @@ module frr-pim {
description
"MSDP source IP address.";
}

leaf sa-filter-in {
type frr-filter:access-list-name;
description
"Access list name used to filter the incoming SAs exchanged.";
}

leaf sa-filter-out {
type frr-filter:access-list-name;
description
"Access list name used to filter the outgoing SAs exchanged.";
}
}

container mlag {
Expand Down