2022-08-31 01:46:11 +02:00
|
|
|
{{ ansible_managed | comment }}
|
|
|
|
|
|
|
|
{% for name, client in radiusd__clients.items() %}
|
|
|
|
client {{ name }} {
|
2022-09-01 17:35:22 +02:00
|
|
|
ipaddr = {{ client.addr }}
|
|
|
|
shortname = {{ name }}
|
2022-08-31 01:46:11 +02:00
|
|
|
proto = *
|
|
|
|
require_message_authenticator = yes
|
|
|
|
nastype = other
|
|
|
|
secret = {{ client.secret }}
|
2023-06-25 00:27:08 +02:00
|
|
|
{% if client.type is defined %}
|
|
|
|
{% if client.type == "aurore" %}
|
|
|
|
virtual_server = outer-aurore
|
|
|
|
{% endif %}
|
2022-08-31 01:46:11 +02:00
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
|
|
|
|
{% endfor %}
|