added toggle to no_log
This commit is contained in:
parent
bab2e6d934
commit
8eedcebe0f
2 changed files with 9 additions and 8 deletions
|
@ -31,22 +31,23 @@ vpn_interfaces:
|
|||
public_key: "Ce48/ZdvpI2S82bIivhiWHQsyidzTAtxCnEYojY3xEA="
|
||||
keepalive: false
|
||||
peers:
|
||||
- endpoint: ""
|
||||
public_key: "jvjOCj5xVTLwyQ8o7QsYvF2ep1HbD/GKnmjpqJuztB8="
|
||||
- public_key: "jvjOCj5xVTLwyQ8o7QsYvF2ep1HbD/GKnmjpqJuztB8="
|
||||
allowed_ips:
|
||||
- "{{ intranet.subnets.physical.subnets.router_hellman.ipv4 }}/{{ intranet.subnets.physical.subnets.router_hellman.netmaskv4 }}"
|
||||
- "{{ intranet.subnets.guest_hellman.ipv4 }}/{{ intranet.subnets.guest_hellman.netmaskv4 }}"
|
||||
comment: "Router hosted on Hellman"
|
||||
- endpoint: ""
|
||||
public_key: "{{ vpn_guest_keys.knuth }}"
|
||||
- public_key: "{{ vpn_guest_keys.knuth }}"
|
||||
allowed_ips:
|
||||
- "{{ intranet.subnets.guest.subnets.knuth.ipv4 }}/{{ intranet.subnets.guest.subnets.knuth.netmaskv4 }}"
|
||||
comment: "Client laptop: knuth"
|
||||
- endpoint: ""
|
||||
public_key: "{{ hostvars['matrix_server'].vpn_interfaces.wg0.public_key }}"
|
||||
- public_key: "{{ hostvars['sulfur'].vpn_interfaces.wg0.public_key }}"
|
||||
allowed_ips:
|
||||
- "{{ hostvars['matrix_server'].vpn_interfaces.wg0.ip }}/32"
|
||||
- "{{ hostvars['sulfur'].vpn_interfaces.wg0.ip }}/32"
|
||||
comment: "matrix VM, hosted on g33kex's server"
|
||||
- public_key: "{{ hostvars['technetium'].vpn_interfaces.wg0.ip }}/32"
|
||||
allowed_ips:
|
||||
- "{{ hostvars['technetium'].vpn_interfaces.wg0.ip }}/32"
|
||||
comment: "test VM"
|
||||
|
||||
# apt proxy
|
||||
proxy_apt_interfaces:
|
||||
|
|
|
@ -9,7 +9,7 @@ ListenPort = {{ vpn_port }}
|
|||
[Peer]
|
||||
{{ peer.comment | comment }}
|
||||
Publickey = {{ peer.public_key }}
|
||||
{% if peer.endpoint %}
|
||||
{% if peer.endpoint is defined %}
|
||||
Endpoint = {{ peer.endpoint }}:{{ vpn_port }}
|
||||
{% endif %}
|
||||
AllowedIPs = {{ peer.allowed_ips | join(", ") }}
|
||||
|
|
Loading…
Reference in a new issue