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.
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.
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
© 2022 - 2024 — McMap. All rights reserved.
SASL
? In not use-x
to use simple authentication. – Titanomachy