13 lines
545 B
Text
13 lines
545 B
Text
|
[Interface]
|
||
|
Address = {{ address }}
|
||
|
PrivateKey = {{ privatekey }}
|
||
|
ListenPort = {{ listenport }}
|
||
|
PostUp = iptables -t nat -A POSTROUTING -o {{ public_interface }} -j MASQUERADE; ip6tables -t nat -A POSTROUTING -o {{ public_interface }} -j MASQUERADE
|
||
|
PostDown = iptables -t nat -D POSTROUTING -o {{ public_interface }} -j MASQUERADE; ip6tables -t nat -D POSTROUTING -o {{ public_interface }} -j MASQUERADE
|
||
|
{% for item in clients %}
|
||
|
|
||
|
# Client: {{ item.name }}
|
||
|
[Peer]
|
||
|
PublicKey = {{ item.PublicKey }}
|
||
|
AllowedIPs = {{ item.AllowedIPs }}
|
||
|
{% endfor %}
|