Blame mibs/NETWORK-SERVICES-MIB.txt

Packit fcad23
NETWORK-SERVICES-MIB DEFINITIONS ::= BEGIN
Packit fcad23
Packit fcad23
IMPORTS
Packit fcad23
    OBJECT-TYPE, Counter32, Gauge32, MODULE-IDENTITY, mib-2
Packit fcad23
      FROM SNMPv2-SMI
Packit fcad23
    TimeStamp, TEXTUAL-CONVENTION
Packit fcad23
      FROM SNMPv2-TC
Packit fcad23
    MODULE-COMPLIANCE, OBJECT-GROUP
Packit fcad23
      FROM SNMPv2-CONF
Packit fcad23
    SnmpAdminString
Packit fcad23
        FROM SNMP-FRAMEWORK-MIB;
Packit fcad23
Packit fcad23
application MODULE-IDENTITY
Packit fcad23
    LAST-UPDATED "200003030000Z"
Packit fcad23
    ORGANIZATION "IETF Mail and Directory Management Working Group"
Packit fcad23
Packit fcad23
    CONTACT-INFO
Packit fcad23
      "        Ned Freed
Packit fcad23
Packit fcad23
       Postal: Innosoft International, Inc.
Packit fcad23
               1050 Lakes Drive
Packit fcad23
               West Covina, CA 91790
Packit fcad23
               US
Packit fcad23
Packit fcad23
          Tel: +1 626 919 3600
Packit fcad23
          Fax: +1 626 919 3614
Packit fcad23
Packit fcad23
       E-Mail: ned.freed@innosoft.com"
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The MIB module describing network service applications"
Packit fcad23
    REVISION "200003030000Z"
Packit fcad23
    DESCRIPTION
Packit fcad23
      "This revision, published in RFC 2788, changes a number of
Packit fcad23
       DisplayStrings to SnmpAdminStrings. Note that this change
Packit fcad23
       is not strictly supported by SMIv2.  However, the alternative
Packit fcad23
       of deprecating the old objects and defining new objects
Packit fcad23
       would have a more adverse impact on backward compatibility
Packit fcad23
       and interoperability, given the particular semantics of
Packit fcad23
       these objects. The defining reference for distinguished
Packit fcad23
       names has also been updated from RFC 1779 to RFC 2253."
Packit fcad23
    REVISION "199905120000Z"
Packit fcad23
    DESCRIPTION
Packit fcad23
      "This revision fixes a few small technical problems found
Packit fcad23
       in previous versions, mostly in regards to the conformance
Packit fcad23
       groups for different versions of this MIB.  No changes have
Packit fcad23
       been made to the objects this MIB defines since RFC 2248."
Packit fcad23
    REVISION "199708170000Z"
Packit fcad23
    DESCRIPTION
Packit fcad23
      "This revision, published in RFC 2248, adds the
Packit fcad23
       applDescription and applURL objects, adds the quiescing
Packit fcad23
       state to the applOperStatus object and renames the MIB
Packit fcad23
       from the APPLICATION-MIB to the NETWORK-SERVICE-MIB."
Packit fcad23
    REVISION "199311280000Z"
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The original version of this MIB was published in RFC 1565"
Packit fcad23
    ::= {mib-2 27}
Packit fcad23
Packit fcad23
-- Textual conventions
Packit fcad23
Packit fcad23
-- DistinguishedName is used to refer to objects in the
Packit fcad23
-- directory.
Packit fcad23
Packit fcad23
DistinguishedName ::= TEXTUAL-CONVENTION
Packit fcad23
    DISPLAY-HINT "255a"
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "A Distinguished Name represented in accordance with
Packit fcad23
         RFC 2253, presented in the UTF-8 charset defined in
Packit fcad23
         RFC 2279."
Packit fcad23
    SYNTAX OCTET STRING (SIZE (0..255))
