We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1be1c46 commit c52e876Copy full SHA for c52e876
dockers/docker-fpm-quagga/bgpd.conf.j2
@@ -46,7 +46,13 @@ router bgp {{ DEVICE_METADATA['localhost']['bgp_asn'] }}
46
{% endif %}
47
{% block vlan_advertisement %}
48
{% for vlan_interface in minigraph_vlan_interfaces %}
49
+{% if vlan_interface['addr'] | ipv4 %}
50
network {{ vlan_interface['subnet'] }}
51
+{% elif vlan_interface['addr'] | ipv6 %}
52
+ address-family ipv6
53
+ network {{ vlan_interface['subnet'] }}
54
+ exit-address-family
55
+{% endif %}
56
{% endfor %}
57
{% endblock vlan_advertisement %}
58
{% block bgp_sessions %}
0 commit comments