LDAP clients can use ANR to make searching and querying easier. Rather than presenting complex filters, a search can be presented for partial matches. If a space is embedded in the search string, as in the case above, the search is divided at the space and an "or" search is also performed on the attributes. If there is more than one space, the search divides only at the first space.
By default, the following attributes are set for ANR:
- GivenName
- Surname
- displayName
- LegacyExchangeDN
- msExchMailNickname
- RDN
- physicalDeliveryOfficeName
- proxyAddress
- sAMAccountName
Sample ANR Search Using the Address Book
Assume that there are three users named John Doe, John Does, and John Buck, and a search for "John Doe" is performed. The following actions result:
- The client presents an "anr=John Doe" request to Active Directory (Address Book generates an ANR search). ANR must be enabled on the LDAP server. Active Directory supports ANR by default. ANR is a filter rewrite on the server.
- Active Directory notices the "anr" and the embedded space.
- Active Directory checks the schema to determine which objects have ANR and SEARCH index bits set.
- Active Directory performs an "or" search for "John Doe*" against the default attributes listed above.
- Active Directory then searches for: Given-Name=John* AND Surname=Doe*
- Active Directory then searches for: Given-Name=Doe* AND Surname=John*
The search results are returned to the client with matches for John Doe:
- Compared to: John Doe
Search Results: Match
Results Explanation: "John Doe*" matches displayName from step 4 - Compared to: John Does
Search Results: Match
Results Explanation: "John*" AND "Doe*" matches Given-Name=John* AND Surname=Smith* from step 5 - Compared to: John Buck
Search Results: No match
Results Explanation: "John Doe*" does not match the displayName
"John*" AND "Doe*" does not match the Given-Name and Surname of John Buck
"John*" AND "Doe*" does not match the Surname and Given-Name of John Buck