如何在 Perl 中从给定 DN 查询组织单位

发布于 2024-12-14 21:18:14 字数 390 浏览 2 评论 0原文

我需要从给定的 DN 字符串检索所有组织单位,我正在使用 Net::LDAP 模块和这个小脚本:

my $msg = $ldap->search(
    base=>'DC=sample1,DC=sample2',
    filter=>'(objectclass=User)',
);
foreach $entry ($msg->entries) {
    $dn = $entry->dn;
    #how can i retrieve OUs?
}

例如,如果 dn 返回该字符串:

CN=样本样本,OU=一,OU=二,DC=样本1,DC=样本2

我想检索一和二。

I need to retrieve all Organizational Units from a given DN stringh, I am using Net::LDAP module and this little script:

my $msg = $ldap->search(
    base=>'DC=sample1,DC=sample2',
    filter=>'(objectclass=User)',
);
foreach $entry ($msg->entries) {
    $dn = $entry->dn;
    #how can i retrieve OUs?
}

For example if dn returns that string:

CN=Sample Sample,OU=One,OU=Two,DC=sample1,DC=sample2

I want to retrieve One and Two.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酒解孤独 2024-12-21 21:18:14

使用基础对象 dc=example1,dc=sample2 和存在过滤器 (ou=*) 发出一级搜索请求。根据这些结果,使用每个返回的 ou 以及存在过滤器 (ou=*) 发出一级搜索。对于每个搜索,请指定大小限制和时间限制。有关搜索请求的详细信息,请参阅“LDAP:使用 ldapsearch”"LDAP:编程实践”

Issue a one level search request using the base object dc=example1,dc=sample2 and a presence filter of (ou=*). Given those results, issue a one level search using each returned ou with a presence filter of (ou=*). For each of these searches, specify a size limit and a time limit. For more information on search requests, see "LDAP: Using ldapsearch" and "LDAP: programming practices".

牵强ㄟ 2024-12-21 21:18:14

最详细的“(&(ou=*)(objectClass=organizationalunit))”

Most detailed "(&(ou=*)(objectClass=organizationalunit))"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文