On Tue, May 13, 2003 at 04:38:00PM +0200, Bill Allombert wrote: > Hello, > > ldapsearch does not work for me anymore with db.debian.org: > (both woody and sid version) > > $ cat ~/.ldaprc > HOST db.debian.org > BASE dc=debian,dc=org > > $ ldapsearch uid=ballombe > ldap_sasl_interactive_bind_s: No such object > > Is it a know problem or I am just doing something stupid ? >
Add -x to avoid sasl authentication and add -P2 to specify protocol 2 instead of default (3) which doesn't seems to be supported by debian server. So: ldapsearch -x -P2 uid=ballombe (tested under woody and sid) -- Emmanuel LACOUR - [EMAIL PROTECTED] http://manu.home-dn.net/ http://www.home-dn.net/

