You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
467 B
Django/Jinja
16 lines
467 B
Django/Jinja
[Interface]
|
|
ListenPort = {{ item.wireguard_mesh_port }}
|
|
PrivateKey = {{ item.wireguard_mesh_key }}
|
|
Address = {{ item.wireguard_mesh_address }}/48
|
|
MTU = 1400
|
|
PostUp = /etc/wireguard/up{{ item.name }}.sh
|
|
PreDown = /etc/wireguard/down{{ item.name }}.sh
|
|
|
|
{% for peer in item.wireguard_mesh_peers %}
|
|
[Peer]
|
|
PublicKey = {{ peer.key }}
|
|
AllowedIPs = {{ peer.address }}/128
|
|
Endpoint = [{{ peer.endpoint }}]:{{ item.wireguard_mesh_port }}
|
|
PersistentKeepalive = 30
|
|
{% endfor %}
|