2f32bd6c1e
- rewrite interface templates for batman, fastd, ffrl and meshbridge - add package ethtool to role server-basic - use more ipaddr filters and get rid of unneeded variables in dict ffrl_exit_server - change ffrl_public_ipv4_nat variable to ip/prefix format - update readme files
14 lines
401 B
YAML
14 lines
401 B
YAML
---
|
|
- name: create fastd mesh interfaces
|
|
template:
|
|
src: fastd-mesh.j2
|
|
dest: "/etc/network/interfaces.d/{{ item.key }}VPN"
|
|
notify: reload network interfaces
|
|
with_dict: "{{ meshes }}"
|
|
|
|
- name: create fastd intragate interfaces
|
|
template:
|
|
src: fastd-intragate.j2
|
|
dest: "/etc/network/interfaces.d/{{ item.key }}igVPN"
|
|
notify: reload network interfaces
|
|
with_dict: "{{ meshes }}"
|