If the LDAP client uses a simple BIND operation, then a BIND DN must exist. A simple BIND operation takes at least a DN and a password as arguments.
Consider the following entries:
dn: cn=sample user,ou=people,dc=example,dc=com objectClass: top objectClass: inetOrgPerson cn: sample user uid: sampleuser
- this is not the same entry as:
dn: uid=sampleuser,ou=people,dc=example,dc=com objectClass: top objectClass: inetOrgPerson cn: sample user uid: sampleuser
although the attributes are identical (the SN that inetOrgPerson requires is not specified in this example). Th DN is the primary key and should be used with a simple BIND operation. The entries above are two complete separate entries with two different DNs.
Terry gardner
source share