[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: multivalued dc=



At 10:14 AM 9/28/00 +1100, Jie Gao wrote:
>Hi All,
>
>I am trying to set up my root domain as such:
>
>dn: dc=ucc,dc=usyd,dc=edu,dc=au
>o: ucc.usyd.edu.au
>dc: ucc
>dc: usyd
>dc: edu
>dc: au
>objectclass: top
>objectClass: dcObject
>objectclass: organization


This is invalid.  domainComponent (dc) is defined in RFC 2247 as:

( 0.9.2342.19200300.100.1.25
    NAME 'dc' 'domainComponent'
    DESC 'RFC1274/2247: domain component'
    EQUALITY caseIgnoreIA5Match
    SUBSTR caseIgnoreIA5SubstringsMatch
    SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE )

Note the attribute type defined as allowing only one value.
Note also that only the entry's RDN type/value pairs need
be present in the entry.   Hence, the following should work:

dn: dc=ucc,dc=usyd,dc=edu,dc=au
o: ucc.usyd.edu.au
dc: ucc
objectClass: top
objectClass: dcObject
objectClass: organization

        Kurt