微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – LDAP过滤器 – 查找特定OU的所有用户

我在使用LDAP搜索过滤器时遇到问题.我需要检索的是特定LDAP组的所有用户,即OU = Staff,OU = Users,OU = Accounts,DC = test,DC = local

我的搜索是:

(&(objectCategory=user)(OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local))

目前它没有返回任何结果.我错过了什么?

解决方法:

你必须做两件事

>设置搜索的基础OU = Staff,OU = Users,OU = Accounts,DC = test,DC = local
>使用objectClass搜索对象.

使用PHP,搜索将如下所示(基于this PHP sample):

<?PHP
//You must bind, first
// using ldap bind
$ldaprdn  = 'yourdomain\nic_hubbard';     // ldap rdn or dn
$ldappass = 'password';  // associated password

// connect to ldap server
$ldapconn = ldap_connect("yourad.test.local")
    or die("Could not connect to LDAP server.");

if ($ldapconn) {

    // binding to ldap server
    $ldapbind = ldap_bind($ldapconn, $ldaprdn, $ldappass);

    $dn = "OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local";
    $filter="(objectClass=user)";
    $justthese = array("cn", "sn", "givenname", "mail");

    $sr=ldap_search($ldapconn, $dn, $filter, $justthese);

    $info = ldap_get_entries($ldapconn, $sr);

    echo $info["count"]." entries returned\n";
}

?>

您可以使用此命令在命令行上进行测试(确切的选项有所不同,这适用于最近的openldap的客户端工具):

ldapsearch -H ldap://yourad.test.local -x -D "yourdomain\nic_hubbard" -W -b "OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local" -s sub "(objectClass=user)" 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