ansible/host_vars/vpn-ovh-ng.auro.re.yml
jeltz 592d3a630a
Some checks failed
continuous-integration/drone/push Build is failing
Create role for nftables router
2021-03-10 03:17:35 +01:00

38 lines
787 B
YAML

---
wireguard_endpoints:
- name: gs
addr: 192.168.0.1/31
listen_port: 5412
private_key: "{{ vault_wireguard_secrets.ovh_gs.private }}"
peer:
public_key: "{{ vault_wireguard_secrets.gs.public }}"
allowed_addrs:
- 0.0.0.0/0
- ::/0
keepalive: 5
- name: edc
addr: 192.168.0.3/31
listen_port: 5413
private_key: "{{ vault_wireguard_secrets.ovh_edc.private }}"
peer:
public_key: "{{ vault_wireguard_secrets.edc.public }}"
allowed_addrs:
- 0.0.0.0/0
- ::/0
keepalive: 5
bird_router_id: 10.132.0.254
bird_router_prefsrc: 10.132.0.254
bird_ospf_ifaces:
ens19:
stub: true
ens20:
stub: true
gs:
type: pointopoint
cost: 2000
edc:
type: pointopoint
cost: 4000
...