Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am really bad at understanding LDAP and I have not found a reliable source to learn what I need about it. I need now to authenticate users in joomla using an LDAP directory, and I am using JMapMyLDAP. In the configuration it asks me for a base DN and I am not sure what that is but in this case I have

ou=People,do=uniandes,do=edu,do=co

and then in filter, I would like to filter by Uid, I want to be able to map the users by Uid so that depending on their uid I can assign them the appropriate viewing and editing permissions and I am not quite sure how to do it so in filter I have

(&(uid=[username]))

Then in lookup type I have -forward- In lookup attribute I have -member- and in lookup member I have -Uid- and in DN attribute -distinguishedName-. Finally I have the mapping as myusername:group and when trying to log with my LDAP user I just cant log in. I don't know if I am doing something wrong or what may be happening. Any one has any idea? Any suggested reading?

share|improve this question

1 Answer

up vote 1 down vote accepted

What LDAP directory are you using. Your base DN of ou=People,do=uniandes,do=edu,do=co is almost certainly incorrect. The cn=, ou=, dc= part are well known naming attributes of objects. do= seems very unlikely.

If you are using Active Directory as your LDAP directory, the last part (Usually two) need to dc=.

Far more likely is ou=People,dc=uniandes,dc=edu unless the last bit about do=co means something in your context.

If you are using eDirectory as an LDAP directory, far more likely is: ou=People,ou=uniandes,o=edu

As for your filter of (&(uid=[username])) you can probably get by with just (uid=[username]) assuming the [username] is a Joomla macro for the username provided.

share|improve this answer
Thank you very much. I really don't know which LDAP is used here. I started working for a university in Colombia, hence the "co". Do you know a way to find out what kind of LDAP is being used? – Zloy Smiertniy Feb 20 at 19:50
@ZloySmiertniy Well, the do=co then makes sense in the second half. However, I cannot think of what do= could mean. Usually it is the naming attribute of an object class. I do not think those are localized. Can you ask the admins of the LDAP system what they are using? Social engineering and all that jazz. – geoffc Feb 21 at 3:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.