gpt4 book ai didi

Active Directory 根 DN 中的 php ldap_search - 空结果

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:54:08 26 4
gpt4 key购买 nike

我正尝试在 Active Directory 中查询给定用户组成员资格。当我搜索特定用户的 OU 时,搜索正常。当我尝试搜索整个目录时,结果是空的。由于我有很多用户 OU,并且特定用户 OU 可能会有所不同。

系统为CentOS 6.4,PHP+Apache。

代码如下:

$ldap_dn = "dc=ccc,dc=bbb,dc=aaa,dc=com";

// Active Directory user for querying
$query_user = "ldap_bind@ccc.bbb.aaa.com";
$password = "xxxx";

// Connect to AD
$ldap = ldap_connect($ldap_host, 389) or die("Could not connect to LDAP");
ldap_bind($ldap,$query_user,$password) or die("Could not bind to LDAP");
ldap_set_option($ldap, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ldap, LDAP_OPT_REFERRALS, 0);

// Search AD
$results = ldap_search($ldap,$ldap_dn,"(sAMAccountName=$user)",array("memberof","primarygroupid"));
$entries = ldap_get_entries($ldap, $results);
if($entries['count'] == 0) {
echo "No results\n";
return false;
}

有没有人见过类似的结果?我是否遗漏了支持此类搜索的某些内容或任何配置?

最佳答案

正确的代码是...

$ldap_dn = "dc=ccc,dc=bbb,dc=aaa,dc=com";

// Active Directory user for querying
$query_user = "ldap_bind@ccc.bbb.aaa.com";
$password = "xxxx";

// Connect to AD
$ldap = ldap_connect($ldap_host, 389) or die("Could not connect to LDAP");

->>> bfore ldap_bind<<<- ldap_set_option($ldap, LDAP_OPT_PROTOCOL_VERSION, 3);
->>> bfore ldap_bind<<<- ldap_set_option($ldap, LDAP_OPT_REFERRALS, 0);

ldap_bind($ldap,$query_user,$password) or die("Could not bind to LDAP");


// Search AD
$results = ldap_search($ldap,$ldap_dn,"(sAMAccountName=$user)",array("memberof","primarygroupid"));
$entries = ldap_get_entries($ldap, $results);
if($entries['count'] == 0) {
echo "No results\n";
return false;
}

关于Active Directory 根 DN 中的 php ldap_search - 空结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23374013/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com