LDAP AXIS 70U/7000 User’s Manual138Note:Note:Example Searches Here are some advanced search examples:LDAP Test ToolsThe built in, HTML-based LDAP Test Tools can be used forvalidating the settings. Using these tools, the administrator canverify that the Document Server’s LDAP settings are correct beforesetting up the whole environment.Start the Web browser and enter the name or IP address of theDocument Server on the location/address line. The test tools areavailable under admin > Support.It is wise to create filters that sort out unwanted entries based on their object class.For example, in an address book, you might only want to retrieve entries of the“people” class, with the common name “John”, leaving out computers called John.This could be achieved with the following filter: (&(objectclass=person)(cn=john))The way you construct your filter will have a large impact on how fast the search isconducted. If you create a filter involving structures that the directory server can notevaluate efficiently, performance is likely to suffer. Apart from being familiar with theadministrator and/or the inner workings of the server itself, only trial and error cantell you whether your filter is working efficiently or not.Searched Filter to useAll persons in Sweden. (&(objectclass=person)(c=SE))All entries at Axis independent of country,except the ones called Smith.(&(o=axis)(!(sn=smith)))All persons at Axis Marketing in Sweden. (&(objectclass=person)(c=SE)(o=axis)(ou=marketing))All persons with a common name contain-ing “bert” at Axis Marketing or Sales.(&(objectclass=person)(cn=*bert*)(|(ou=marketing)(ou=sales)))All Axis e-mail addresses in USA and Swe-den (but not e.g. France).(o=AXIS,ou=USA)(o=AXIS,ou=Sweden)