You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
397 B

5 years ago
[Interface]
Address = {{ data.address }}
ListenPort = {{ data.listen_port }}
PrivateKey = {{ data.private_key }}
PostUp = {{ data.post_up }}
PostDown = {{ data.post_down }}
{% for peer in data.peers %}
[Peer]
# Client Name: {{ peer.name }}
PublicKey = {{ peer.public_key }}
{%- if peer.shared_key %}
PresharedKey = {{ peer.shared_key }}
{%- endif %}
5 years ago
AllowedIPs = {{ peer.address }}
{% endfor %}