LDAP: Difference between revisions

From DWIKI
Line 13: Line 13:
*http://tuxick.net/ldap.html
*http://tuxick.net/ldap.html
*[http://thomas-howard.com/Reference/Articles/Apache+AD/ Apache Authentication with Active Directory]
*[http://thomas-howard.com/Reference/Articles/Apache+AD/ Apache Authentication with Active Directory]
*[http://www.gentoo.org/doc/en/ldap-howto.xml LDAP authentication on Gentoo (slightly outdated)
*[[LDAP Replication]]
*[[LDAP Replication]]



Revision as of 11:03, 24 July 2007

Lightweight Directory Access Protocol

In computer networking, the Lightweight Directory Access Protocol, or LDAP ("ell-dap"), is a networking protocol for querying and modifying directory services running over TCP/IP. An LDAP directory usually follows the X.500 model: it is a tree of entries, each of which consists of a set of named attributes with values. While some services use a more complicated "forest" model, the vast majority use a simple starting point for their database organization.

An LDAP directory often reflects various political, geographic, and/or organizational boundaries, depending on the model chosen. LDAP deployments today tend to use Domain Name System (DNS) names for structuring the most simple levels of the hierarchy. Further into the directory might appear entries representing people, organizational units, printers, documents, groups of people or anything else which represents a given tree entry, or multiple entries.

Its current version is LDAPv3. LDAPv3 is specified in a series of IETF Standard Track RFCs as detailed in RFC 4510.


Tutorials and docs

Tricks

ldapsearch -x -b -D "cn=admin,dc=example,dc=com" -b "dc=example,dc=com" "objectclass=*"

Links