added line space

This commit is contained in:
Cory Hawkless 2020-11-22 01:06:42 +10:30
parent a98693eca0
commit 105b835dd4
1 changed files with 2 additions and 1 deletions

View File

@ -102,9 +102,10 @@ router bgp {{host_ASN}}
exit-address-family
!
{% if host_loopback_IP is defined %}ip prefix-list AS{{host_ASN}}-OUT seq 5 permit {{host_loopback_IP}}/32{% endif %}
{% if networks_to_announce_ipv4 is defined and networks_to_announce_ipv4 != [] %}
{% for item in networks_to_announce_ipv4 %}
ip prefix-list AS{{host_ASN}}-OUT seq {{loop.index+5}} permit {{item}}/32
ip prefix-list AS{{host_ASN}}-OUT seq {{loop.index+5}} permit {{item}}/32
{% endfor %}
{% endif %}