Internal Vertex Nodes (Non-leaf nodes)

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 ===={{{

}}}

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"]