Differences between revisions 2 and 3
Revision 2 as of 2005-08-07 02:48:19
Size: 1838
Editor: anonymous
Comment:
Revision 3 as of 2005-08-07 03:05:25
Size: 1847
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
== Internal Vertex Nodes (Non-leaf nodes) == = Internal Vertex Nodes (Non-leaf nodes) =
''Updated 2005-08-06 DanielDickinson''
Line 5: Line 7:
=== organizationUnit (ou) ===
==== Minimum ====
===== Skeleton =====
== organizationUnit (ou) ==
=== Minimum ===
==== Skeleton ====
Line 16: Line 18:
===== Example ===== ==== Example ====
Line 25: Line 27:
==== or, if you need the associated domain (as with LDAPMigrationTools) ====
===== Skeleton ====={{{ =====
=== or, if you need the associated domain (as with LDAPMigrationTools) ===
==== Skeleton ===={{{ ====
Line 36: Line 38:
===== Example ===== ==== Example ====
Line 47: Line 49:
=== dcObject (dc) ===
==== Minimum ====
===== Skeleton =====
== dcObject (dc) ==
=== Minimum ===
==== Skeleton ====
Line 58: Line 60:
===== Example ===== ==== Example ====
Line 67: Line 69:
==== or, if you need the associated domain (as with LDAPMigrationTools) ====
===== Skeleton =====
=== or, if you need the associated domain (as with LDAPMigrationTools) ===
==== Skeleton ====
Line 79: Line 81:
===== Example ===== ==== Example ====

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).

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