Man page - slapo-deref(5)
Packages contains this manual
- slapo-remoteauth(5)
- slappw-argon2(5)
- slapadd(8)
- slapo-collect(5)
- slapd-dnssrv(5)
- slapo-retcode(5)
- slapo-dds(5)
- slapd-meta(5)
- slapd.plugin(5)
- slappasswd(8)
- slapo-translucent(5)
- slapo-syncprov(5)
- slapd-null(5)
- slapd-config(5)
- slapo-nestgroup(5)
- slapindex(8)
- slapo-otp(5)
- slapo-rwm(5)
- slapo-dynlist(5)
- slapd-ldap(5)
- slapd.backends(5)
- slapschema(8)
- slapo-autogroup(5)
- slapacl(8)
- slapo-accesslog(5)
- slapauth(8)
- slapd-relay(5)
- slapo-constraint(5)
- slapdn(8)
- slapd.access(5)
- slapo-lastbind(5)
- slapd-sql(5)
- slapo-sssvlv(5)
- slapd(8)
- slapd-sock(5)
- slapd-mdb(5)
- slapo-ppolicy(5)
- slapd-passwd(5)
- slapd.overlays(5)
- slapo-deref(5)
- slapo-chain(5)
- slapd-ldif(5)
- slapo-pbind(5)
- slaptest(8)
- slapo-memberof(5)
- slapo-auditlog(5)
- slapd-asyncmeta(5)
- slapo-homedir(5)
- slapo-pcache(5)
- slapd-monitor(5)
- slapd.conf(5)
- slapo-dyngroup(5)
- slapd-perl(5)
- slapcat(8)
- slapmodify(8)
- slapo-unique(5)
- slapo-valsort(5)
- slapo-refint(5)
- slapo-sock(5)
apt-get install slapd
Manual
SLAPO-DEREF
NAMESYNOPSIS
DESCRIPTION
EXAMPLES
FILES
SEE ALSO
AUTHOR
NAME
slapo-deref - Dereference Control overlay to slapd
SYNOPSIS
/etc/ldap/slapd.conf
/etc/ldap/slapd.d
DESCRIPTION
This overlay implements the draft Dereference control. The overlay can be used with any backend or globally for all backends.
EXAMPLES
database mdb
...
overlay deref
Given these
entries:
dn: cn=Howard Chu,ou=people,dc=example,dc=org
objectClass: inetOrgPerson
cn: Howard Chu
sn: Chu
uid: hyc
dn:
cn=Pierangelo Masarati,ou=people,dc=example,dc=org
objectClass: inetOrgPerson
cn: Pierangelo Masarati
sn: Masarati
uid: ando
dn: cn=Test
Group,ou=groups,dc=example,dc=org
objectClass: groupOfNames
cn: Test Group
member: cn=Howard Chu,ou=people,dc=example,dc=org
member: cn=Pierangelo
Masarati,ou=people,dc=example,dc=org
A search could be performed with a Dereference request control value specified as
{ member, uid }
I.e.,
ldapsearch -x -b dc=example,dc=org -E
’deref=member:uid’
and the
"cn=Test Group" entry would be returned with the
response control value
{ { member, cn=Howard Chu,ou=people,dc=example,dc=org,
{ { uid, [hyc] } } },
{ member, cn=Pierangelo
Masarati,ou=people,dc=example,dc=org,
{ { uid, [ando] } } } }
FILES
/etc/ldap/slapd.conf
default slapd configuration file
/etc/ldap/slapd.d
default slapd configuration directory
SEE ALSO
slapd.conf (5), slapd-config (5).
"OpenLDAP Administrator’s Guide" (http://www.OpenLDAP.org/doc/admin/)
IETF LDAP Dereference Control proposal by P. Masarati, H. Chu, in IETF document "draft-masarati-ldap-deref-00.txt".
AUTHOR
Pierangelo Masarati