Blame mibs/ietf/NETWORK-SERVICES-MIB

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