2017-03-26 21:33:16 +02:00
|
|
|
# {{ ansible_managed }}
|
|
|
|
|
|
|
|
log to syslog level warn;
|
|
|
|
hide ip addresses yes;
|
2018-01-21 20:46:21 +01:00
|
|
|
status socket "/run/fastd-{{ site_code }}{{ item }}.sock";
|
2017-03-26 21:33:16 +02:00
|
|
|
|
2018-01-21 20:46:21 +01:00
|
|
|
interface "vpn-{{ site_code }}{{ item }}";
|
2017-03-26 21:33:16 +02:00
|
|
|
|
2018-01-14 23:13:34 +01:00
|
|
|
method "null";
|
2017-03-26 21:33:16 +02:00
|
|
|
method "salsa2012+umac";
|
|
|
|
method "xsalsa20-poly1305";
|
|
|
|
|
|
|
|
secure handshakes yes;
|
|
|
|
|
2018-01-21 20:46:21 +01:00
|
|
|
bind {{ fastd_bind }}:{{ fastd_port + item|int }};
|
2017-03-26 21:33:16 +02:00
|
|
|
|
|
|
|
include "secret.conf";
|
|
|
|
|
2018-01-23 23:56:25 +01:00
|
|
|
mtu {{ mtu }};
|
2017-03-26 21:33:16 +02:00
|
|
|
|
|
|
|
{% if fastd_peers_limit > -1 %}
|
|
|
|
peer limit {{ fastd_peers_limit }};
|
|
|
|
{% endif %}
|
|
|
|
|
2017-03-30 17:17:19 +02:00
|
|
|
on up "
|
|
|
|
ifconfig $INTERFACE down
|
2018-01-21 20:46:21 +01:00
|
|
|
ip link set address f2:00:90:00:{{ gateway_id }}:{{ 10 + item|int }} dev $INTERFACE
|
2017-03-30 17:17:19 +02:00
|
|
|
ifconfig $INTERFACE up
|
|
|
|
|
|
|
|
batctl -m {{ batman_interface }} if add $INTERFACE
|
|
|
|
";
|
|
|
|
|
|
|
|
on down "
|
|
|
|
batctl -m {{ batman_interface }} if del $INTERFACE
|
|
|
|
";
|
2017-03-26 21:33:16 +02:00
|
|
|
|
|
|
|
{% if fastd_anonymous %}
|
|
|
|
on verify "/etc/fastd/{{ site_code }}/blacklist.sh /opt/{{ site_code }}/vpn-blacklist/blacklist.json";
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
include peers from "peers";
|