This commit is contained in:
vagrant 2020-08-26 04:40:12 +00:00
parent 9454e036cb
commit fba4f61933
1 changed files with 4 additions and 2 deletions

View File

@ -48,7 +48,9 @@ router bgp {{host_ASN}}
network {{host_loopback_IP}}/32 network {{host_loopback_IP}}/32
{% endif %} {% endif %}
{% if networks_to_announce_ipv4 is defined and networks_to_announce_ipv4 != [] %} {% if networks_to_announce_ipv4 is defined and networks_to_announce_ipv4 != [] %}
network {{networks_to_announce_ipv4}} {% for item in networks_to_announce_ipv4 %}
network {{item}}
{% endfor %}
{% endif %} {% endif %}
{% if autobgp_interfaces is defined and autobgp_interfaces != [] %} {% if autobgp_interfaces is defined and autobgp_interfaces != [] %}
neighbor fabric activate neighbor fabric activate
@ -56,7 +58,7 @@ router bgp {{host_ASN}}
{% endif %} {% endif %}
{% if frr_other_peers is defined and frr_other_peers != [] %} {% if frr_other_peers is defined and frr_other_peers != [] %}
{% for item in frr_other_peers %} {% for item in frr_other_peers %}
neighbor {{ item['ip'] }} remote-as {{ item['remote_ASN'] }} prefix-list AS{{host_ASN}}-OUT out neighbor {{ item['ip'] }} remote-as {{ item['remote_ASN'] }} prefix-list AS{{host_ASN}}-OUT out
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% if addressed_interfaces is defined and addressed_interfaces != [] %} {% if addressed_interfaces is defined and addressed_interfaces != [] %}