wireguard: support 'Table' and 'PersistentKeepalive'
This commit is contained in:
parent
0addb1e6a0
commit
7ca9b6dc8c
@ -15,6 +15,9 @@ Address = {{ address }}
|
||||
{% if "listen_port" in i %}
|
||||
ListenPort = {{ i.listen_port }}
|
||||
{% endif %}
|
||||
{% if "table" in i %}
|
||||
Table = {{ i.table }}
|
||||
{% endif %}
|
||||
{% endmacro -%}
|
||||
|
||||
{%- macro render_peer(p) %}
|
||||
@ -35,6 +38,12 @@ AllowedIPs = {{ p.allowed_ips }}
|
||||
AllowedIPs = {{ p.allowed_ips | join(', ') }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if "preshared_key" in p %}
|
||||
PresharedKey = {{ p.preshared_key }}
|
||||
{% endif %}
|
||||
{% if "persistent_keepalive" in p %}
|
||||
PersistentKeepalive = {{ p.persistent_keepalive }}
|
||||
{% endif %}
|
||||
{% endmacro -%}
|
||||
|
||||
{% if wireguard_interfaces[_wireguard_interface] and
|
||||
|
Loading…
Reference in New Issue
Block a user