[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re[4]: DNS information in LDAP
On 19 Jul 2000 15:20:04 +0200 Turbo Fredriksson <turbo@nocrew.org> wrote:
>| This seems interesting... Do you have the objectclasses defined somewhere to, so I don't have to do duplicate development? :)
objectClass sbInetDomain
requires
objectClass,
dc
allows
managerEMail,
SOA,
serial,
refresh,
retry,
expire,
minimum,
nic,
admContact,
techContact,
billingContact,
domainCreationDate
objectClass sbInetRedirectedWeb
requires
objectClass,
dc,
redirectURL
allows
description
objectClass sbInetSubDomainWeb
requires
objectClass,
dc,
subDomainRoot
allows
description
objectClass sbDNSRecord
requires
objectClass,
dc,
dnsRecord
allows
designation
objectClass sbPublicDomain
requires
objectClass,
dc
allows
designation
>| One small note (since I don't know if you developed those objectclasses yourself) but
>| the 'dnsrecord'... Why not have to kinds, 'recordtype' and 'recorddata' (or something
>| similarly:
>|
>| dc=localhost,dc=MyDomain,dc=net,o=LDAPRoot
>| dc=localhost
>| recordtype=A
>| recorddata=127.0.0.1
>|
>| dc=www,dc=MyDomain,dc=net,o=LDAPRoot
>| dc=www
>| recordtype=CNAME
>| recorddata=www.justredirect.com.
It was my first idea but one can have multple record for the same entry (A record and MX record for exmemple) so I use another way.
--