fc6a062559
newer versions of ifupdown2 try to set the addrgen mode for interfaces using inet6 but it seems that wireguard interfaces do not support this. This causes a "ip link set dev <iface> down" command during every execution of ifreload as the default mode eui6 does not mach the mode set on the interface which is none.
20 lines
643 B
Django/Jinja
20 lines
643 B
Django/Jinja
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
{% for network in my_wireguard_networks %}
|
|
auto wg-{{ network.remote[:11] }}
|
|
iface wg-{{ network.remote[:11] }}
|
|
ipv6-addrgen off
|
|
{% if magic < network.remote_magic %}
|
|
address {{ network.ipv4 | ipaddr('ip/prefix') }}
|
|
address {{ network.ipv6 | ipaddr('ip/prefix') }}
|
|
{% else %}
|
|
address {{ network.ipv4 | ipaddr('1') | ipaddr('ip/prefix') }}
|
|
address {{ network.ipv6 | ipaddr('1') | ipaddr('ip/prefix') }}
|
|
{% endif %}
|
|
pre-up ip link add dev $IFACE type wireguard
|
|
pre-up wg setconf $IFACE /etc/wireguard/$IFACE.conf
|
|
post-up ip link set up dev $IFACE
|
|
post-down ip link del $IFACE
|
|
|
|
{% endfor %}
|