mirror of
https://github.com/bklang/ldap2dns.git
synced 2025-10-27 06:14:15 -04:00
git-svn-id: https://svn.alkaloid.net/gpl/ldap2dns/trunk@6 06cd67b6-e706-0410-b29e-9de616bca6e9
104 lines
2.5 KiB
Plaintext
104 lines
2.5 KiB
Plaintext
# schema for DNS data
|
|
# include this file into Your slapd.conf for openldap-2.0.x
|
|
# $Id: dns.schema,v 1.8 2001/08/09 10:35:49 jrief Exp $
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.1
|
|
NAME 'DNSzonename'
|
|
SUP name )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.2
|
|
NAME 'DNSserial'
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.3
|
|
NAME 'DNSrefresh'
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.4
|
|
NAME 'DNSretry'
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.5
|
|
NAME 'DNSexpire'
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.6
|
|
NAME 'DNSminimum'
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.7
|
|
NAME 'DNSadminmailbox'
|
|
SUP name )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.8
|
|
NAME 'DNSzonemaster'
|
|
SUP name )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.9
|
|
NAME 'DNStype'
|
|
SUP name )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.10
|
|
NAME 'DNSclass'
|
|
SUP name )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.11
|
|
NAME 'DNSdomainname'
|
|
SUP name )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.12
|
|
NAME 'DNSipaddr'
|
|
EQUALITY numericStringMatch
|
|
SUBSTR numericStringSubstringsMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{16} )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.13
|
|
NAME 'DNScipaddr'
|
|
EQUALITY numericStringMatch
|
|
SUBSTR numericStringSubstringsMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{16} )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.14
|
|
NAME 'DNScname'
|
|
SUP name )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.15
|
|
NAME 'DNSpreference'
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.16
|
|
NAME 'DNSrr'
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.17
|
|
NAME 'DNSttl'
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.7222.1.4.18
|
|
NAME 'DNStimestamp'
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
|
|
SINGLE-VALUE )
|
|
|
|
objectclass ( 1.3.6.1.4.1.7222.1.4.19
|
|
NAME 'DNSzone'
|
|
MUST ( objectclass $ cn )
|
|
MAY ( DNSzonename $ DNSserial $ DNSrefresh $ DNSretry $ DNSexpire
|
|
$ DNSminimum $ DNSadminmailbox $ DNSzonemaster $ DNStype $ DNSclass
|
|
$ DNSttl $ DNStimestamp $ owner ) )
|
|
|
|
objectclass ( 1.3.6.1.4.1.7222.1.4.20
|
|
NAME 'DNSrrset'
|
|
SUP DNSzone
|
|
MUST ( objectclass $ cn )
|
|
MAY ( DNSdomainname $ DNSrr $ DNSclass $ DNStype $ DNSipaddr $ DNScipaddr
|
|
$ DNScname $ DNSpreference $ DNSttl $ DNStimestamp $ owner ) )
|
|
|