|
Group Account |
|
Subject: Group Account
Author: eLDAP
In response to: User Account
Posted on: 01/17/2015 02:40:58 AM
The group to whom the user belongs is
dn: cn=special users,ou=groups,dc=example
objectclass: top
objectclass: groupofuniquenames
cn: special users
ou: groups
uniquemember: uid=Smith\, J\\oh\=n,cn=users,dc=example
uniquemember: uid=Joe Smith,cn=users,dc=example
>
> On 01/17/2015 02:39:14 AM eLDAP wrote:
Let's take a look at an example. Here comes a person whose last name is "Smith" and first name is "J\oh=n" (yes, two extra characters '\' and '=' inside). The account for this person should be as follow:
dn: uid=Smith\, J\\oh\=n,cn=users,dc=example
objectclass: top
objectclass: person
objectclass: organizationalPerson
objectclass: inetOrgPerson
givenName: J\oh=n
sn: Smith
uid: Smith, J\oh=n
In terms of DN, the value of uid is "Smith, J\oh=n" which contains three special characters ',', '\', and '='. After being escaped, the DN of this account is "uid=Smith\, J\\oh\=n,cn=users,dc=example"
References:
|
|
|
|