aboutsummaryrefslogtreecommitdiff
path: root/roles/freeradius/templates/ldap.j2
blob: d7e10da0d29c5993b76ab9e6d26d2c3e91ec7046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# vi: ft=conf
# This file is managed by Ansible. Manual changes will be reverted.

ldap {
        server   = "{{ radius.ldap.server }}"
        identity = "{{ radius.ldap.bind_user }}"
        password = "{{ radius.ldap.bind_pwd }}"
        user {
                base_dn  = "{{ radius.ldap.user_base }}"
                filter   = "{{ radius.ldap.user_filter }}"
        }
        sasl {
                # This block needs to exist, but can be empty.
                # SASL mechanism
                #mech = 'PLAIN'
        }
        update {
                control:Password-With-Header    += 'userPassword'
        }
}