Packit fcad23
Packit fcad23
-- Uniform Resource Locators are stored in URLStrings.
Packit fcad23
Packit fcad23
URLString ::= TEXTUAL-CONVENTION
Packit fcad23
    DISPLAY-HINT "255a"
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "A Uniform Resource Locator represented in accordance
Packit fcad23
         with RFCs 1738 and 2368, presented in the NVT ASCII
Packit fcad23
         charset defined in RFC 854."
Packit fcad23
    SYNTAX OCTET STRING (SIZE (0..255))
Packit fcad23
Packit fcad23
-- The basic applTable contains a list of the application
Packit fcad23
-- entities.
Packit fcad23
Packit fcad23
applTable OBJECT-TYPE
Packit fcad23
    SYNTAX SEQUENCE OF ApplEntry
Packit fcad23
    MAX-ACCESS not-accessible
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The table holding objects which apply to all different
Packit fcad23
         kinds of applications providing network services.
Packit fcad23
         Each network service application capable of being
Packit fcad23
         monitored should have a single entry in this table."
Packit fcad23
    ::= {application 1}
Packit fcad23
Packit fcad23
applEntry OBJECT-TYPE
Packit fcad23
    SYNTAX ApplEntry
Packit fcad23
    MAX-ACCESS not-accessible
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "An entry associated with a single network service
Packit fcad23
       application."
Packit fcad23
    INDEX {applIndex}
Packit fcad23
    ::= {applTable 1}
Packit fcad23
Packit fcad23
ApplEntry ::= SEQUENCE {
Packit fcad23
    applIndex
Packit fcad23
        INTEGER,
Packit fcad23
    applName
Packit fcad23
        SnmpAdminString,
Packit fcad23
    applDirectoryName
Packit fcad23
Packit fcad23
        DistinguishedName,
Packit fcad23
    applVersion
Packit fcad23
        SnmpAdminString,
Packit fcad23
    applUptime
Packit fcad23
        TimeStamp,
Packit fcad23
    applOperStatus
Packit fcad23
        INTEGER,
Packit fcad23
    applLastChange
Packit fcad23
        TimeStamp,
Packit fcad23
    applInboundAssociations
Packit fcad23
        Gauge32,
Packit fcad23
    applOutboundAssociations
Packit fcad23
        Gauge32,
Packit fcad23
    applAccumulatedInboundAssociations
Packit fcad23
        Counter32,
Packit fcad23
    applAccumulatedOutboundAssociations
Packit fcad23
        Counter32,
Packit fcad23
    applLastInboundActivity
Packit fcad23
        TimeStamp,
Packit fcad23
    applLastOutboundActivity
Packit fcad23
        TimeStamp,
Packit fcad23
    applRejectedInboundAssociations
Packit fcad23
        Counter32,
Packit fcad23
    applFailedOutboundAssociations
Packit fcad23
        Counter32,
Packit fcad23
    applDescription
Packit fcad23
        SnmpAdminString,
Packit fcad23
    applURL
Packit fcad23
        URLString
Packit fcad23
}
Packit fcad23
Packit fcad23
applIndex OBJECT-TYPE
Packit fcad23
    SYNTAX INTEGER (1..2147483647)
Packit fcad23
    MAX-ACCESS not-accessible
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "An index to uniquely identify the network service
Packit fcad23
       application. This attribute is the index used for
Packit fcad23
       lexicographic ordering of the table."
Packit fcad23
    ::= {applEntry 1}
Packit fcad23
Packit fcad23
applName OBJECT-TYPE
Packit fcad23
    SYNTAX SnmpAdminString
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The name the network service application chooses to be
Packit fcad23
       known by."
Packit fcad23
    ::= {applEntry 2}
Packit fcad23
Packit fcad23
applDirectoryName OBJECT-TYPE
Packit fcad23
    SYNTAX DistinguishedName
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The Distinguished Name of the directory entry where
Packit fcad23
       static information about this application is stored.
Packit fcad23
       An empty string indicates that no information about
Packit fcad23
       the application is available in the directory."
Packit fcad23
    ::= {applEntry 3}
Packit fcad23
Packit fcad23
applVersion OBJECT-TYPE
Packit fcad23
    SYNTAX SnmpAdminString
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The version of network service application software.
Packit fcad23
       This field is usually defined by the vendor of the
