-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bind via Kerberos #51
Comments
I'm referring to this documentation: It's about self-service-password application, but the source code is here. |
Yes, this is because $ldap_binddn and $ldap_bindpw are declared as default variables in config.inc.php:
We should indeed update the doc to explain how to nullify these variables. Thanks for the report. |
After verification, there is already a tip in ssp doc:
I'll add more details. |
The fix is insufficient, as when: $ldap_binddn = ""; the authentication is still tried with ldap bind. |
For me the correct setup was to put like this:
|
As stated in the documentation:
For Kerberos authentication (GSSAPI) comment out comment out $ldap_bind*
I think it should be more correct to put them as null, otherwise you do not enter in the correct if in the bind class (Ldap.php).
I'm testing it with docker and I have to put it like this:
$ldap_binddn = null; $ldap_bindpw = null;
The text was updated successfully, but these errors were encountered: