ansible/playbooks/radvd.yml

31 lines
593 B
YAML
Raw Normal View History

2022-09-02 17:14:31 +02:00
#!/usr/bin/env ansible-playbook
---
- hosts:
- isp-1.rtr.infra.auro.re
- isp-2.rtr.infra.auro.re
vars:
radvd__interfaces:
client-0:
prefix:
- 2a09:6841::/56
client-1:
prefix:
- 2a09:6841:0:100::/56
client-2:
prefix:
- 2a09:6841:0:200::/56
client-3:
prefix:
- 2a09:6841:0:300::/56
client-4:
prefix:
- 2a09:6841:0:400::/56
radvd__domain_search:
- isp.auro.re
- auro.re
radvd__dns_servers:
- 2a09:6840:128::127
roles:
- radvd
...