59045bc400
With newer versions of ifupdown2 it is necessary to enable IPv4/6 forwarding explicitly on required interfaces.
23 lines
783 B
Django/Jinja
23 lines
783 B
Django/Jinja
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
|
|
auto {{ item.id }}br
|
|
iface {{ item.id }}br
|
|
address {{ item.ipv4_network | ipaddr('net') | ipaddr(magic) | ipaddr('ip/prefix') }}
|
|
{% for prefix in item.ipv6_ula %}
|
|
address {{ prefix | ipaddr('net') | ipsubnet(64, 0) | ipaddr(magic) | ipaddr('ip/prefix') }}
|
|
{% endfor %}
|
|
{% for prefix in item.ipv6_public %}
|
|
address {{ prefix | ipaddr('net') | ipsubnet(64, 0) | ipaddr(magic) | ipaddr('ip/prefix') }}
|
|
{% endfor %}
|
|
{% if mesh_gw_prefixes is defined %}
|
|
{% for prefix in mesh_gw_prefixes[item.id].ipv6_public %}
|
|
address {{ prefix | ipaddr('net') | ipsubnet(64, 0) | ipaddr(1) | ipaddr('ip/prefix') }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
bridge-ports {{ item.id }}bat
|
|
{% if server_type == 'gateway' %}
|
|
ip-forward on
|
|
ip6-forward on
|
|
{% endif %}
|