Differences between revisions 3 and 4
Revision 3 as of 2005-08-07 03:05:25
Size: 1847
Editor: anonymous
Comment:
Revision 4 as of 2005-08-19 20:35:06
Size: 1849
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
== organizationUnit (ou) == == organizationalUnit (ou) ==

Internal Vertex Nodes (Non-leaf nodes)

Updated 2005-08-06 DanielDickinson

These examples are for nodes that exist only to host a subtree (i.e. they have no data of their own).

organizationalUnit (ou)

Minimum

Skeleton

 # node, [["BaseDN"]]
 dn: ou=node,[["BaseDN"]]
 objectClass: top
 objectClass: organizationalUnit
 ou: node

Example

 # auth, example, com
 dn: ou=auth,dc=example,dc=com
 objectClass: top
 objectClass: organizationalUnit
 ou: auth

or, if you need the associated domain (as with LDAPMigrationTools)

Skeleton ===={{{

  • # node, ?"BaseDN" dn: ou=node,?"BaseDN" objectClass: top objectClass: organizationalUnit objectClass: domainRelatedObject ou: node associatedDomain: your.domain

}}}

Example

 # auth, example, com
 dn: ou=auth,dc=example,dc=com
 objectClass: top
 objectClass: organizationalUnit
 objectClass: domainRelatedObject
 ou: auth
 associatedDomain: example.dom

dcObject (dc)

Minimum

Skeleton

 # node, [["BaseDN"]]
 dn: dc=node,[["BaseDN"]]
 objectClass: top
 objectClass: dcObject
 dc: node

Example

 # auth, example, com
 dn: dc=dns,dc=example,dc=com
 objectClass: top
 objectClass: dcObject
 dc: dns

or, if you need the associated domain (as with LDAPMigrationTools)

Skeleton

 # node, [["BaseDN"]]
 dn: dc=node,[["BaseDN"]]
 objectClass: top
 objectClass: dcObject
 objectClass: domainRelatedObject
 associatedDomain: your.domain
 dc: node

Example

 # dns, example, com
 dn: dc=dns,dc=example,dc=com
 objectClass: top
 objectClass: dcObject
 objectClass: domainRelatedObject
 associatedDomain: example.com
 dc: dns


Index: ["LDAPFormats"]

Top: ["LDAP"]