I'm trying to connect in LDAP with php-ldap. I got a issue using ldap_bind()
:
$username = 'josue.ruiz';
$password = 'pass';
$ldapconfig['host'] = '10.10.10.11';
$ldapconfig['port'] = 389;
$ldapconfig['basedn'] = 'dc=domain,dc=com';
$ds=ldap_connect($ldapconfig['host'], $ldapconfig['port']);
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ds, LDAP_OPT_REFERRALS, 0);
$dn="cn=".$username.",ou=Technology,".$ldapconfig['basedn'];
if ($bind=ldap_bind($ds, $dn, $password)) {
echo("Login correct");
} else {
echo("Login incorrect");
}
I get this message:
Warning: ldap_bind(): Unable to bind to server: Invalid credentials in ...
But when I try this way:
ldap_bind($ds,'[email protected]','pass');
It works fine, but to me it doesn't work because I want to filter by OU
, and with this way I can't. Does anyone have any advice for this problem?