dashboardwireguardwg-managervpnsite-to-siteobfuscationwireguard-vpn-setupwireguard-vpnwireguard-tunnelwireguard-dashboard
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.
17 lines
397 B
17 lines
397 B
[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 %}
|
|
AllowedIPs = {{ peer.address }}
|
|
{% endfor %}
|
|
|