We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9709b4 commit 60e9114Copy full SHA for 60e9114
ansible/roles/eos/templates/t0-leaf.j2
@@ -106,7 +106,10 @@ router bgp {{ host['bgp']['asn'] }}
106
{% for remote_ip in remote_ips %}
107
neighbor {{ remote_ip }} remote-as {{ asn }}
108
neighbor {{ remote_ip }} description {{ asn }}
109
- neighbor {{ remote_ip }} next-hop-self
+{# set LT2/FT2 as reflector to advertise route to DUT #}
110
+{% if props.swrole is defined and props.swrole in ("lowerspine", "fabricspine") %}
111
+ neighbor {{ remote_ip }} route-reflector-client
112
+{% endif %}
113
{% if remote_ip | ipv6 %}
114
address-family ipv6
115
neighbor {{ remote_ip }} activate
0 commit comments