I’m trying to run an ldapsearch against my Domino directory and seeing some strange behavior when it comes to groups.
If I enter:
ldapsearch -h hostname -p port -l 30 -L -D “name” -w “password” -b “ou=group,o=kc,c=us” objectclass=groupofnames
I get ldap_search: matched :c=US
If I enter:
ldapsearch -h hostname -p port -l 30 -L -D “name” -w “password” -b “cn=ST_SUN_LDAP,ou=group,o=kc,c=us” objectclass=groupofnames
the entry is found and all the attributes are returned. It seems that I’m only able to search from the base c=US.
Any ideas what may cause this behavior?