Packit fcad23
       network service application software."
Packit fcad23
    ::= {applEntry 4}
Packit fcad23
applUptime OBJECT-TYPE
Packit fcad23
    SYNTAX TimeStamp
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The value of sysUpTime at the time the network service
Packit fcad23
       application was last initialized.  If the application was
Packit fcad23
       last initialized prior to the last initialization of the
Packit fcad23
       network management subsystem, then this object contains
Packit fcad23
       a zero value."
Packit fcad23
    ::= {applEntry 5}
Packit fcad23
Packit fcad23
applOperStatus OBJECT-TYPE
Packit fcad23
    SYNTAX INTEGER {
Packit fcad23
      up(1),
Packit fcad23
      down(2),
Packit fcad23
      halted(3),
Packit fcad23
      congested(4),
Packit fcad23
      restarting(5),
Packit fcad23
      quiescing(6)
Packit fcad23
    }
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "Indicates the operational status of the network service
Packit fcad23
       application. 'down' indicates that the network service is
Packit fcad23
Packit fcad23
       not available. 'up' indicates that the network service
Packit fcad23
       is operational and available.  'halted' indicates that the
Packit fcad23
       service is operational but not available.  'congested'
Packit fcad23
       indicates that the service is operational but no additional
Packit fcad23
       inbound associations can be accommodated.  'restarting'
Packit fcad23
       indicates that the service is currently unavailable but is
Packit fcad23
       in the process of restarting and will be available soon.
Packit fcad23
       'quiescing' indicates that service is currently operational
Packit fcad23
       but is in the process of shutting down. Additional inbound
Packit fcad23
       associations may be rejected by applications in the
Packit fcad23
       'quiescing' state."
Packit fcad23
    ::= {applEntry 6}
Packit fcad23
Packit fcad23
applLastChange OBJECT-TYPE
Packit fcad23
    SYNTAX TimeStamp
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The value of sysUpTime at the time the network service
Packit fcad23
       application entered its current operational state.  If
Packit fcad23
       the current state was entered prior to the last
Packit fcad23
       initialization of the local network management subsystem,
Packit fcad23
       then this object contains a zero value."
Packit fcad23
    ::= {applEntry 7}
Packit fcad23
Packit fcad23
applInboundAssociations OBJECT-TYPE
Packit fcad23
    SYNTAX Gauge32
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The number of current associations to the network service
Packit fcad23
       application, where it is the responder.  An inbound
Packit fcad23
       association occurs when another application successfully
Packit fcad23
       connects to this one."
Packit fcad23
    ::= {applEntry 8}
Packit fcad23
Packit fcad23
applOutboundAssociations OBJECT-TYPE
Packit fcad23
    SYNTAX Gauge32
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The number of current associations to the network service
Packit fcad23
       application, where it is the initiator.  An outbound
Packit fcad23
       association occurs when this application successfully
Packit fcad23
       connects to another one."
Packit fcad23
    ::= {applEntry 9}
Packit fcad23
Packit fcad23
applAccumulatedInboundAssociations OBJECT-TYPE
Packit fcad23
    SYNTAX Counter32
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The total number of associations to the application entity
Packit fcad23
       since application initialization, where it was the responder."
Packit fcad23
    ::= {applEntry 10}
Packit fcad23
Packit fcad23
applAccumulatedOutboundAssociations OBJECT-TYPE
Packit fcad23
    SYNTAX Counter32
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The total number of associations to the application entity
Packit fcad23
       since application initialization, where it was the initiator."
Packit fcad23
    ::= {applEntry 11}
Packit fcad23
Packit fcad23
applLastInboundActivity OBJECT-TYPE
Packit fcad23
    SYNTAX TimeStamp
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The value of sysUpTime at the time this application last
Packit fcad23
       had an inbound association.  If the last association
Packit fcad23
       occurred prior to the last initialization of the network
Packit fcad23
       subsystem, then this object contains a zero value."
Packit fcad23
    ::= {applEntry 12}
Packit fcad23
Packit fcad23
applLastOutboundActivity OBJECT-TYPE
Packit fcad23
    SYNTAX TimeStamp
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The value of sysUpTime at the time this application last
Packit fcad23
       had an outbound association.  If the last association
Packit fcad23
       occurred prior to the last initialization of the network
Packit fcad23
       subsystem, then this object contains a zero value."
Packit fcad23
    ::= {applEntry 13}
Packit fcad23
Packit fcad23
applRejectedInboundAssociations OBJECT-TYPE
Packit fcad23
    SYNTAX Counter32
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The total number of inbound associations the application
Packit fcad23
       entity has rejected, since application initialization.
Packit fcad23
       Rejected associations are not counted in the accumulated
Packit fcad23
       association totals.  Note that this only counts
Packit fcad23
Packit fcad23
       associations the application entity has rejected itself;
Packit fcad23
       it does not count rejections that occur at lower layers
Packit fcad23
       of the network.  Thus, this counter may not reflect the
Packit fcad23
       true number of failed inbound associations."
Packit fcad23
    ::= {applEntry 14}
Packit fcad23
Packit fcad23
applFailedOutboundAssociations OBJECT-TYPE
Packit fcad23
    SYNTAX Counter32
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The total number associations where the application entity
Packit fcad23
       is initiator and association establishment has failed,
Packit fcad23
       since application initialization.  Failed associations are
Packit fcad23
       not counted in the accumulated association totals."
Packit fcad23
    ::= {applEntry 15}
Packit fcad23
Packit fcad23
applDescription OBJECT-TYPE
Packit fcad23
    SYNTAX SnmpAdminString
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "A text description of the application.  This information
Packit fcad23
       is intended to identify and briefly describe the
Packit fcad23
       application in a status display."
Packit fcad23
    ::= {applEntry 16}
Packit fcad23
Packit fcad23
applURL OBJECT-TYPE
Packit fcad23
    SYNTAX URLString
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "A URL pointing to a description of the application.
Packit fcad23
       This information is intended to identify and describe
Packit fcad23
       the application in a status display."
Packit fcad23
    ::= {applEntry 17}
Packit fcad23
Packit fcad23
-- The assocTable augments the information in the applTable
Packit fcad23
-- with information about associations.  Note that two levels
Packit fcad23
-- of compliance are specified below, depending on whether
Packit fcad23
-- association monitoring is mandated.
Packit fcad23
Packit fcad23
assocTable OBJECT-TYPE
Packit fcad23
    SYNTAX SEQUENCE OF AssocEntry
Packit fcad23
    MAX-ACCESS not-accessible
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The table holding a set of all active application
Packit fcad23
Packit fcad23
         associations."
Packit fcad23
    ::= {application 2}
Packit fcad23
Packit fcad23
assocEntry OBJECT-TYPE
Packit fcad23
    SYNTAX AssocEntry
Packit fcad23
    MAX-ACCESS not-accessible
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "An entry associated with an association for a network
Packit fcad23
       service application."
Packit fcad23
    INDEX {applIndex, assocIndex}
Packit fcad23
    ::= {assocTable 1}
Packit fcad23
Packit fcad23
AssocEntry ::= SEQUENCE {
Packit fcad23
    assocIndex
Packit fcad23
        INTEGER,
Packit fcad23
    assocRemoteApplication
Packit fcad23
        SnmpAdminString,
Packit fcad23
    assocApplicationProtocol
Packit fcad23
        OBJECT IDENTIFIER,
Packit fcad23
    assocApplicationType
Packit fcad23
        INTEGER,
Packit fcad23
    assocDuration
Packit fcad23
        TimeStamp
Packit fcad23
}
Packit fcad23
Packit fcad23
assocIndex OBJECT-TYPE
Packit fcad23
    SYNTAX INTEGER (1..2147483647)
Packit fcad23
    MAX-ACCESS not-accessible
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "An index to uniquely identify each association for a network
Packit fcad23
       service application.  This attribute is the index that is
Packit fcad23
       used for lexicographic ordering of the table.  Note that the
Packit fcad23
       table is also indexed by the applIndex."
Packit fcad23
    ::= {assocEntry 1}
Packit fcad23
Packit fcad23
assocRemoteApplication OBJECT-TYPE
Packit fcad23
    SYNTAX SnmpAdminString
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The name of the system running remote network service
Packit fcad23
       application.  For an IP-based application this should be
Packit fcad23
       either a domain name or IP address.  For an OSI application
Packit fcad23
       it should be the string encoded distinguished name of the
Packit fcad23
       managed object.  For X.400(1984) MTAs which do not have a
Packit fcad23
       Distinguished Name, the RFC 2156 syntax 'mta in
Packit fcad23
Packit fcad23
       globalid' used in X400-Received: fields can be used. Note,
Packit fcad23
       however, that not all connections an MTA makes are
Packit fcad23
       necessarily to another MTA."
Packit fcad23
    ::= {assocEntry 2}
Packit fcad23
Packit fcad23
assocApplicationProtocol OBJECT-TYPE
Packit fcad23
    SYNTAX OBJECT IDENTIFIER
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "An identification of the protocol being used for the
Packit fcad23
       application.  For an OSI Application, this will be the
Packit fcad23
       Application Context.  For Internet applications, OID
Packit fcad23
       values of the form {applTCPProtoID port} or {applUDPProtoID
Packit fcad23
       port} are used for TCP-based and UDP-based protocols,
Packit fcad23
       respectively. In either case 'port' corresponds to the
Packit fcad23
       primary port number being used by the protocol. The
Packit fcad23
       usual IANA procedures may be used to register ports for
Packit fcad23
       new protocols."
Packit fcad23
    ::= {assocEntry 3}
Packit fcad23
Packit fcad23
assocApplicationType OBJECT-TYPE
Packit fcad23
    SYNTAX INTEGER {
Packit fcad23
        uainitiator(1),
Packit fcad23
        uaresponder(2),
Packit fcad23
        peerinitiator(3),
Packit fcad23
        peerresponder(4)}
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "This indicates whether the remote application is some type of
Packit fcad23
       client making use of this network service (e.g., a Mail User
Packit fcad23
       Agent) or a server acting as a peer. Also indicated is whether
Packit fcad23
       the remote end initiated an incoming connection to the network
Packit fcad23
       service or responded to an outgoing connection made by the
Packit fcad23
       local application.  MTAs and messaging gateways are
Packit fcad23
       considered to be peers for the purposes of this variable."
Packit fcad23
    ::= {assocEntry 4}
Packit fcad23
Packit fcad23
assocDuration OBJECT-TYPE
Packit fcad23
    SYNTAX TimeStamp
Packit fcad23
    MAX-ACCESS read-only
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The value of sysUpTime at the time this association was
Packit fcad23
       started.  If this association started prior to the last
Packit fcad23
       initialization of the network subsystem, then this
Packit fcad23
       object contains a zero value."
Packit fcad23
    ::= {assocEntry 5}
Packit fcad23
Packit fcad23
-- Conformance information
Packit fcad23
Packit fcad23
applConformance OBJECT IDENTIFIER ::= {application 3}
Packit fcad23
Packit fcad23
applGroups      OBJECT IDENTIFIER ::= {applConformance 1}
Packit fcad23
applCompliances OBJECT IDENTIFIER ::= {applConformance 2}
Packit fcad23
Packit fcad23
-- Compliance statements
Packit fcad23
Packit fcad23
applCompliance MODULE-COMPLIANCE
Packit fcad23
    STATUS obsolete
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The compliance statement for RFC 1565 implementations
Packit fcad23
       which support the Network Services Monitoring MIB
Packit fcad23
       for basic monitoring of network service applications.
Packit fcad23
       This is the basic compliance statement for RFC 1565."
Packit fcad23
    MODULE
Packit fcad23
      MANDATORY-GROUPS {applRFC1565Group}
Packit fcad23
    ::= {applCompliances 1}
Packit fcad23
Packit fcad23
assocCompliance MODULE-COMPLIANCE
Packit fcad23
    STATUS obsolete
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The compliance statement for RFC 1565 implementations
Packit fcad23
       which support the Network Services Monitoring MIB
Packit fcad23
       for basic monitoring of network service applications
Packit fcad23
       and their associations."
Packit fcad23
    MODULE
Packit fcad23
      MANDATORY-GROUPS {applRFC1565Group, assocRFC1565Group}
Packit fcad23
    ::= {applCompliances 2}
Packit fcad23
Packit fcad23
applRFC2248Compliance MODULE-COMPLIANCE
Packit fcad23
    STATUS deprecated
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The compliance statement for RFC 2248 implementations
Packit fcad23
       which support the Network Services Monitoring MIB
Packit fcad23
       for basic monitoring of network service applications."
Packit fcad23
    MODULE
Packit fcad23
      MANDATORY-GROUPS {applRFC2248Group}
Packit fcad23
    ::= {applCompliances 3}
Packit fcad23
Packit fcad23
assocRFC2248Compliance MODULE-COMPLIANCE
Packit fcad23
    STATUS deprecated
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The compliance statement for RFC 2248 implementations
Packit fcad23
Packit fcad23
       which support the Network Services Monitoring MIB for
Packit fcad23
       basic monitoring of network service applications and
Packit fcad23
       their associations."
Packit fcad23
    MODULE
Packit fcad23
      MANDATORY-GROUPS {applRFC2248Group, assocRFC2248Group}
Packit fcad23
    ::= {applCompliances 4}
Packit fcad23
Packit fcad23
applRFC2788Compliance MODULE-COMPLIANCE
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The compliance statement for RFC 2788 implementations
Packit fcad23
       which support the Network Services Monitoring MIB
Packit fcad23
       for basic monitoring of network service applications."
Packit fcad23
    MODULE
Packit fcad23
      MANDATORY-GROUPS {applRFC2788Group}
Packit fcad23
    ::= {applCompliances 5}
Packit fcad23
Packit fcad23
assocRFC2788Compliance MODULE-COMPLIANCE
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "The compliance statement for RFC 2788 implementations
Packit fcad23
       which support the Network Services Monitoring MIB for
Packit fcad23
       basic monitoring of network service applications and
Packit fcad23
       their associations."
Packit fcad23
    MODULE
Packit fcad23
      MANDATORY-GROUPS {applRFC2788Group, assocRFC2788Group}
Packit fcad23
    ::= {applCompliances 6}
Packit fcad23
Packit fcad23
-- Units of conformance
Packit fcad23
Packit fcad23
applRFC1565Group OBJECT-GROUP
Packit fcad23
    OBJECTS {
Packit fcad23
      applName, applVersion, applUptime, applOperStatus,
Packit fcad23
      applLastChange, applInboundAssociations,
Packit fcad23
      applOutboundAssociations, applAccumulatedInboundAssociations,
Packit fcad23
      applAccumulatedOutboundAssociations, applLastInboundActivity,
Packit fcad23
      applLastOutboundActivity, applRejectedInboundAssociations,
Packit fcad23
      applFailedOutboundAssociations}
Packit fcad23
    STATUS obsolete
Packit fcad23
    DESCRIPTION
Packit fcad23
      "A collection of objects providing basic monitoring of
Packit fcad23
       network service applications.  This is the original set
Packit fcad23
       of such objects defined in RFC 1565."
Packit fcad23
    ::= {applGroups 7}
Packit fcad23
Packit fcad23
assocRFC1565Group OBJECT-GROUP
Packit fcad23
    OBJECTS {
Packit fcad23
Packit fcad23
      assocRemoteApplication, assocApplicationProtocol,
Packit fcad23
      assocApplicationType, assocDuration}
Packit fcad23
    STATUS obsolete
Packit fcad23
    DESCRIPTION
Packit fcad23
      "A collection of objects providing basic monitoring of
Packit fcad23
       network service applications' associations.  This is the
Packit fcad23
       original set of such objects defined in RFC 1565."
Packit fcad23
    ::= {applGroups 2}
Packit fcad23
Packit fcad23
applRFC2248Group OBJECT-GROUP
Packit fcad23
    OBJECTS {
Packit fcad23
      applName, applVersion, applUptime, applOperStatus,
Packit fcad23
      applLastChange, applInboundAssociations,
Packit fcad23
      applOutboundAssociations, applAccumulatedInboundAssociations,
Packit fcad23
      applAccumulatedOutboundAssociations, applLastInboundActivity,
Packit fcad23
      applLastOutboundActivity, applRejectedInboundAssociations,
Packit fcad23
      applFailedOutboundAssociations, applDescription, applURL}
Packit fcad23
    STATUS deprecated
Packit fcad23
    DESCRIPTION
Packit fcad23
      "A collection of objects providing basic monitoring of
Packit fcad23
       network service applications.  This group was originally
Packit fcad23
       defined in RFC 2248; note that applDirectoryName is
Packit fcad23
       missing."
Packit fcad23
    ::= {applGroups 3}
Packit fcad23
Packit fcad23
assocRFC2248Group OBJECT-GROUP
Packit fcad23
    OBJECTS {
Packit fcad23
      assocRemoteApplication, assocApplicationProtocol,
Packit fcad23
      assocApplicationType, assocDuration}
Packit fcad23
    STATUS deprecated
Packit fcad23
    DESCRIPTION
Packit fcad23
      "A collection of objects providing basic monitoring of
Packit fcad23
       network service applications' associations.  This group
Packit fcad23
       was originally defined by RFC 2248."
Packit fcad23
    ::= {applGroups 4}
Packit fcad23
Packit fcad23
applRFC2788Group OBJECT-GROUP
Packit fcad23
    OBJECTS {
Packit fcad23
      applName, applDirectoryName, applVersion, applUptime,
Packit fcad23
      applOperStatus, applLastChange, applInboundAssociations,
Packit fcad23
      applOutboundAssociations, applAccumulatedInboundAssociations,
Packit fcad23
      applAccumulatedOutboundAssociations, applLastInboundActivity,
Packit fcad23
      applLastOutboundActivity, applRejectedInboundAssociations,
Packit fcad23
      applFailedOutboundAssociations, applDescription, applURL}
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "A collection of objects providing basic monitoring of
Packit fcad23
       network service applications.  This is the appropriate
Packit fcad23
Packit fcad23
       group for RFC 2788 -- it adds the applDirectoryName object
Packit fcad23
       missing in RFC 2248."
Packit fcad23
    ::= {applGroups 5}
Packit fcad23
Packit fcad23
assocRFC2788Group OBJECT-GROUP
Packit fcad23
    OBJECTS {
Packit fcad23
      assocRemoteApplication, assocApplicationProtocol,
Packit fcad23
      assocApplicationType, assocDuration}
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
      "A collection of objects providing basic monitoring of
Packit fcad23
       network service applications' associations.  This is
Packit fcad23
       the appropriate group for RFC 2788."
Packit fcad23
    ::= {applGroups 6}
Packit fcad23
Packit fcad23
-- OIDs of the form {applTCPProtoID port} are intended to be used
Packit fcad23
-- for TCP-based protocols that don't have OIDs assigned by other
Packit fcad23
-- means. {applUDPProtoID port} serves the same purpose for
Packit fcad23
-- UDP-based protocols. In either case 'port' corresponds to
Packit fcad23
-- the primary port number being used by the protocol. For example,
Packit fcad23
-- assuming no other OID is assigned for SMTP, an OID of
Packit fcad23
-- {applTCPProtoID 25} could be used, since SMTP is a TCP-based
Packit fcad23
-- protocol that uses port 25 as its primary port.
Packit fcad23
Packit fcad23
applTCPProtoID OBJECT IDENTIFIER ::= {application 4}
Packit fcad23
applUDPProtoID OBJECT IDENTIFIER ::= {application 5}
Packit fcad23
Packit fcad23
END