f81bbfed65
`pre-up` doesn't work properly as it is called before the bridge is created. Initializing the bridge via `up` in the batman mesh interface seems to be a better solution.
16 lines
999 B
Django/Jinja
16 lines
999 B
Django/Jinja
#jinja2: trim_blocks:False
|
|
{% set ip4hex = item.ipv4_network | ipaddr('net') | ipaddr(magic) | ipaddr('address') | ip4_hex() -%}
|
|
{% set mac = '0201' + ip4hex -%}
|
|
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
auto {{ item.id }}bat
|
|
iface {{ item.id }}bat
|
|
hwaddress {{ mac | hwaddr('linux') }}
|
|
batman-ifaces {{ item.id }}0 {% for instance in item.fastd.nodes.instances %}{{ item.id }}vpn-{{ instance.mtu }}{% if not loop.last %} {% endif %}{% endfor %} {% for instance in item.fastd.intragate.instances %}{{ item.id }}igvpn-{{ instance.mtu }}{% if not loop.last %} {% endif %}{% endfor %}
|
|
batman-hop-penalty {{ item.batman.hop_penalty }}
|
|
up /sbin/ip link add name {{ item.id }}br type bridge # workaround to properly set hwaddress on {{ item.id }}br
|
|
post-up /usr/sbin/batctl -m $IFACE it {{ item.batman.it }}
|
|
post-up /usr/sbin/batctl -m $IFACE gw {{ item.batman.gw }}
|
|
post-up /usr/sbin/batctl -m $IFACE mm {{ item.batman.mm }}
|
|
post-up /usr/sbin/batctl -m $IFACE dat {{ item.batman.dat }}
|