23 lines
576 B
YAML
Executable file
23 lines
576 B
YAML
Executable file
#!/usr/bin/env ansible-playbook
|
|
---
|
|
# Deploy firewall and keepalived
|
|
# radvd: IPv6 SLAAC (/64 subnets, private IPs).
|
|
# Must NOT be on routeur-aurore-*, or will with DHCPv6!
|
|
- hosts: ~routeur-(pacaterie|edc|fleming|gs|rives).*\.adm\.auro\.re
|
|
vars:
|
|
update_motd:
|
|
unbound: Le routage (avec radvd) est déployé.
|
|
roles:
|
|
- router
|
|
- radvd
|
|
- update_motd
|
|
|
|
# No radvd here
|
|
- hosts: ~routeur-aurore.*\.adm\.auro\.re
|
|
vars:
|
|
update_motd:
|
|
unbound: Le routage (avec DHCPv6) est déployé.
|
|
roles:
|
|
- router
|
|
- ipv6_edge_router
|
|
- update_motd
|