Skip to content
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
4 changes: 4 additions & 0 deletions ansible/roles/eos/templates/t0-leaf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ router bgp {{ host['bgp']['asn'] }}
{% for remote_ip in remote_ips %}
neighbor {{ remote_ip }} remote-as {{ asn }}
neighbor {{ remote_ip }} description {{ asn }}
{# set LT2/FT2 as reflector to advertise route to DUT #}
{% if props.swrole is defined and props.swrole in ("lowerspine", "fabricspine") %}
neighbor {{ remote_ip }} route-reflector-client
{% endif %}
{% if remote_ip | ipv6 %}
address-family ipv6
neighbor {{ remote_ip }} activate
Expand Down