Hiho,
I’m trying to get LDAP authc running in k8s (App Version 1.3.1, Chart 1.10.0) but end up with a 401/unauthorized and no useful error/info in the logs even with debug enabled (basic auth with internal user database is working).
I’ve read a lot of ldap topics here and tried serveral modifications but nothing seems to work.
Even if I set wrong values and only enable ldap authc I can’t squeeze a single error line out of opensearch, it looks to me as it is just ignoring the settings altough they are visible in Dashboards (which sends back the 401 status code and {“type”:“log”,“@timestamp”:“2022-04-22T17:54:03Z”,“tags”:[“error”,“plugins”,“securityDashboards”],“pid”:1,“message”:“Failed authentication: Error: Authentication Exception”}).
My current setup is:
_meta:
type: "config"
config_version: 2
config:
dynamic:
http:
anonymous_auth_enabled: false
xff:
enabled: false
authc:
basic_internal_auth_domain:
description: "Authenticate via HTTP Basic against internal users database"
http_enabled: true
transport_enabled: true
order: 0
http_authenticator:
type: basic
challenge: true
authentication_backend:
type: intern
ldap:
description: "Authenticate via LDAP or Active Directory"
http_enabled: true
transport_enabled: true
order: 1
http_authenticator:
type: basic
challenge: false
authentication_backend:
type: ldap
config:
enable_ssl: true
enable_start_tls: false
enable_ssl_client_auth: false
verify_hostnames: true
hosts:
- my-ldap-ad:636
bind_dn: cn=opensearch,ou=appuser,dc=mydc,dc=mydc2,dc=mydc3
password: mypasswd
userbase: ou=user,dc=mydc,dc=mydc2,dc=mydc3
usersearch: '(sAMAccountName={0})'
username_attribute: "sAMAccountName"
The bind_dn and PW is tested and OK → ldapsearch login successfull, curl can connect to the ldap server in the opensearch container and also on the host machine, the crendentials are working in another SW using the same ldap config.
curl --insecure -u admin -XGET https://localhost:9200/_opendistro/_security/authinfo?pretty is giving me correct values, with an ldap user I just receive 401 and I only can see the handshake in opensearch log.
With docker-compose setup I’m facing the same issues (gave it a shot with simple settings but same ldap conf).
Well is there any setting for Dashboards to get more logs (I’m already using logging.verbose: true) or does anyone have a suggestion for what I can look for?
Atm I’m pretty clueless
regards