ansible/playbooks/freeradius.yml

23 lines
438 B
YAML
Raw Normal View History

#!/usr/bin/env ansible-playbook
---
- hosts:
- radius-1.isp.infra.auro.re
vars:
2023-07-02 16:45:32 +02:00
radiusd__guest_vlan: 1000
radiusd__clients:
localhost:
addr: 127.0.0.1
secret: abcdef
2023-06-25 00:27:08 +02:00
type: aurore
wifi-ap-v4:
addr: 10.102.0.0/16
secret: abcdef
2023-06-25 00:27:08 +02:00
type: aurore
wifi-ap-v6:
addr: 2a09:6840:102::/56
secret: abcdef
2023-06-25 00:27:08 +02:00
type: aurore
roles:
- freeradius
...