First time here? Check out the FAQ!
0

How te set up ldap auth

Hello, I tried several solutions but no one helped me. I installed python-ldap module, and changed settings/LDAP_SETTINGS settings in the next way

LDAP protocol version  = version 3
LDAP URL = ldap://10.100.2.148:389
LDAP encoding = utf-8
Base DN (distinguished name) = DC=example,DC=com
User search filter template = (%s=%s)
UserID/login field = sAMAccountName
"Common Name" = blank
"Common Name" field format = First name, Last name
Given (First) name = givenName
Surname (last) name = sn
LDAP Server EMAIL field name = mail

I also added to the settings.py :
LDAP_LOGIN_DN = 'askbot'
LDAP_PASSWORD = 'My_secure_password'

But ldap authentications is not working. I tryed to find "askbot.deps.django_authopenid.backends.ldap_authenticate" function to insert a break point, but I haven't found it.

Version of askbot = 0.7.50 Can someone show correct settings for ldap?

updated 2015-02-05 09:34:52 -0500
This post is a wiki. Anyone with karma >100 is welcome to improve it.
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

LDAP_LOGIN_DN is a guess DomainName but i put ldap_username there
LDAP_USER your ldap_username
LDAP_PASSWORD your ldap_password

I think you are missing CN in BaseDN as the users are not in the root of domain so the line would be:
Base DN (distinguished name) = CN=users, DC=example,DC=com
Common Name = CN as its default i'm not sure if you have to fill this in

miktil's avatar
33
miktil
answered 2015-02-18 03:32:27 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments