LDAP-wrapper connect freeradius
yuhongwei380 opened this issue · 6 comments
I saw the previous issue and would like to ask if I should treat ldap-wrapper as an OPENldap server. Then I go to freeradius and follow the configuration of the openldap server I am connected to? I have tried freeradius access but am having problems pulling up the authentication side.
I do not know freeradius at all. The error seems to say that the password attribute was not found. Can freeradius use the sambaNTPassword attribute?
Did you bind freeradius to the ldap wrapper with a binduser or one that actually exists? You need to use a binduser so it has permission to read the password attribute for all users.
freeradius can use the sambaNTPassword ,I will try do this later . thank you
binduser
binduser="admin-user | password " by this ?
Exactly. If the user is defined in the ldap-wrapper as follows:
LDAP_BINDUSER=admin-user|secret-password
You should be able to set it in freeradius like this:
ldap {
...
identity = 'uid=admin-user'
password = 'secret-password'
...