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

Fix(eos_cli_config_gen): Fix MSDP template typo for sa_filter.out_list #4161

Merged
merged 2 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ router msdp
local-interface Loopback13
keepalive 5 15
sa-filter in list ACL3
sa-filter out list ACL3
sa-filter out list ACL4
description Some other kind of MSDP Peer
sa-limit 100
```
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ router msdp
local-interface Loopback13
keepalive 5 15
sa-filter in list ACL3
sa-filter out list ACL3
sa-filter out list ACL4
description Some other kind of MSDP Peer
sa-limit 100
!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ router msdp
sa-filter in list {{ peer.sa_filter.in_list }}
{% endif %}
{% if peer.sa_filter.out_list is arista.avd.defined %}
sa-filter out list {{ peer.sa_filter.in_list }}
sa-filter out list {{ peer.sa_filter.out_list }}
{% endif %}
{% if peer.description is arista.avd.defined %}
description {{ peer.description }}
Expand Down
Loading