Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ldap_sasl_interactive_bind_s: No such attribute (16)

I am getting the error while running ldapsearch command and client side authentication also not coming.

Could anyone please help me to sort out the problem ?

ERROR MESSAGE

ldap_sasl_interactive_bind_s: No such attribute (16)

Thanks.

like image 794
Thirumoorthi Avatar asked Aug 05 '14 07:08

Thirumoorthi


1 Answers

The -x switch uses simple authentication instead of of the default SASL. So use something like this:

ldapsearch -x -h 192.268.0.78 -p 389 cn=root,ou=People,dc=example,dc=com

like image 101
Shantanu Avatar answered Sep 22 '22 15:09

Shantanu