3567N/ADIRECTORY-SERVER-MIB DEFINITIONS ::= BEGIN
3349N/A
3349N/A IMPORTS
3349N/A MODULE-IDENTITY, Counter32, Gauge32, OBJECT-TYPE
3349N/A FROM SNMPv2-SMI
3349N/A mib-2 FROM RFC1213
3349N/A DisplayString, TimeStamp
3349N/A FROM SNMPv2-TC
3349N/A MODULE-COMPLIANCE, OBJECT-GROUP
3349N/A FROM SNMPv2-CONF
3349N/A ZeroBasedCounter32
3349N/A FROM RMON2-MIB
3349N/A applIndex, DistinguishedName, URLString
3349N/A
3349N/A FROM NETWORK-SERVICES-MIB;
3349N/A
3349N/A dsMIB MODULE-IDENTITY
3349N/A LAST-UPDATED "9906070000Z"
3349N/A ORGANIZATION "IETF Mail and Directory Management Working
3349N/A Group"
3349N/A CONTACT-INFO
3349N/A " Glenn Mansfield
3349N/A Postal: Cyber Solutions Inc.
3349N/A 6-6-3, Minami Yoshinari
3349N/A Aoba-ku, Sendai, Japan 989-3204.
3349N/A
3349N/A Tel: +81-22-303-4012
3349N/A Fax: +81-22-303-4015
3349N/A E-mail: glenn@cysols.com
3349N/A Working Group E-mail: ietf-madman@innosoft.com
3349N/A To subscribe: ietf-madman-request@innosoft.com"
3349N/A
3349N/A DESCRIPTION
3349N/A " The MIB module for monitoring Directory Services."
3349N/A
3349N/A -- revision information
3349N/A
3349N/A REVISION "9906070000Z"
3349N/A DESCRIPTION
3349N/A "This revision of this MIB is published in RFC 2605.
3349N/A
3349N/A This revision obsoletes RFC 1567. It is incompatible with
3349N/A the original MIB and so it has been renamed from dsaMIB
3349N/A to dsMIB."
3349N/A
3349N/A REVISION "9311250000Z" -- 25th November 1993
3349N/A DESCRIPTION
3349N/A "The original version of this MIB was published in RFC 1567."
3349N/A ::= { mib-2 66 }
3349N/A
3349N/A dsTable OBJECT-TYPE
3349N/A SYNTAX SEQUENCE OF DsTableEntry
3349N/A MAX-ACCESS not-accessible
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A
3349N/A " The table holding information related to the Directory
3349N/A Servers."
3349N/A ::= {dsMIB 1}
3349N/A
3349N/A dsTableEntry OBJECT-TYPE
3349N/A SYNTAX DsTableEntry
3349N/A MAX-ACCESS not-accessible
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Entry containing summary description for a Directory
3349N/A Server."
3349N/A INDEX { applIndex }
3349N/A ::= {dsTable 1}
3349N/A
3349N/A -- General description of the Directory Server application will be
3349N/A -- available in the applTable of the NETWORK-SERVICES-MIB indexed by
3349N/A -- applIndex.
3349N/A
3349N/A DsTableEntry ::= SEQUENCE {
3349N/A dsServerType
3349N/A BITS,
3349N/A dsServerDescription
3349N/A DisplayString,
3349N/A
3349N/A -- Entry statistics/Cache performance
3349N/A dsMasterEntries
3349N/A Gauge32,
3349N/A dsCopyEntries
3349N/A Gauge32,
3349N/A dsCacheEntries
3349N/A Gauge32,
3349N/A dsCacheHits
3349N/A Counter32,
3349N/A dsSlaveHits
3349N/A Counter32
3349N/A }
3349N/A
3349N/A dsServerType OBJECT-TYPE
3349N/A SYNTAX BITS {
3349N/A frontEndDirectoryServer(0),
3349N/A backEndDirectoryServer(1)
3349N/A }
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A "This object indicates whether the server is
3349N/A a frontend or, a backend or, both. If the server
3349N/A is a frontend, then the frontEndDirectoryServer
3349N/A
3349N/A bit will be set. Similarly for the backend."
3349N/A ::= {dsTableEntry 1}
3349N/A
3349N/A dsServerDescription OBJECT-TYPE
3349N/A SYNTAX DisplayString
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A "A text description of the application. This information
3349N/A is intended to identify and briefly describe the
3349N/A application in a status display."
3349N/A ::= {dsTableEntry 2}
3349N/A
3349N/A -- A (C)LDAP frontend to the X.500 Directory will not have
3349N/A -- MasterEntries, CopyEntries; the following counters will
3349N/A -- be inaccessible for LDAP/CLDAP frontends to the X.500
3349N/A -- directory: dsMasterEntries, dsCopyEntries, dsSlaveHits.
3349N/A
3349N/A dsMasterEntries OBJECT-TYPE
3349N/A SYNTAX Gauge32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of entries mastered in the Directory Server."
3349N/A ::= {dsTableEntry 3}
3349N/A
3349N/A dsCopyEntries OBJECT-TYPE
3349N/A SYNTAX Gauge32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of entries for which systematic (slave)
3349N/A copies are maintained in the Directory Server."
3349N/A ::= {dsTableEntry 4}
3349N/A
3349N/A dsCacheEntries OBJECT-TYPE
3349N/A SYNTAX Gauge32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of entries cached (non-systematic copies) in
3349N/A the Directory Server. This will include the entries that
3349N/A are cached partially. The negative cache is not counted."
3349N/A ::= {dsTableEntry 5}
3349N/A
3349N/A dsCacheHits OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of operations that were serviced from
3349N/A the locally held cache."
3349N/A ::= {dsTableEntry 6}
3349N/A
3349N/A dsSlaveHits OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of operations that were serviced from
3349N/A the locally held object replications ( copy-
3349N/A entries)."
3349N/A ::= {dsTableEntry 7}
3349N/A
3349N/A dsApplIfOpsTable OBJECT-TYPE
3349N/A SYNTAX SEQUENCE OF DsApplIfOpsEntry
3349N/A MAX-ACCESS not-accessible
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " The table holding information related to the
3349N/A Directory Server operations."
3349N/A ::= {dsMIB 2}
3349N/A
3349N/A dsApplIfOpsEntry OBJECT-TYPE
3349N/A SYNTAX DsApplIfOpsEntry
3349N/A MAX-ACCESS not-accessible
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Entry containing operations related statistics
3349N/A for a Directory Server."
3349N/A INDEX { applIndex, dsApplIfProtocolIndex }
3349N/A ::= {dsApplIfOpsTable 1}
3349N/A DsApplIfOpsEntry ::= SEQUENCE {
3349N/A
3349N/A dsApplIfProtocolIndex
3349N/A INTEGER,
3349N/A dsApplIfProtocol
3349N/A OBJECT IDENTIFIER,
3349N/A
3349N/A -- Bindings
3349N/A
3349N/A dsApplIfUnauthBinds
3349N/A Counter32,
3349N/A dsApplIfSimpleAuthBinds
3349N/A Counter32,
3349N/A
3349N/A dsApplIfStrongAuthBinds
3349N/A Counter32,
3349N/A dsApplIfBindSecurityErrors
3349N/A Counter32,
3349N/A
3349N/A -- In-coming operations
3349N/A
3349N/A dsApplIfInOps
3349N/A Counter32,
3349N/A dsApplIfReadOps
3349N/A Counter32,
3349N/A dsApplIfCompareOps
3349N/A Counter32,
3349N/A dsApplIfAddEntryOps
3349N/A Counter32,
3349N/A dsApplIfRemoveEntryOps
3349N/A Counter32,
3349N/A dsApplIfModifyEntryOps
3349N/A Counter32,
3349N/A dsApplIfModifyRDNOps
3349N/A Counter32,
3349N/A dsApplIfListOps
3349N/A Counter32,
3349N/A dsApplIfSearchOps
3349N/A Counter32,
3349N/A dsApplIfOneLevelSearchOps
3349N/A Counter32,
3349N/A dsApplIfWholeSubtreeSearchOps
3349N/A Counter32,
3349N/A
3349N/A -- Out going operations
3349N/A
3349N/A dsApplIfReferrals
3349N/A Counter32,
3349N/A dsApplIfChainings
3349N/A Counter32,
3349N/A
3349N/A -- Errors
3349N/A
3349N/A dsApplIfSecurityErrors
3349N/A Counter32,
3349N/A dsApplIfErrors
3349N/A Counter32,
3349N/A
3349N/A -- replications
3349N/A
3349N/A dsApplIfReplicationUpdatesIn
3349N/A Counter32,
3349N/A
3349N/A dsApplIfReplicationUpdatesOut
3349N/A Counter32,
3349N/A
3349N/A -- Traffic Volume
3349N/A
3349N/A dsApplIfInBytes
3349N/A Counter32,
3349N/A dsApplIfOutBytes
3349N/A Counter32
3349N/A }
3349N/A
3349N/A -- CLDAP does not use binds; for the CLDAP interface of a Directory
3349N/A -- Server the bind related counters will be inaccessible.
3349N/A --
3349N/A -- CLDAP and LDAP implement "Read" and "List" operations
3349N/A -- indirectly via the "search" operation; the following
3349N/A -- counters will be inaccessible for the CLDAP and LDAP interfaces of
3349N/A -- Directory Servers: dsApplIfReadOps, dsApplIfListOps
3349N/A --
3349N/A -- CLDAP does not implement "Compare", "Add", "Remove",
3349N/A -- "Modify", "ModifyRDN"; the following counters will be
3349N/A -- inaccessible for the CLDAP interfaces of Directory Servers:
3349N/A -- dsApplIfCompareOps, dsApplIfAddEntryOps, dsApplIfRemoveEntryOps,
3349N/A -- dsApplIfModifyEntryOps, dsApplIfModifyRDNOps.
3349N/A --
3349N/A -- CLDAP Directory Servers do not return Referrals
3349N/A -- the following fields will remain inaccessible for
3349N/A -- CLDAP interfaces of Directory Servers: dsApplIfReferrals.
3349N/A
3349N/A dsApplIfProtocolIndex OBJECT-TYPE
3349N/A SYNTAX INTEGER (1..2147483647)
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A "An index to uniquely identify an entry corresponding to a
3349N/A application-layer protocol interface. This index is used
3349N/A for lexicographic ordering of the table."
3349N/A ::= {dsApplIfOpsEntry 1}
3349N/A
3349N/A dsApplIfProtocol OBJECT-TYPE
3349N/A SYNTAX OBJECT IDENTIFIER
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A "An identification of the protocol being used by the application
3349N/A on this interface. For an OSI Application, this will be the
3349N/A Application Context. For Internet applications, the IANA
3349N/A maintains a registry[22] of the OIDs which correspond to
3349N/A
3349N/A well-known applications. If the application protocol is
3349N/A not listed in the registry, an OID value of the form
3349N/A {applTCPProtoID port} or {applUDProtoID port} are used for
3349N/A TCP-based and UDP-based protocols, respectively. In either
3349N/A case 'port' corresponds to the primary port number being
3349N/A used by the protocol. The OIDs applTCPProtoID and
3349N/A applUDPProtoID are defined in NETWORK-SERVICES-MIB"
3349N/A ::= {dsApplIfOpsEntry 2}
3349N/A
3349N/A dsApplIfUnauthBinds OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of unauthenticated/anonymous bind requests
3349N/A received."
3349N/A ::= {dsApplIfOpsEntry 3}
3349N/A
3349N/A dsApplIfSimpleAuthBinds OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of bind requests that were authenticated
3349N/A using simple authentication procedures like password
3349N/A checks. This includes the
3349N/A password authentication using SASL mechanisms like
3349N/A CRAM-MD5."
3349N/A ::= {dsApplIfOpsEntry 4}
3349N/A
3349N/A dsApplIfStrongAuthBinds OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of bind requests that were authenticated
3349N/A using TLS and X.500 strong authentication procedures.
3349N/A This includes the binds that were
3349N/A authenticated using external authentication procedures."
3349N/A ::= {dsApplIfOpsEntry 5}
3349N/A
3349N/A dsApplIfBindSecurityErrors OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of bind requests that have been rejected
3349N/A due to inappropriate authentication or
3349N/A
3349N/A invalid credentials."
3349N/A ::= {dsApplIfOpsEntry 6}
3349N/A
3349N/A dsApplIfInOps OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of requests received from DUAs or other
3349N/A Directory Servers."
3349N/A ::= {dsApplIfOpsEntry 7}
3349N/A
3349N/A dsApplIfReadOps OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of read requests received."
3349N/A ::= {dsApplIfOpsEntry 8}
3349N/A
3349N/A dsApplIfCompareOps OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of compare requests received."
3349N/A ::= {dsApplIfOpsEntry 9}
3349N/A
3349N/A dsApplIfAddEntryOps OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of addEntry requests received."
3349N/A ::= {dsApplIfOpsEntry 10}
3349N/A
3349N/A dsApplIfRemoveEntryOps OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of removeEntry requests received."
3349N/A ::= {dsApplIfOpsEntry 11}
3349N/A
3349N/A dsApplIfModifyEntryOps OBJECT-TYPE
3349N/A
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of modifyEntry requests received."
3349N/A ::= {dsApplIfOpsEntry 12}
3349N/A
3349N/A dsApplIfModifyRDNOps OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of modifyRDN requests received."
3349N/A ::= {dsApplIfOpsEntry 13}
3349N/A
3349N/A dsApplIfListOps OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of list requests received."
3349N/A ::= {dsApplIfOpsEntry 14}
3349N/A
3349N/A dsApplIfSearchOps OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of search requests- baseObject searches,
3349N/A oneLevel searches and whole subtree searches,
3349N/A received."
3349N/A ::= {dsApplIfOpsEntry 15}
3349N/A
3349N/A dsApplIfOneLevelSearchOps OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of oneLevel search requests received."
3349N/A ::= {dsApplIfOpsEntry 16}
3349N/A
3349N/A dsApplIfWholeSubtreeSearchOps OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A
3349N/A " Number of whole subtree search requests received."
3349N/A ::= {dsApplIfOpsEntry 17}
3349N/A
3349N/A dsApplIfReferrals OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of referrals returned in response
3349N/A to requests for operations."
3349N/A ::= {dsApplIfOpsEntry 18}
3349N/A
3349N/A dsApplIfChainings OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of operations forwarded by this Directory Server
3349N/A to other Directory Servers."
3349N/A ::= {dsApplIfOpsEntry 19}
3349N/A
3349N/A dsApplIfSecurityErrors OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of requests received
3349N/A which did not meet the security requirements. "
3349N/A ::= {dsApplIfOpsEntry 20}
3349N/A
3349N/A dsApplIfErrors OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of requests that could not be serviced
3349N/A due to errors other than security errors, and
3349N/A referrals.
3349N/A A partially serviced operation will not be counted
3349N/A as an error.
3349N/A The errors include naming-related, update-related,
3349N/A attribute-related and service-related errors."
3349N/A ::= {dsApplIfOpsEntry 21}
3349N/A
3349N/A -- Replication operations
3349N/A
3349N/A dsApplIfReplicationUpdatesIn OBJECT-TYPE
3349N/A
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of replication updates fetched or received from
3349N/A supplier Directory Servers."
3349N/A ::= {dsApplIfOpsEntry 22}
3349N/A
3349N/A dsApplIfReplicationUpdatesOut OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Number of replication updates sent to or taken by
3349N/A consumer Directory Servers."
3349N/A ::= {dsApplIfOpsEntry 23}
3349N/A
3349N/A dsApplIfInBytes OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Incoming traffic, in bytes, on the interface.
3349N/A This will include requests from DUAs as well
3349N/A as responses from other Directory Servers."
3349N/A ::= {dsApplIfOpsEntry 24}
3349N/A
3349N/A dsApplIfOutBytes OBJECT-TYPE
3349N/A SYNTAX Counter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Outgoing traffic in bytes on the interface.
3349N/A This will include responses to DUAs and Directory
3349N/A Servers as well as requests to other Directory Servers."
3349N/A ::= {dsApplIfOpsEntry 25}
3349N/A
3349N/A -- The dsIntTable contains statistical data on the peer
3349N/A -- Directory Servers with which the monitored Directory
3349N/A -- Server interacts or, attempts to interact. This table is
3349N/A -- expected to provide a useful insight into the effect of
3349N/A -- neighbours on the Directory Server's performance.
3349N/A -- The table keeps track of the last "N" Directory Servers
3349N/A -- with which the monitored Directory has interacted
3349N/A -- (attempted to interact), where "N" is a locally-defined
3349N/A -- constant.
3349N/A -- For a multiprotocol server, statistics for each protocol
3349N/A
3349N/A -- are kept separetely.
3349N/A
3349N/A dsIntTable OBJECT-TYPE
3349N/A SYNTAX SEQUENCE OF DsIntEntry
3349N/A MAX-ACCESS not-accessible
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Each row of this table contains some details
3349N/A related to the history of the interaction
3349N/A of the monitored Directory Server with its
3349N/A peer Directory Servers."
3349N/A ::= { dsMIB 3 }
3349N/A
3349N/A dsIntEntry OBJECT-TYPE
3349N/A SYNTAX DsIntEntry
3349N/A MAX-ACCESS not-accessible
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Entry containing interaction details of a Directory
3349N/A Server with a peer Directory Server."
3349N/A INDEX { applIndex,dsIntEntIndex, dsApplIfProtocolIndex }
3349N/A ::= { dsIntTable 1 }
3349N/A
3349N/A DsIntEntry ::= SEQUENCE {
3349N/A dsIntEntIndex
3349N/A INTEGER,
3349N/A dsIntEntDirectoryName
3349N/A DistinguishedName,
3349N/A dsIntEntTimeOfCreation
3349N/A TimeStamp,
3349N/A dsIntEntTimeOfLastAttempt
3349N/A TimeStamp,
3349N/A dsIntEntTimeOfLastSuccess
3349N/A TimeStamp,
3349N/A dsIntEntFailuresSinceLastSuccess
3349N/A Gauge32,
3349N/A dsIntEntFailures
3349N/A ZeroBasedCounter32,
3349N/A dsIntEntSuccesses
3349N/A ZeroBasedCounter32,
3349N/A dsIntEntURL
3349N/A URLString
3349N/A }
3349N/A
3349N/A dsIntEntIndex OBJECT-TYPE
3349N/A SYNTAX INTEGER (1..2147483647)
3349N/A MAX-ACCESS not-accessible
3349N/A STATUS current
3349N/A
3349N/A DESCRIPTION
3349N/A " Together with applIndex and dsApplIfProtocolIndex, this
3349N/A object forms the unique key to
3349N/A identify the conceptual row which contains useful info
3349N/A on the (attempted) interaction between the Directory
3349N/A Server (referred to by applIndex) and a peer Directory
3349N/A Server using a particular protocol."
3349N/A ::= {dsIntEntry 1}
3349N/A
3349N/A dsIntEntDirectoryName OBJECT-TYPE
3349N/A SYNTAX DistinguishedName
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Distinguished Name of the peer Directory Server to
3349N/A which this entry pertains."
3349N/A ::= {dsIntEntry 2}
3349N/A
3349N/A dsIntEntTimeOfCreation OBJECT-TYPE
3349N/A SYNTAX TimeStamp
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " The value of sysUpTime when this row was created.
3349N/A If the entry was created before the network management
3349N/A subsystem was initialized, this object will contain
3349N/A a value of zero."
3349N/A ::= {dsIntEntry 3}
3349N/A
3349N/A dsIntEntTimeOfLastAttempt OBJECT-TYPE
3349N/A SYNTAX TimeStamp
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " The value of sysUpTime when the last attempt was made
3349N/A to contact the peer Directory Server. If the last attempt
3349N/A was made before the network management subsystem was
3349N/A initialized, this object will contain a value of zero."
3349N/A ::= {dsIntEntry 4}
3349N/A
3349N/A dsIntEntTimeOfLastSuccess OBJECT-TYPE
3349N/A SYNTAX TimeStamp
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " The value of sysUpTime when the last attempt made to
3349N/A contact the peer Directory Server was successful. If there
3349N/A have been no successful attempts this entry will have a value
3349N/A
3349N/A of zero. If the last successful attempt was made before
3349N/A the network management subsystem was initialized, this
3349N/A object will contain a value of zero."
3349N/A ::= {dsIntEntry 5}
3349N/A
3349N/A dsIntEntFailuresSinceLastSuccess OBJECT-TYPE
3349N/A SYNTAX Gauge32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " The number of failures since the last time an
3349N/A attempt to contact the peer Directory Server was successful.
3349N/A If there have been no successful attempts, this counter
3349N/A will contain the number of failures since this entry
3349N/A was created."
3349N/A ::= {dsIntEntry 6}
3349N/A
3349N/A -- note this gauge has a maximum value of 4294967295 and,
3349N/A -- it does not wrap.[5]
3349N/A
3349N/A dsIntEntFailures OBJECT-TYPE
3349N/A SYNTAX ZeroBasedCounter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Cumulative failures in contacting the peer Directory Server
3349N/A since the creation of this entry."
3349N/A ::= {dsIntEntry 7}
3349N/A
3349N/A dsIntEntSuccesses OBJECT-TYPE
3349N/A SYNTAX ZeroBasedCounter32
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " Cumulative successes in contacting the peer Directory Server
3349N/A since the creation of this entry."
3349N/A ::= {dsIntEntry 8}
3349N/A
3349N/A dsIntEntURL OBJECT-TYPE
3349N/A SYNTAX URLString
3349N/A MAX-ACCESS read-only
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " URL of the peer Directory Server."
3349N/A ::= {dsIntEntry 9}
3349N/A
3349N/A -- Conformance information
3349N/A
3349N/A dsConformance OBJECT IDENTIFIER ::= { dsMIB 4 }
3349N/A
3349N/A dsGroups OBJECT IDENTIFIER ::= { dsConformance 1 }
3349N/A dsCompliances OBJECT IDENTIFIER ::= { dsConformance 2 }
3349N/A
3349N/A -- Compliance statements
3349N/A
3349N/A dsEntryCompliance MODULE-COMPLIANCE
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A "The compliance statement for SNMP entities
3349N/A which implement the DIRECTORY-SERVER-MIB for
3349N/A a summary overview of the Directory Servers ."
3349N/A
3349N/A MODULE -- this module
3349N/A MANDATORY-GROUPS { dsEntryGroup }
3349N/A
3349N/A ::= { dsCompliances 1 }
3349N/A
3349N/A dsOpsCompliance MODULE-COMPLIANCE
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A "The compliance statement for SNMP entities
3349N/A which implement the DIRECTORY-SERVER-MIB for monitoring
3349N/A Directory Server operations, entry statistics and cache
3349N/A performance."
3349N/A
3349N/A MODULE -- this module
3349N/A MANDATORY-GROUPS { dsEntryGroup, dsOpsGroup }
3349N/A
3349N/A ::= { dsCompliances 2 }
3349N/A
3349N/A dsIntCompliance MODULE-COMPLIANCE
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " The compliance statement for SNMP entities
3349N/A which implement the DIRECTORY-SERVER-MIB for
3349N/A monitoring Directory Server operations and the
3349N/A interaction of the Directory Server with peer
3349N/A Directory Servers."
3349N/A
3349N/A MODULE -- this module
3349N/A MANDATORY-GROUPS { dsEntryGroup, dsIntGroup }
3349N/A
3349N/A ::= { dsCompliances 3 }
3349N/A
3349N/A dsOpsIntCompliance MODULE-COMPLIANCE
3349N/A STATUS current
3349N/A
3349N/A DESCRIPTION
3349N/A " The compliance statement for SNMP entities
3349N/A which implement the DIRECTORY-SERVER-MIB for monitoring
3349N/A Directory Server operations and the interaction of the
3349N/A Directory Server with peer Directory Servers."
3349N/A
3349N/A MODULE -- this module
3349N/A MANDATORY-GROUPS { dsEntryGroup, dsOpsGroup, dsIntGroup }
3349N/A
3349N/A ::= { dsCompliances 4 }
3349N/A
3349N/A -- Units of conformance
3349N/A
3349N/A dsEntryGroup OBJECT-GROUP
3349N/A OBJECTS {dsServerType, dsServerDescription,
3349N/A dsMasterEntries, dsCopyEntries,
3349N/A dsCacheEntries, dsCacheHits,
3349N/A dsSlaveHits}
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " A collection of objects for a summary overview of the
3349N/A Directory Servers."
3349N/A ::= { dsGroups 1 }
3349N/A
3349N/A dsOpsGroup OBJECT-GROUP
3349N/A OBJECTS {
3349N/A dsApplIfProtocolIndex, dsApplIfProtocol,
3349N/A dsApplIfUnauthBinds, dsApplIfSimpleAuthBinds,
3349N/A dsApplIfStrongAuthBinds, dsApplIfBindSecurityErrors,
3349N/A dsApplIfInOps, dsApplIfReadOps,
3349N/A dsApplIfCompareOps, dsApplIfAddEntryOps,
3349N/A dsApplIfRemoveEntryOps, dsApplIfModifyEntryOps,
3349N/A dsApplIfModifyRDNOps, dsApplIfListOps,
3349N/A dsApplIfSearchOps, dsApplIfOneLevelSearchOps,
3349N/A dsApplIfWholeSubtreeSearchOps, dsApplIfReferrals,
3349N/A dsApplIfChainings, dsApplIfSecurityErrors,
3349N/A dsApplIfErrors, dsApplIfReplicationUpdatesIn,
3349N/A dsApplIfReplicationUpdatesOut, dsApplIfInBytes,
3349N/A dsApplIfOutBytes }
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " A collection of objects for monitoring the Directory
3349N/A Server operations."
3349N/A ::= { dsGroups 2 }
3349N/A
3349N/A dsIntGroup OBJECT-GROUP
3349N/A OBJECTS {
3349N/A
3349N/A dsIntEntDirectoryName, dsIntEntTimeOfCreation,
3349N/A dsIntEntTimeOfLastAttempt, dsIntEntTimeOfLastSuccess,
3349N/A dsIntEntFailuresSinceLastSuccess, dsIntEntFailures,
3349N/A dsIntEntSuccesses, dsIntEntURL}
3349N/A STATUS current
3349N/A DESCRIPTION
3349N/A " A collection of objects for monitoring the Directory
3349N/A Server's interaction with peer Directory Servers."
3349N/A ::= { dsGroups 3 }
3349N/A
3349N/A END