java的ldap的过滤,LDAP过滤器 - 搜索特定OU的所有用户

在尝试从LDAP的OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local获取所有用户时遇到问题。正确的搜索应设置为基础DN为该OU,并查找具有objectClass的对象。在PHP中,这将涉及绑定到LDAP服务器,然后执行搜索,例如:ldap_search($ldapconn, $dn, $filter, $justthese),其中dn是OU路径,$filter为'(objectClass=user)'。" 111404755,9314127,传输介质与信道:概念解析,"['网络技术', '数据传输']

I am having trouble with an LDAP Search Filter. What I am needing to retrieve is all the users of a specific LDAP group that is OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local

My search is:

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

Currently it is returning no results. What am I missing?

解决方案

You must do two things

Set the base of the search OU=Staff,OU=Users,OU=Accounts,DC=test,DC=local

Search for the objects with the objectClass.

Using PHP, the search would look like this (based on this PHP sample):

//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";

}

?>

You can test on the command line with this (exact options varies, this works with recent openldap's client tools) :

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)"

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值