what are aliases in ldap
Asked Answered
P

1

7

What are aliases in ldap (referenced for example here php.net/ldap) Are they pointers to other objects in the system not directly under the object where the alias is found?

Polygamy answered 24/2, 2010 at 21:13 Comment(2)
LDAP explanations belong to serverfault IMOBilow
It is exactly like asking what are aliases in sql...ldap is the language/protocol not a server.Polygamy
B
3

There are two concepts - referrals and aliases. An alias contains the DN of another object, whereas a referral contains one or more URLs of objects. The URLs are usually, but not necessarily, LDAP URLs. The LDAP URL contains the server's host/port and an object's DN. The host/port information can point to a directory server that differs from the one that returned the referral.

An alias is dereferenced and processed by the server, whereas a referral is returned to the client, which is responsible for processing it.

Benniebenning answered 24/2, 2010 at 23:25 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.