Skip to content
Snippets Groups Projects
Commit d0a32ec5 authored by Lars Seipel's avatar Lars Seipel
Browse files

allow setting additional loopback addresses

parent e7098c31
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,12 @@ interface lo
{% if frrlite_loopback_ip6|default(False) %}
ipv6 address {{ frrlite_loopback_ip6 }}
{% endif %}
{% for ip in frrlite_extra_loopback_ip4s|default([]) %}
ip address {{ ip }}
{% endfor %}
{% for ip in frrlite_extra_loopback_ip6s|default([]) %}
ipv6 address {{ ip }}
{% endfor %}
!
{% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment