java - what is userDn and base in LDAP terminology -
i want authenticate user in ldap
using spring in java. found configuration of ldap
spring, need urls, userdn, password & base values shown below:
urls=ldap://127.0.0.1:389 userdn=cn=directory manager password=abcd base=dc=example,dc=com
my question is, userdn , base? these signifies? , userdn value need specify in configuration??
the base object
point in directory information tree (dit) @ search should begin constructing candidates entries return in search result. scope
of search search determine depth of tree follows:
- subtree scope: base object , al entries subordinate base object
- one: objects subordinate base object, not including base object.
- base: base object. base level search should used when distinguished name known.
the userdn
in case appears distinguished name of user authenticate directory using bind request.
Comments
Post a Comment