94cb21daad
- Update Readme - Update ansible.cfg - Add playbook to set up gateways - Add group variables
10 lines
417 B
Django/Jinja
10 lines
417 B
Django/Jinja
{% set ip4hex = item.value.ipv4_network | ipaddr('net') | ipaddr(magic) | ipaddr('address') | ip4_hex() -%}
|
|
{% set mac = '0211' + ip4hex -%}
|
|
#
|
|
# {{ ansible_managed }}
|
|
#
|
|
allow-hotplug {{ item.key }}VPN
|
|
iface {{ item.key }}VPN inet manual
|
|
pre-up /sbin/ip link set address {{ mac | hwaddr('linux') }} dev $IFACE
|
|
post-up /sbin/ip link set dev $IFACE up
|
|
post-up /sbin/ip link set dev $IFACE master {{ item.key }}BAT
|