summaryrefslogtreecommitdiff
path: root/roles/router/templates/tinc.conf.j2
blob: b7011e19e4e63653d79a86bc5a8655f1b4124c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
Name = {{ tinc.name }}
{% if tinc.listen_on is defined %}
AddressFamily = {{ tinc.listen_on }}
{% else %}
AddressFamily = ipv6
{% endif %}
Interface = tn_int
Mode = switch
{% for conn in tinc.connections %}
ConnectTo = {{ conn }}
{% endfor %}