2022-01-03 10:33:02 +00:00
|
|
|
[Interface]
|
2023-04-24 07:48:04 +00:00
|
|
|
# {{ timestamp }} {{ current_user['username'] }} {{ name }}
|
2022-01-03 10:33:02 +00:00
|
|
|
# PublicKey = {{ pubkey }}
|
|
|
|
PrivateKey = # paste private key here
|
|
|
|
Address = {{ ip }}
|
2023-09-15 11:59:04 +00:00
|
|
|
{%- if dns %}
|
|
|
|
DNS = {{ dns }}
|
|
|
|
{%- endif %}
|
2022-01-03 10:33:02 +00:00
|
|
|
|
|
|
|
[Peer]
|
|
|
|
Endpoint = {{ server }}:{{ port }}
|
|
|
|
PublicKey = {{ server_key }}
|
|
|
|
PersistentKeepalive = 25
|
2023-09-15 11:59:04 +00:00
|
|
|
{%- for net in allowed_nets.split() %}
|
|
|
|
AllowedIPs = {{ net }}
|
|
|
|
{%- endfor %}
|
2023-04-06 08:19:35 +00:00
|
|
|
{% if add_default -%}
|
|
|
|
AllowedIPs = 0.0.0.0/0
|
2022-01-03 10:33:02 +00:00
|
|
|
{%- endif %}
|