< draft-ietf-dns-mibext-04.txt   draft-ietf-dns-mibext-05.txt >
skipping to change at line 792 skipping to change at line 792
dnsResResponseTableEntry OBJECT-TYPE dnsResResponseTableEntry OBJECT-TYPE
SYNTAX DnsResResponseTableEntry SYNTAX DnsResResponseTableEntry
ACCESS not-accessible ACCESS not-accessible
STATUS mandatory STATUS mandatory
DESCRIPTION DESCRIPTION
"Entry in the resolver response table. Entries are "Entry in the resolver response table. Entries are
indexed by DNS response code." indexed by DNS response code."
INDEX { dnsResResponseCode } INDEX { dnsResResponseCode }
::= { dnsResResponseTable 1 } ::= { dnsResResponseTable 1 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 19
DnsResResponseTableEntry ::=
SEQUENCE {
dnsResResponseCode
DnsRespCode,
dnsResResponses
Counter
}
dnsResResponseCode OBJECT-TYPE
SYNTAX DnsRespCode -- INTEGER (0..15)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to this table. The Response Codes that have
already been defined are found in RFC1035."
::= { dnsResResponseTableEntry 1 }
dnsResResponses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of responses the resolver has received for the
response code value which identifies this row of the
table."
::= { dnsResResponseTableEntry 2 }
-- Additional DNS Resolver Counter Objects
dnsResCounterNonAuthDataResps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests made by the resolver for which a
non-authoritative answer (cached data) was received."
::= { dnsResCounter 10 }
20 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsResCounterNonAuthNoDataResps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests made by the resolver for which a
non-authoritative answer - no such data response
(empty answer) was received."
::= { dnsResCounter 11 }
dnsResCounterMartians OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of responses received which were received from
servers that the resolver does not think it asked."
::= { dnsResCounter 12 }
dnsResCounterRecdResponses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of responses received to all queries."
::= { dnsResCounter 13 }
dnsResCounterDuplicates OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of responses received which were duplicates and
ignored by the resolver."
::= { dnsResCounter 14 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 21
dnsResCounterUnparseResps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of responses received which were unparseable."
::= { dnsResCounter 15 }
dnsResCounterRootAttempts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of attempts made by the resolver to connect
with root servers."
::= { dnsResCounter 16 }
dnsResCounterReferals OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of responses which were received from
servers redirecting query to another server."
::= { dnsResCounter 17 }
dnsResCounterRetrans OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number requests retransmitted for all reasons."
::= { dnsResCounter 18 }
22 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsResCounterNoResponses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries that were retransmitted because of
no response."
::= { dnsResCounter 19 }
dnsResCounterRootRetrans OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries that were retransmitted that were to
root servers."
::= { dnsResCounter 20 }
dnsResCounterInternals OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests internally generated by the
resolver."
::= { dnsResCounter 21 }
dnsResCounterInternalTimeOuts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests internally generated which timed
out."
::= { dnsResCounter 22 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 23
-- Server Counter Group
-- The implementation of the Server Counter Group is mandatory for
-- all systems which offer either recursive or non recursive server
-- software functions.
-- Several of the objects in this group make distinctions between
-- queries which originate with the local host, within the same
-- zone as the local host or come from outside the zone of the
-- server. The purpose of these distinctions is to allow for
-- implementations to group queries and responses on this basis.
-- One way in which servers may make these distinctions is by
-- looking at the source IP address of the DNS query. If the
-- source of the query is 'your own' then the query should be
-- counted as 'yourself' - local host. If the source of the query
-- matches an 'access list' - the the query came from a friend,
-- that is; within the local zone. What constitutes an 'access
-- list' is implementation dependent and could be as simple as all
-- hosts on the same IP network as the DNS server are classed as in
-- the local zone and are 'friends'. In order to avoid double
-- counting, the following rules apply:
-- 1. No host is in more than one of the three groups defined above.
-- 2. All queries from the local host are always counted in the
-- 'yourself' group regardless of what the access list, if any,
-- says.
-- 3. The access list should not define 'your friends' in such a way
-- that it includes all hosts, that is 'not everybody is your
-- friend'.
24 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServCounterUTime OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If the server has a persistent state, e.g., a
process; this value will be the time elapsed since it
started. For software that does not have persistence,
this value will be 0."
::= { dnsServCounter 1 }
dnsServCounterInUPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number [total] of UDP packets received by the server."
::= { dnsServCounter 2 }
dnsServCounterOutUPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number [total] of UDP packets sent by the server."
::= { dnsServCounter 3 }
dnsServCounterTCPConns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of TCP connections received by the server."
::= { dnsServCounter 4 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 25
dnsServCounterTCPInitiatns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of attempts to initiate TCP connections with
other servers."
::= { dnsServCounter 5 }
dnsServCounterSelfAuthAns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from a resolver on the same host for which
there has been an authoritative answer."
::= { dnsServCounter 6 }
dnsServCounterSelfAuthNoNames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from a resolver on the same host for which
there has been an authoritative no such name answer
given."
::= { dnsServCounter 7 }
26 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServCounterSelfAuthNoDataResps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from a resolver on the same host for which
there has been an authoritative no such data answer
(empty answer) made."
::= { dnsServCounter 8 }
dnsServCounterSelfNonAuthDatas OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from a resolver on the same host for which
a non-authoritative answer (cached data) was made."
::= { dnsServCounter 9 }
dnsServCounterSelfNonAuthNoNames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from a resolver on the same host for which
there has been a non-authoritative no such name answer
given."
::= { dnsServCounter 10 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 27
dnsServCounterSelfNonAuthNoDatas OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from a resolver on the same host for which
a non-authoritative answer - no such data response was
made (empty answer)."
::= { dnsServCounter 11 }
dnsServCounterSelfCAnys OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from a resolver on the same host which
were answers to class=* queries."
::= { dnsServCounter 12 }
dnsServCounterSelfInversess OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of inverse queries the server has processed which
originated from a resolver on the same host."
::= { dnsServCounter 13 }
dnsServCounterSelfRefs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries the server has processed
which originated from a resolver on the same
host and were referred to other servers."
::= { dnsServCounter 14 }
28 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServCounterSelfErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from a resolver on the same host which
have been answered with errors (RCODE values other
than 0 and 3). RCODE values are defined in RFC1035."
::= { dnsServCounter 15 }
dnsServCounterSelfRelNames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests received for names that are only
1 label long (text form - no internal dots) the
server has processed which originated from a resolver
on the same host."
::= { dnsServCounter 16 }
dnsServCounterFriendsAuthAns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from friends which
were authoritatively answered. The definition of
friends is a locally defined matter."
::= { dnsServCounter 17 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 29
dnsServCounterFriendsAuthNoNames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from friends, for
which authoritative no such name (NXDOMAIN) responses
were made. The definition of friends is a locally
defined matter."
::= { dnsServCounter 18 }
dnsServCounterFriendsAuthNoDataResps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from friends for
which authoritative no such data (empty answer)
responses were made. The definition of friends is
a locally defined matter."
::= { dnsServCounter 19 }
dnsServCounterFriendsNonAuthDatas OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from friends which
were non-authoritatively answered (cached data).
The definition of friends is a locally defined matter."
::= { dnsServCounter 20 }
30 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServCounterFriendsNonAuthNoNames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from friends for which there has been a
non-authoritative no such name answer given."
::= { dnsServCounter 21 }
dnsServCounterFriendsNonAuthNoDatas OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from friends which
were non-authoritatively answered with no such data
(empty answer)."
::= { dnsServCounter 22 }
dnsServCounterFriendsCAnys OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of answers to class=* queries which originated
from friends. The definition of friends is a locally
defined matter."
::= { dnsServCounter 23 }
dnsServCounterFriendsInverses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of responses to inverse queries which originated
from friends. The definition of friends is a locally
defined matter."
::= { dnsServCounter 24 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 31
dnsServCounterFriendsRefs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests which originated from friends
that were referred to other servers. The definition
of friends is a locally defined matter."
::= { dnsServCounter 25 }
dnsServCounterFriendsErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from friends and were answered with errors
(RCODE values other than 0 and 3). RCODE values are
defined in RFC1035. The definition of friends is a
locally defined matter."
::= { dnsServCounter 26 }
dnsServCounterFriendsRelNames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests received for names from friends
that are only 1 label long (text form - no internal
dots) the server has processed."
::= { dnsServCounter 27 }
32 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServCounterRemoteAuthAns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from systems which have
not been defined as friends, which were
authoritatively answered."
::= { dnsServCounter 28 }
dnsServCounterRemoteAuthNoNames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from systems which
have not been defined as friends, for which
authoritative no such name responses were made."
::= { dnsServCounter 29 }
dnsServCounterRemoteAuthNoDataResps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from systems which
have not been defined as friends, for which
authoritative no such data (empty answer)
responses were made."
::= { dnsServCounter 30 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 33
dnsServCounterRemoteNonAuthDatas OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from systems which
have not been defined as friends, which were
non-authoritatively answered (cached data)."
::= { dnsServCounter 31 }
dnsServCounterRemoteNonAuthNoNames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from systems which
have not been defined as friends, for which there
has been a non-authoritative no such name answer
given."
::= { dnsServCounter 32 }
dnsServCounterRemoteNonAuthNoDatas OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of queries originating from systems which
have not been defined as friends, which were
non-authoritatively answered with no data
(empty answer)."
::= { dnsServCounter 33 }
34 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServCounterRemoteCAnys OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of answers to class=* queries which originated
from systems which have not been defined as friends."
::= { dnsServCounter 34 }
dnsServCounterRemoteInverses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of answers to inverse queries which originated
from systems which have not been defined as friends."
::= { dnsServCounter 35 }
dnsServCounterRemoteRefs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests which originated from systems which
have not been defined as friends that were referred to
other servers."
::= { dnsServCounter 36 }
dnsServCounterRemoteErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests the server has processed which
originated from systems which have not been defined as
friends that were answered with errors (RCODE values other
than 0 and 3). RCODE values are defined in RFC1035."
::= { dnsServCounter 37 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 35
dnsServCounterRemoteRelNames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests received by the server which originated
from systems which have not been defined as friends for
names that are only 1 label long (text form - no
internal dots)."
::= { dnsServCounter 38 }
dnsServCounterReqRefs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of DNS requests refused by the server process."
::= { dnsServCounter 39 }
dnsServCounterReqUnparses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests received which were unparseable."
::= { dnsServCounter 40 }
dnsServCounterLocalErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests which were aborted for other
(local) server errors."
::= { dnsServCounter 41 }
36 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServCounterDuplicates OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of duplicate requests which were received and
not forwarded."
::= { dnsServCounter 42 }
-- DNS Server Counter Table
dnsServCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF DnsServCounterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Counter information based on DNS class and
record type."
::= { dnsServCounter 43 }
dnsServCounterEntry OBJECT-TYPE
SYNTAX DnsServCounterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains count information for each DNS
record and class type known to the server. The index
allows management software to to create indices to the
table to get the specific information desired, e.g.,
number or A record queries over UDP which came to this
server from sources which have been defined as friends."
INDEX { dnsServCounterOpCode, dnsServCounterQClass,
dnsServCounterQType, dnsServCounterSource,
dnsServCounterTransport }
::= { dnsServCounterTable 1 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 37
DnsServCounterEntry ::=
SEQUENCE {
dnsServCounterOpCode
DnsOpCode,
dnsServCounterQClass
DnsClass,
dnsServCounterQType
DnsType,
dnsServCounterSource
INTEGER,
dnsServCounterTransport
INTEGER,
dnsServCounterRequests
Counter,
dnsServCounterResponses
Counter
}
dnsServCounterOpCode OBJECT-TYPE
SYNTAX DnsOpCode -- INTEGER (0..15)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The DNS OpCode being counted in this row of the
table."
::= { dnsServCounterEntry 1 }
dnsServCounterQClass OBJECT-TYPE
SYNTAX DnsClass -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The class of record being counted in this row
of the table."
::= { dnsServCounterEntry 2 }
38 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServCounterQType OBJECT-TYPE
SYNTAX DnsType -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of record which is being counted in this row
in the table."
::= { dnsServCounterEntry 3 }
dnsServCounterSource OBJECT-TYPE
SYNTAX INTEGER {
self (1),
friend (2),
remote (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The source of the queries being counted in this row of
the table. A value of 1 indicates that the queries reported
on this row came from a resolver which resides on the same
system as the server. A value of 2 indicates the
queries originated from friends of the server - the
definition of friends is a locally defined matter. A
value of 3 indicates that the queries counted on this
row of the table came from systems which have not been
defined as friends."
::= { dnsServCounterEntry 4 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 39
dnsServCounterTransport OBJECT-TYPE
SYNTAX INTEGER {
udp (1),
tcp (2),
other (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value of 1 indicates that the queries reported on
this row were sent using UDP. A value of 2 indicates
that TCP was used. 3 is for any transport other than
TCP or UDP."
::= { dnsServCounterEntry 5 }
dnsServCounterRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of requests (queries) that have been recorded
in this row of the table."
::= { dnsServCounterEntry 6 }
dnsServCounterResponses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of responses made by the server since
initialization for the type of query identified
on this row of the table."
::= { dnsServCounterEntry 7 }
40 Document Expiration Date - May 17, 1993 - Austein, Saperia
-- Records Group
-- The implementation of the Records Group is mandatory for all
-- systems which implement DNS server software functions.
-- Records Table
-- The records table contains information about the resource
-- records for which the server is authoritative.
dnsRecTable OBJECT-TYPE
SYNTAX SEQUENCE OF DnsRecEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Configuration information about all RR records for the
DNS software."
::= { dnsRec 1 }
dnsRecEntry OBJECT-TYPE
SYNTAX DnsRecEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains information about the resource
records for which the server is authoritative."
INDEX { dnsRecZoneName, dnsRecZoneClass, dnsRecName,
dnsRecType, dnsRecIndex }
::= { dnsRecTable 1 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 41
DnsRecEntry ::=
SEQUENCE {
dnsRecZoneName
DnsName,
dnsRecZoneClass
DnsClass,
dnsRecName
DnsName,
dnsRecType
DnsType,
dnsRecTTL
DnsTime,
dnsRecData
OCTET STRING,
dnsRecIndex
INTEGER,
dnsRecHits
Counter
}
dnsRecZoneName OBJECT-TYPE
SYNTAX DnsName -- OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Zone name to which the Resource Record which
is identified in this row of the table belongs.
This is the owner name of the zone's SOA RR, as
described in RFC1034."
::= { dnsRecEntry 1 }
dnsRecZoneClass OBJECT-TYPE
SYNTAX DnsClass -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS class of the zone contained in this row. For classes
listed in the DNS specification, the values are the same."
::= { dnsRecEntry 2 }
42 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsRecName OBJECT-TYPE
SYNTAX DnsName -- OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Name of the Resource Record which is identified in
this row of the table. As described in RFC1034, the
owner of the record is the domain name where the RR is
found."
::= { dnsRecEntry 4 }
dnsRecType OBJECT-TYPE
SYNTAX DnsType -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of the record identified in this row of the
table. For types defined in the DNS specification,
the values are the same."
::= { dnsRecEntry 5 }
dnsRecTTL OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The larger of the Time-To-Live value for this record
and the Zone Minimum for the zone containing it."
::= { dnsRecEntry 6 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 43
dnsRecData OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Variable length of octets. Type and Class information
provided in this row of the table along with this data
tell the management station how to interpret the Record.
For information on the details of DNS Resource Records
and their formats, see RFC1035."
::= { dnsRecEntry 7 }
dnsRecIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index value which identifies each entry in
this table."
::= { dnsRecEntry 8 }
dnsRecHits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of hits the server has had on the resource record
defined in this row of the table. A hit on a RR is counted
whenever it is included in a response."
::= { dnsRecEntry 9 }
-- Resolver Cache Group
-- The implementation of the Resolver Cache Group is mandatory for
-- all systems which implement a cache.
44 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsResCacheStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the resolver's cache.
ENABLED means that the use of the cache is allowed.
DISABLED means that the cache is not being used."
::= { dnsResCache 1 }
dnsResCacheValid OBJECT-TYPE
SYNTAX DnsValid
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this to CLEAR deletes the resolver's entire
cache."
::= { dnsResCache 2 }
dnsResCacheMaxTTL OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Maximum Time-To-Live for RRs in this cache. If the
resolver does not implement a TTL ceiling, the value of
this field should be hexadecimal FFFFFFFF."
::= { dnsResCache 3 }
-- Resolver Cache Table
-- The Resolver Cache Table contains information about Resource
-- Records currently in the resolver's cache.
Document Expiration Date - May 17, 1993 - Austein, Saperia 45
dnsResCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF DnsResCacheEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The entire contents of the resolver's cache."
::= { dnsResCache 4 }
dnsResCacheEntry OBJECT-TYPE
SYNTAX DnsResCacheEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A single entry in the resolvers's cache."
INDEX { dnsResCacheName, dnsResCacheClass,
dnsResCacheType, dnsResCacheIndex }
::= { dnsResCacheTable 1 }
DnsResCacheEntry ::=
SEQUENCE {
dnsResCacheName
DnsName,
dnsResCacheClass
DnsClass,
dnsResCacheType
DnsType,
dnsResCacheTTL
DnsTime,
dnsResCacheElapsedTTL
DnsTime,
dnsResCacheSource
IpAddress,
dnsResCacheRData
OCTET STRING,
dnsResCacheHits
Counter,
dnsResCacheEntryValid
DnsValid,
dnsResCacheIndex
46 Document Expiration Date - May 17, 1993 - Austein, Saperia
INTEGER
}
dnsResCacheName OBJECT-TYPE
SYNTAX DnsName -- OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Owner name of the Resource Record in the cache which
is identified in this row of the table. As described
in RFC1034, the owner of the record is the domain name
were the RR is found."
::= { dnsResCacheEntry 1 }
dnsResCacheClass OBJECT-TYPE
SYNTAX DnsClass -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS class of the Resource Record in the cache which
is identified in this row of the table."
::= { dnsResCacheEntry 2 }
dnsResCacheType OBJECT-TYPE
SYNTAX DnsType -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS type of the Resource Record in the cache which
is identified in this row of the table."
::= { dnsResCacheEntry 3 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 47
dnsResCacheTTL OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time-To-Live of RR in DNS cache. This is the initial
TTL value which was received with the RR when it was
originally received."
::= { dnsResCacheEntry 4 }
dnsResCacheElapsedTTL OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Elapsed seconds since RR was received."
::= { dnsResCacheEntry 5 }
dnsResCacheSource OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Host from which RR was received, 0.0.0.0 if unknown."
::= { dnsResCacheEntry 6 }
dnsResCacheRData OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"RDATA portion of a cached RR."
::= { dnsResCacheEntry 7 }
48 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsResCacheHits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hits on the cached RR identified in
this row of the table."
::= { dnsResCacheEntry 8 }
dnsResCacheEntryValid OBJECT-TYPE
SYNTAX DnsValid
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set to CLEAR to delete this RR entry from the
cache table."
::= { dnsResCacheEntry 9 }
dnsResCacheIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index value which identifies each entry in
this table."
::= { dnsResCacheEntry 10 }
-- Resolver Negative Cache Group
-- The implementation of the Resolver Negative Cache group is
-- mandatory for all systems which implement negative a negative
-- cache function.
Document Expiration Date - May 17, 1993 - Austein, Saperia 49
dnsResNCacheStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the resolver's negative cache.
ENABLED means that the use of the negative cache is
allowed.
DISABLED means that the negative caching is not being
used."
::= { dnsResNCache 1 }
dnsResNCacheValid OBJECT-TYPE
SYNTAX DnsValid
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this to CLEAR deletes the resolver's entire
negative response cache."
::= { dnsResNCache 2 }
dnsResNCacheMaxTTL OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Maximum Time-To-Live for cached authoritative errors.
If the resolver does not implement a TTL ceiling, the
value of this field should be hexadecimal FFFFFFFF."
::= { dnsResNCache 3 }
-- Resolver Negative Cache Table
-- The Resolver Negative Cache Table contains information about
-- Resource Records currently in the resolver's cache.
50 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsResNCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF DnsResNCacheEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The resolver's negative response cache."
::= { dnsResNCache 4 }
dnsResNCacheEntry OBJECT-TYPE
SYNTAX DnsResNCacheEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the resolver's negative response cache."
INDEX { dnsResNCacheErrQName, dnsResNCacheErrQClass,
dnsResNCacheErrQType, dnsResNCacheIndex }
::= { dnsResNCacheTable 1 }
DnsResNCacheEntry ::=
SEQUENCE {
dnsResNCacheErrQName
DnsName,
dnsResNCacheErrQClass
DnsQClass,
dnsResNCacheErrQType
DnsQType,
dnsResNCacheErrTTL
DnsTime,
dnsResNCacheErrElapsedTTL
DnsTime,
dnsResNCacheErrSource
IpAddress,
dnsResNCacheErrCode
INTEGER,
dnsResNCacheHits
Counter,
dnsResNCacheErrValid
DnsValid,
dnsResNCacheIndex
Document Expiration Date - May 17, 1993 - Austein, Saperia 51
INTEGER
}
dnsResNCacheErrQName OBJECT-TYPE
SYNTAX DnsName -- OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"QNAME associated with a cached authoritative error."
::= { dnsResNCacheEntry 1 }
dnsResNCacheErrQClass OBJECT-TYPE
SYNTAX DnsQClass -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS QCLASS associated with a cached authoritative error."
::= { dnsResNCacheEntry 2 }
dnsResNCacheErrQType OBJECT-TYPE
SYNTAX DnsQType -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS QTYPE associated with a cached authoritative error."
::= { dnsResNCacheEntry 3 }
dnsResNCacheErrTTL OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time-To-Live of a cached authoritative error at the
time of the error, it should not be decremented
by the number of seconds since it was recieved. This
should be the TTL as copied from the MINIMUM field of
the SOA that accompanied the authoritative error."
::= { dnsResNCacheEntry 4 }
52 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsResNCacheErrElapsedTTL OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Elapsed seconds since authoritative error was received."
::= { dnsResNCacheEntry 5 }
dnsResNCacheErrSource OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Host which sent the authoritative error, 0.0.0.0 if
unknown."
::= { dnsResNCacheEntry 6 }
dnsResNCacheErrCode OBJECT-TYPE
SYNTAX INTEGER {
nonexistantName (1),
noData (2),
other (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The authoritative error that has been cached.
NonexistantName indicates a cached authoritative name
error. NoData indicates a cached authoritative
response with no error and no relevant data."
::= { dnsResNCacheEntry 7 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 53
dnsResNCacheHits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hits on the RR identified in
this row of the table."
::= { dnsResNCacheEntry 8 }
dnsResNCacheErrValid OBJECT-TYPE
SYNTAX DnsValid
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set to CLEAR to delete this cached error."
::= { dnsResNCacheEntry 9 }
dnsResNCacheIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index value which identifies each entry in
the Negative Cache table."
::= { dnsResNCacheEntry 10 }
-- Resolver Statistics Group
-- The implementation of the Resolver Statistics Group is
-- mandatory for all resolver software implementations.
54 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsResStatGoodCaches OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of RRs the resolver has cached successfully.
RRs which have already been successfully cached are
not counted again."
::= { dnsResStats 1 }
dnsResStatBadCaches OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of RRs the resolver has refused to cache
because they appear to be dangerous or irrelevant.
E.g., RRs with suspiciously high TTLs, unsolicited root
information, or that just don't appear to be relevant
to the question the resolver asked. RRs which the
resolver has refused to cache previously are not
counted again."
::= { dnsResStats 2 }
dnsResStatGoodNCaches OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of authoritative errors the resolver has cached
successfully."
::= { dnsResStats 3 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 55
dnsResStatBadNCaches OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of authoritative errors the resolver would
have liked to cache but was unable to because the
appropriate SOA RR was not supplied or looked
suspicious."
::= { dnsResStats 4 }
-- Lame Delegation Table
dnsResLameDelegationTable OBJECT-TYPE
SYNTAX SEQUENCE OF DnsResLameDelegationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of name servers returning lame delegations."
::= { dnsResStats 5 }
dnsResLameDelegationEntry OBJECT-TYPE
SYNTAX DnsResLameDelegationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry in lame delegation table."
INDEX { dnsResLameDelegationSource,
dnsResLameDelegationName,
dnsResLameDelegationClass }
::= { dnsResLameDelegationTable 1 }
56 Document Expiration Date - May 17, 1993 - Austein, Saperia
DnsResLameDelegationEntry ::=
SEQUENCE {
dnsResLameDelegationSource
IpAddress,
dnsResLameDelegationName
DnsName,
dnsResLameDelegationClass
DnsClass,
dnsResLameDelegationCounts
Counter,
dnsResLameDelegationValid
DnsValid
}
dnsResLameDelegationSource OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Source of lame delegation."
::= { dnsResLameDelegationEntry 1 }
dnsResLameDelegationName OBJECT-TYPE
SYNTAX DnsName
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS name for which lame delegation was received."
::= { dnsResLameDelegationEntry 2 }
dnsResLameDelegationClass OBJECT-TYPE
SYNTAX DnsClass -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS class of received lame delegation."
::= { dnsResLameDelegationEntry 3 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 57
dnsResLameDelegationCounts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"How many times this lame delegation has been received."
::= { dnsResLameDelegationEntry 4 }
dnsResLameDelegationValid OBJECT-TYPE
SYNTAX DnsValid
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set to CLEAR to delete this lame delegation entry."
::= { dnsResLameDelegationEntry 5 }
-- Server Management Group
-- The implementation of the Server Management Group is mandatory
-- for all systems which implement DNS server software functions.
dnsServMgmtReload OBJECT-TYPE
SYNTAX INTEGER {
reload (1),
other (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This read-write variable is used to force a database
reload with a restart of the name server process
When set to the values above, the following actions
are taken: reload - Reload and restart name server
process(s). Other is returned when a read operation
is performed on this object."
::= { dnsServMgmt 1 }
-- DNS Managment Zone Configuration Table
58 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServMgmtZoneTable OBJECT-TYPE
SYNTAX SEQUENCE OF DnsServMgmtZoneEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of zones for which this name server is
configured. If name server doesn't load any zones,
this table is empty."
::= { dnsServMgmt 2 }
dnsServMgmtZoneEntry OBJECT-TYPE
SYNTAX DnsServMgmtZoneEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the name server zone table."
INDEX { dnsServMgmtZoneMName,
dnsServMgmtZoneClass }
::= { dnsServMgmtZoneTable 1 }
DnsServMgmtZoneEntry ::=
SEQUENCE {
dnsServMgmtZoneMName
DnsName,
dnsServMgmtZoneRName
DnsName,
dnsServMgmtZoneSerial
INTEGER,
dnsServMgmtZoneRefresh
DnsTime,
dnsServMgmtZoneRetry
DnsTime,
dnsServMgmtZoneExpire
DnsTime,
dnsServMgmtZoneMin
DnsTime,
dnsServMgmtZoneLoad
OCTET STRING,
dnsServMgmtZoneDate
Document Expiration Date - May 17, 1993 - Austein, Saperia 59
DnsDate,
dnsServMgmtZoneClass
DnsClass,
dnsServMgmtZoneLastReload
DnsTime,
dnsServMgmtZoneLastReloadAttempt
DnsTime,
dnsServMgmtZoneLastSource
IpAddress,
dnsServMgmtZoneValid
DnsValid
}
dnsServMgmtZoneMName OBJECT-TYPE
SYNTAX DnsName
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS name of the server that was the original or
primary source of the data for this zone - see RFC
1035 for details of the SOA RDATA format."
::= { dnsServMgmtZoneEntry 1 }
dnsServMgmtZoneRName OBJECT-TYPE
SYNTAX DnsName
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The mailbox address of the person who is responsible
for the administration of the zone specified in this
row of the table. Note that the format of the address
follows the domain-name format as in
postman.server.acme."
::= { dnsServMgmtZoneEntry 2 }
60 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServMgmtZoneSerial OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current serial number of the SOA record in the
file specified by dnsServMgmtZoneLoad."
::= { dnsServMgmtZoneEntry 3 }
dnsServMgmtZoneRefresh OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"REFRESH interval for zone. This is the REFRESH field
of the zone's SOA RR, if known, otherwise a value
of zero must be returned."
::= { dnsServMgmtZoneEntry 4 }
dnsServMgmtZoneRetry OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"RETRY interval for zone. This is the RETRY field of
the zone's SOA RR, if known, otherwise a value of 0
must be returned."
::= { dnsServMgmtZoneEntry 5 }
dnsServMgmtZoneExpire OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"EXPIRE interval for zone. This is the EXPIRE field of
the zone's SOA RR, if known, otherwise a value of 0
must be returned."
::= { dnsServMgmtZoneEntry 6 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 61
dnsServMgmtZoneMin OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is the minimum TTL for the zone, as specified
in the zone minimum parameter of the zone's SOA record."
::= { dnsServMgmtZoneEntry 7 }
dnsServMgmtZoneLoad OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the zone file read to load the data
for this zone when the zone was last loaded or updated.
A value of NULL indicates that the data was not loaded
from a named file (e.g., because it was downloaded from
another server using the DNS protocol's zone transfer
facility)."
::= { dnsServMgmtZoneEntry 8 }
dnsServMgmtZoneDate OBJECT-TYPE
SYNTAX DnsDate -- DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the date that the information found in
dnsServMgmtZoneLoad was last changed at the time
the zone was last loaded. A value of NULL indicates
that there is no dnsServMgmtZoneLoad file."
::= { dnsServMgmtZoneEntry 9 }
62 Document Expiration Date - May 17, 1993 - Austein, Saperia
dnsServMgmtZoneClass OBJECT-TYPE
SYNTAX DnsClass -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS class of the RRs in this zone."
::= { dnsServMgmtZoneEntry 10 }
dnsServMgmtZoneLastReload OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Elapsed seconds since last successful reload of
this zone."
::= { dnsServMgmtZoneEntry 11 }
dnsServMgmtZoneLastReloadAttempt OBJECT-TYPE
SYNTAX DnsTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Elapsed seconds since last attempted reload of
this zone."
::= { dnsServMgmtZoneEntry 12 }
dnsServMgmtZoneLastSource OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IP address of host from which most recent reload of
this zone was received. If unknown or irrelevant,
value should be 0.0.0.0."
::= { dnsServMgmtZoneEntry 13 }
Document Expiration Date - May 17, 1993 - Austein, Saperia 63
dnsServMgmtZoneValid OBJECT-TYPE
SYNTAX DnsValid
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set to CLEAR to delete this zone entry."
::= { dnsServMgmtZoneEntry 14 }
-- DNS Management Server Table
dnsServMgmtServTable OBJECT-TYPE
SYNTAX SEQUENCE OF DnsServMgmtServEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table is a list of zones which the server tries to
acquire using DNS zone transfer operations. It lists
for each zone, the set of IP addresses the server is
configured to query when trying to obtain the data for
that zone."
::= { dnsServMgmt 3 }
dnsServMgmtServEntry OBJECT-TYPE
SYNTAX DnsServMgmtServEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the name server server (sic) table."
INDEX { dnsServMgmtServName,
dnsServMgmtServClass,
dnsServMgmtServAddr }
::= { dnsServMgmtServTable 1 }
64 Document Expiration Date - May 17, 1993 - Austein, Saperia
DnsServMgmtServEntry ::=
SEQUENCE {
dnsServMgmtServName
DnsName,
dnsServMgmtServClass
DnsClass,
dnsServMgmtServAddr
IpAddress
}
dnsServMgmtServName OBJECT-TYPE
SYNTAX DnsName
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS name of the zone to which this entry applies."
::= { dnsServMgmtServEntry 1 }
dnsServMgmtServClass OBJECT-TYPE
SYNTAX DnsClass -- INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DNS class of zone to which this entry applies."
::= { dnsServMgmtServEntry 2 }
dnsServMgmtServAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IP address of name server host from which this zone
might be obtainable."
::= { dnsServMgmtServEntry 3 }
END
Document Expiration Date - May 17, 1993 - Austein, Saperia 65
6 Acknowledgements
This document is the result of work undertaken the by DNS work-
ing group. In addition, the contributions and comments of the
following members are also specially acknowledged:
Win Treese, Digital Equipment Corporation
Philip Almquist, Computer Communication consultant
Joe Peck, Digital Equipment Corporation
Mimi Zohar, IBM
7 References
J. Reynolds and J. Postel, Assigned Numbers. Internet Working
Group Request for Comments 1010. Network Information Center, SRI
International, Menlo Park, California, (May, 1987).
M. Stahl, Domain Administrators Guide. Internet Working Group
Request for Comments 1032. Network Information Center, SRI
International, Menlo Park, California, (November, 1987).
M. Lottor, Domain Administrators Operations Guide, Internet
Working Group Request for Comments 1033. Network Information
Center, SRI International, Menlo Park, California, (November,
1987).
P. Mockapetris, Domain Names - Concepts and Facilities, Internet
Working Group Request for Comments 1034. Network Information
Center, SRI International, Menlo Park, California, (November,
1987).
P. Mockapetris, Domain Names - Implementation and Specifica-
tion, Internet Working Group Request for Comments 1035. Network
Information Center, SRI International, Menlo Park, California,
(November, 1987).
66 Document Expiration Date - May 17, 1993 - Austein, Saperia
V. Cerf, IAB Recommendations for the Development of Internet
Network Management Standards. Internet Working Group Request for
Comments 1052. Network Information Center, SRI International,
Menlo Park, California, (April, 1988).
R. Braden (editor) Requirements for Internet Hosts-Application
and Support, Internet Working Group Request for Comments 1123.
Network Information Center, SRI International,Menlo Park, Cali-
fornia, (October, 1989).
M.T. Rose and K. McCloghrie, Structure and Identification of
Management Information for TCP/IP-based internets, Internet
Working Group Request for Comments 1155. Network Information
Center, SRI International, Menlo Park, California, (May, 1990).
K. McCloghrie and M.T. Rose, Management Information Base for
Network Management of TCP/IP-based internets, Internet Working
Group Request for Comments 1156, Network Information Center, SRI
International, Menlo Park, California, (May, 1990).
J.D. Case, M.S. Fedor, M.L. Schoffstall, and J.R. Davin, Simple
Network Management Protocol, Internet Working Group Request for
Comments 1157. Network Information Center, SRI International,
Menlo Park, California, (May, 1990).
M.T. Rose, The Open Book, A Practical Perspective on OSI. Pren-
tice Hall, Englewood Cliffs, New Jersey, (1990).
M.T. Rose and K. McCloghrie (editors) Concise MIB Definitions,
Internet Working Group Request for Comments 1212, Network In-
formation Center, SRI International, Menlo Park, California,
(March, 1991).
K. McCloghrie and M.T. Rose (editors), Management Information
Base for Network Management of TCP/IP-based internets: MIB-
II, Internet Working Group Request for Comments 1213. Network
Information Center, SRI International, Menlo Park, California,
(March, 1991).
Document Expiration Date - May 17, 1993 - Austein, Saperia 67
 End of changes. 1 change blocks. 
0 lines changed or deleted 0 lines changed or added

This html diff was produced by rfcdiff 1.48. The latest version is available from http://tools.ietf.org/tools/rfcdiff/