I use openldap
with the following structure:
dc=example,dc=org
├── ou=groups
│ ├── cn=wheel
│ └── cn=adm
└── ou=users
├── uid=firstname.lastname
└── uid=firstname.lastname
Every setup of SSSD I found use the setting ldap_search_base
. But I have a simple structure and I would prefer to avoid to put an admin password in the config
file (or allow anonymous bind...).
Is there a setting similar to this:
ldap_direct_bind = "uid=%(user)s,ou=users,dc=example,dc=org"
Thanks for your help!