如何在 Perl 中从给定 DN 查询组织单位
我需要从给定的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用基础对象
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 returnedou
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".最详细的“(&(ou=*)(objectClass=organizationalunit))”
Most detailed "(&(ou=*)(objectClass=organizationalunit))"