From: Graham Leggett
An Active Directory installation may support multiple domains at the + same time. To distinguish users between domains, an identifier called + a User Principle Name (UPN) can be added to a user's entry in the + directory. This UPN usually takes the form of the user's account + name, followed by the domain components of the particular domain, + for example somebody@nz.somedomain.com.
+ +You may wish to configure the
To make this practical, Active Directory supports the concept of + a Global Catalog. This Global Catalog is a read only copy of selected + attributes of all the Active Directory servers within the Active + Directory forest. Querying the Global Catalog allows all the domains + to be queried in a single query, without the query spanning servers + over potentially slow links.
+ +If enabled, the Global Catalog is an independent directory server + that runs on port 3268 (3269 for SSL). To search for a user, do a + subtree search for the attribute userPrincipalName, with + an empty search root, like so:
+ ++AuthLDAPBindDN apache@somedomain.com +AuthLDAPBindPassword password +AuthLDAPURL ldap://10.0.0.1:3268/>userPrincipalName?sub +
Users will need to enter their User Principal Name as a login, in + the form somebody@nz.somedomain.com.
+ +