Blame mibs/ietf/ROHC-MIB

Packit 022b05
ROHC-MIB DEFINITIONS ::= BEGIN
Packit 022b05
Packit 022b05
IMPORTS
Packit 022b05
    MODULE-IDENTITY, OBJECT-TYPE,
Packit 022b05
    Unsigned32, Counter32, mib-2
Packit 022b05
        FROM SNMPv2-SMI                                -- [RFC2578]
Packit 022b05
Packit 022b05
    TEXTUAL-CONVENTION, TruthValue,
Packit 022b05
    TimeInterval, DateAndTime
Packit 022b05
        FROM SNMPv2-TC                                 -- [RFC2579]
Packit 022b05
Packit 022b05
    MODULE-COMPLIANCE, OBJECT-GROUP
Packit 022b05
        FROM SNMPv2-CONF                               -- [RFC2580]
Packit 022b05
Packit 022b05
    SnmpAdminString
Packit 022b05
        FROM SNMP-FRAMEWORK-MIB                        -- [RFC3411]
Packit 022b05
Packit 022b05
    ifIndex
Packit 022b05
        FROM IF-MIB;                                   -- [RFC2863]
Packit 022b05
Packit 022b05
rohcMIB MODULE-IDENTITY
Packit 022b05
    LAST-UPDATED "200406030000Z"  -- June 3, 2004
Packit 022b05
    ORGANIZATION "IETF Robust Header Compression Working Group"
Packit 022b05
    CONTACT-INFO
Packit 022b05
       "WG charter:
Packit 022b05
          http://www.ietf.org/html.charters/rohc-charter.html
Packit 022b05
Packit 022b05
        Mailing Lists:
Packit 022b05
          General Discussion: rohc@ietf.org
Packit 022b05
          To Subscribe: rohc-request@ietf.org
Packit 022b05
          In Body: subscribe your_email_address
Packit 022b05
Packit 022b05
        Editor:
Packit 022b05
          Juergen Quittek
Packit 022b05
          NEC Europe Ltd.
Packit 022b05
          Network Laboratories
Packit 022b05
          Kurfuersten-Anlage 36
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
          69221 Heidelberg
Packit 022b05
          Germany
Packit 022b05
          Tel: +49 6221 90511-15
Packit 022b05
          EMail: quittek@netlab.nec.de"
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This MIB module defines a set of basic objects for
Packit 022b05
         monitoring and configuring robust header compression.
Packit 022b05
         The module covers information about running instances
Packit 022b05
         of ROHC (compressors or decompressors) at IP interfaces.
Packit 022b05
Packit 022b05
         Information about compressor contexts and decompressor
Packit 022b05
         contexts has different structure for different profiles.
Packit 022b05
         Therefore it is not provided by this MIB module, but by
Packit 022b05
         individual modules for different profiles.
Packit 022b05
Packit 022b05
         Copyright (C) The Internet Society (2004). The
Packit 022b05
         initial version of this MIB module was published
Packit 022b05
         in RFC 3816. For full legal notices see the RFC
Packit 022b05
         itself or see:
Packit 022b05
         http://www.ietf.org/copyrights/ianamib.html"
Packit 022b05
Packit 022b05
    REVISION    "200406030000Z"  -- June 3, 2004
Packit 022b05
    DESCRIPTION "Initial version, published as RFC 3816."
Packit 022b05
    ::= { mib-2 112 }
Packit 022b05
Packit 022b05
RohcChannelIdentifier ::= TEXTUAL-CONVENTION
Packit 022b05
    DISPLAY-HINT "d"
Packit 022b05
    STATUS       current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A number identifying a channel.
Packit 022b05
         The value of 0 must not be used as identifier
Packit 022b05
         of an existing channel."
Packit 022b05
    SYNTAX       Unsigned32 (1..4294967295)
Packit 022b05
Packit 022b05
RohcChannelIdentifierOrZero ::= TEXTUAL-CONVENTION
Packit 022b05
    DISPLAY-HINT "d"
Packit 022b05
    STATUS       current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A number identifying a channel.
Packit 022b05
         The value of 0 is indicates that
Packit 022b05
         no channel is identified."
Packit 022b05
    SYNTAX       Unsigned32 (0..4294967295)
Packit 022b05
Packit 022b05
RohcCompressionRatio ::= TEXTUAL-CONVENTION
Packit 022b05
    DISPLAY-HINT "d"
Packit 022b05
    STATUS       current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A number indicating a compression ratio over
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
         a set of bytes.  The value is defined as
Packit 022b05
         1000 * bytes(compressed) / bytes(original)
Packit 022b05
         rounded to the next integer value.
Packit 022b05
Packit 022b05
         Note that compressed sets of bytes can be larger
Packit 022b05
         than the corresponding uncompressed ones.
Packit 022b05
         Therefore, the number can be greater than 1000."
Packit 022b05
    SYNTAX       Unsigned32
Packit 022b05
Packit 022b05
--
Packit 022b05
-- The groups defined within this MIB module:
Packit 022b05
--
Packit 022b05
Packit 022b05
rohcObjects       OBJECT IDENTIFIER ::= { rohcMIB 1 }
Packit 022b05
rohcConformance   OBJECT IDENTIFIER ::= { rohcMIB 2 }
Packit 022b05
Packit 022b05
--
Packit 022b05
-- The ROHC Instance group lists properties of ROHC
Packit 022b05
-- instances in the rohcInstanceTable, about the channels used
Packit 022b05
-- by the instances in the rohcChanneltable and about the profiles
Packit 022b05
-- available at the instances in the rohcProfileTable.
Packit 022b05
--
Packit 022b05
Packit 022b05
rohcInstanceObjects       OBJECT IDENTIFIER ::= { rohcObjects 1 }
Packit 022b05
Packit 022b05
--
Packit 022b05
-- Channel Table
Packit 022b05
--
Packit 022b05
-- Listing all channels used for ROHC data channel
Packit 022b05
-- and/or as feedback channel.
Packit 022b05
--
Packit 022b05
Packit 022b05
rohcChannelTable OBJECT-TYPE
Packit 022b05
    SYNTAX      SEQUENCE OF RohcChannelEntry
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This table lists and describes all ROHC channels
Packit 022b05
         per interface."
Packit 022b05
    ::= { rohcInstanceObjects 1 }
Packit 022b05
Packit 022b05
rohcChannelEntry OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcChannelEntry
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "An entry describing a particular script.  Every script that
Packit 022b05
         is stored in non-volatile memory is required to appear in
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
         this script table.
Packit 022b05
Packit 022b05
         Note, that the rohcChannelID identifies the channel
Packit 022b05
         uniquely.  The ifIndex is part of the index of this table
Packit 022b05
         just in order to allow addressing channels per interface."
Packit 022b05
    INDEX { ifIndex, rohcChannelID }
Packit 022b05
    ::= { rohcChannelTable 1 }
Packit 022b05
Packit 022b05
RohcChannelEntry ::= SEQUENCE {
Packit 022b05
    rohcChannelID               RohcChannelIdentifier,
Packit 022b05
    rohcChannelType             INTEGER,
Packit 022b05
    rohcChannelFeedbackFor      RohcChannelIdentifierOrZero,
Packit 022b05
    rohcChannelDescr            SnmpAdminString,
Packit 022b05
    rohcChannelStatus           INTEGER
Packit 022b05
}
Packit 022b05
Packit 022b05
rohcChannelID OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcChannelIdentifier
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The locally arbitrary, but unique identifier associated
Packit 022b05
         with this channel.  The value is REQUIRED to be unique
Packit 022b05
         per ROHC MIB implementation independent of the associated
Packit 022b05
         interface.
Packit 022b05
Packit 022b05
         The value is REQUIRED to remain constant at least from one
Packit 022b05
         re-initialization of the entity's network management system
Packit 022b05
         to the next re-initialization.  It is RECOMMENDED that the
Packit 022b05
         value persist across such re-initializations."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.1.1"
Packit 022b05
    ::= { rohcChannelEntry 2 }
Packit 022b05
Packit 022b05
rohcChannelType OBJECT-TYPE
Packit 022b05
    SYNTAX      INTEGER {
Packit 022b05
                    notInUse(1),
Packit 022b05
                    rohc(2),
Packit 022b05
                    dedicatedFeedback(3)
Packit 022b05
                }
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Type of usage of the channel.  A channel might be currently
Packit 022b05
         not in use for ROHC or feedback, it might be in use as
Packit 022b05
         a ROHC channel carrying packets and optional piggy-backed
Packit 022b05
         feedback, or it might be used as a dedicated feedback
Packit 022b05
         channel exclusively carrying feedback."
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    ::= { rohcChannelEntry 3 }
Packit 022b05
Packit 022b05
rohcChannelFeedbackFor OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcChannelIdentifierOrZero
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The index of another channel of this interface for which
Packit 022b05
         the channel serves as feedback channel.
Packit 022b05
Packit 022b05
         If no feedback information is transferred on this channel,
Packit 022b05
         then the value of this ID is 0.  If the channel type is set
Packit 022b05
         to notInUse(1), then the value of this object must be 0.
Packit 022b05
         If the channel type is rohc(2) and the value of this object
Packit 022b05
         is a valid channel ID, then feedback information is
Packit 022b05
         piggy-backed on the ROHC channel.  If the channel type is
Packit 022b05
         dedicatedFeedback(3), then feedback is transferred on this
Packit 022b05
         channel and the value of this object MUST be different from
Packit 022b05
         0 and MUST identify an existing ROHC channel."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.1.1"
Packit 022b05
    ::= { rohcChannelEntry 4 }
Packit 022b05
Packit 022b05
rohcChannelDescr OBJECT-TYPE
Packit 022b05
    SYNTAX      SnmpAdminString
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A textual description of the channel."
Packit 022b05
    ::= { rohcChannelEntry 5 }
Packit 022b05
Packit 022b05
rohcChannelStatus OBJECT-TYPE
Packit 022b05
    SYNTAX      INTEGER {
Packit 022b05
                    enabled(1),
Packit 022b05
                    disabled(2)
Packit 022b05
                }
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Status of the channel."
Packit 022b05
    ::= { rohcChannelEntry 6 }
Packit 022b05
Packit 022b05
--
Packit 022b05
-- Instances of ROHC
Packit 022b05
--
Packit 022b05
-- This table lists properties of running instances of ROHC
Packit 022b05
-- compressors and decompressors at the managed node.
Packit 022b05
--
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
rohcInstanceTable OBJECT-TYPE
Packit 022b05
    SYNTAX      SEQUENCE OF RohcInstanceEntry
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This table lists properties of running instances
Packit 022b05
         of robust header compressors and decompressors
Packit 022b05
         at IP interfaces.  It is indexed by interface number,
Packit 022b05
         the type of instance (compressor or decompressor),
Packit 022b05
         and the ID of the channel used by the instance as
Packit 022b05
         ROHC channel.
Packit 022b05
Packit 022b05
         Note that the rohcChannelID uniquely identifies an
Packit 022b05
         instance.  The ifIndex and rohcInstanceType are part
Packit 022b05
         of the index, because it simplifies accessing instances
Packit 022b05
         per interface and for addressing either compressors or
Packit 022b05
         decompressors only."
Packit 022b05
    ::= { rohcInstanceObjects 2 }
Packit 022b05
Packit 022b05
rohcInstanceEntry OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcInstanceEntry
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "An entry describing a particular instance
Packit 022b05
         of a robust header compressor or decompressor."
Packit 022b05
    INDEX { ifIndex, rohcInstanceType, rohcChannelID }
Packit 022b05
    ::= { rohcInstanceTable 1 }
Packit 022b05
Packit 022b05
RohcInstanceEntry ::= SEQUENCE {
Packit 022b05
    rohcInstanceType               INTEGER,
Packit 022b05
    rohcInstanceFBChannelID        RohcChannelIdentifierOrZero,
Packit 022b05
    rohcInstanceVendor             OBJECT IDENTIFIER,
Packit 022b05
    rohcInstanceVersion            SnmpAdminString,
Packit 022b05
    rohcInstanceDescr              SnmpAdminString,
Packit 022b05
    rohcInstanceClockRes           Unsigned32,
Packit 022b05
    rohcInstanceMaxCID             Unsigned32,
Packit 022b05
    rohcInstanceLargeCIDs          TruthValue,
Packit 022b05
    rohcInstanceMRRU               Unsigned32,
Packit 022b05
    rohcInstanceContextStorageTime TimeInterval,
Packit 022b05
    rohcInstanceStatus             INTEGER,
Packit 022b05
    rohcInstanceContextsTotal      Counter32,
Packit 022b05
    rohcInstanceContextsCurrent    Unsigned32,
Packit 022b05
    rohcInstancePackets            Counter32,
Packit 022b05
    rohcInstanceIRs                Counter32,
Packit 022b05
    rohcInstanceIRDYNs             Counter32,
Packit 022b05
    rohcInstanceFeedbacks          Counter32,
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    rohcInstanceCompressionRatio   RohcCompressionRatio
Packit 022b05
}
Packit 022b05
Packit 022b05
rohcInstanceType OBJECT-TYPE
Packit 022b05
    SYNTAX      INTEGER {
Packit 022b05
                    compressor(1),
Packit 022b05
                    decompressor(2)
Packit 022b05
                }
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Type of the instance of ROHC. It is either a
Packit 022b05
         compressor instance or a decompressor instance."
Packit 022b05
    ::= { rohcInstanceEntry 2 }
Packit 022b05
Packit 022b05
rohcInstanceFBChannelID OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcChannelIdentifierOrZero
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Identifier of the channel used for feedback.
Packit 022b05
         If no feedback channel is used, the value of
Packit 022b05
         this object is 0 ."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.1.1"
Packit 022b05
    ::= { rohcInstanceEntry 4 }
Packit 022b05
Packit 022b05
rohcInstanceVendor OBJECT-TYPE
Packit 022b05
    SYNTAX      OBJECT IDENTIFIER
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "An object identifier that identifies the vendor who
Packit 022b05
         provides the implementation of robust header description.
Packit 022b05
         This object identifier SHALL point to the object identifier
Packit 022b05
         directly below the enterprise object identifier
Packit 022b05
         {1 3 6 1 4 1} allocated for the vendor.  The value must be
Packit 022b05
         the object identifier {0 0} if the vendor is not known."
Packit 022b05
    ::= { rohcInstanceEntry 5 }
Packit 022b05
Packit 022b05
rohcInstanceVersion OBJECT-TYPE
Packit 022b05
    SYNTAX      SnmpAdminString (SIZE (0..32))
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The version number of the implementation of robust header
Packit 022b05
         compression.  The zero-length string shall be used if the
Packit 022b05
         implementation does not have a version number.
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
         It is suggested that the version number consist of one or
Packit 022b05
         more decimal numbers separated by dots, where the first
Packit 022b05
         number is called the major version number."
Packit 022b05
    ::= { rohcInstanceEntry 6 }
Packit 022b05
Packit 022b05
rohcInstanceDescr OBJECT-TYPE
Packit 022b05
    SYNTAX      SnmpAdminString
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A textual description of the implementation."
Packit 022b05
    ::= { rohcInstanceEntry 7 }
Packit 022b05
Packit 022b05
rohcInstanceClockRes OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32
Packit 022b05
    UNITS       "milliseconds"
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the system clock resolution in
Packit 022b05
         units of milliseconds.  A zero (0) value means that there
Packit 022b05
         is no clock available."
Packit 022b05
    ::= { rohcInstanceEntry 8 }
Packit 022b05
Packit 022b05
rohcInstanceMaxCID OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32 (1..16383)
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The highest context ID number to be used by the
Packit 022b05
         compressor.  Note that this parameter is not coupled to,
Packit 022b05
         but in effect further constrained by,
Packit 022b05
         rohcChannelLargeCIDs."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.1.1"
Packit 022b05
    ::= { rohcInstanceEntry 9 }
Packit 022b05
Packit 022b05
rohcInstanceLargeCIDs OBJECT-TYPE
Packit 022b05
    SYNTAX      TruthValue
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "When retrieved, this boolean object returns false if
Packit 022b05
         the short CID representation (0 bytes or 1 prefix byte,
Packit 022b05
         covering CID 0 to 15) is used; it returns true, if the
Packit 022b05
         embedded CID representation (1 or 2 embedded CID bytes
Packit 022b05
         covering CID 0 to 16383) is used."
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.1.1"
Packit 022b05
    ::= { rohcInstanceEntry 10 }
Packit 022b05
Packit 022b05
rohcInstanceMRRU OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Maximum reconstructed reception unit.  This is the
Packit 022b05
         size of the largest reconstructed unit in octets that
Packit 022b05
         the decompressor is expected to reassemble from
Packit 022b05
         segments (see RFC 3095, Section 5.2.5).  Note that this
Packit 022b05
         size includes the CRC.  If MRRU is negotiated to be 0,
Packit 022b05
         no segment headers are allowed on the channel."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.1.1"
Packit 022b05
    ::= { rohcInstanceEntry 11 }
Packit 022b05
Packit 022b05
rohcInstanceContextStorageTime OBJECT-TYPE
Packit 022b05
    SYNTAX      TimeInterval
Packit 022b05
    UNITS       "centi-seconds"
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the default maximum amount of time
Packit 022b05
         information on a context belonging to this instance is kept
Packit 022b05
         as entry in the rohcContextTable after the context is
Packit 022b05
         expired or terminated.  The value of this object is used
Packit 022b05
         to initialize rohcContexStorageTime object when a new
Packit 022b05
         context is created.
Packit 022b05
         Changing the value of an rohcInstanceContextStorageTime
Packit 022b05
         instance does not affect any entry of the rohcContextTable
Packit 022b05
         created previously.
Packit 022b05
         ROHC-MIB implementations SHOULD store the set value of this
Packit 022b05
         object persistently."
Packit 022b05
    DEFVAL { 360000 }
Packit 022b05
    ::= { rohcInstanceEntry 12 }
Packit 022b05
Packit 022b05
rohcInstanceStatus OBJECT-TYPE
Packit 022b05
    SYNTAX      INTEGER {
Packit 022b05
                    enabled(1),
Packit 022b05
                    disabled(2)
Packit 022b05
                }
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Status of the instance of ROHC."
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    ::= { rohcInstanceEntry 13 }
Packit 022b05
Packit 022b05
rohcInstanceContextsTotal OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Counter of all contexts created by this instance.
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
         value of ifCounterDiscontinuityTime."
Packit 022b05
    ::= { rohcInstanceEntry 14 }
Packit 022b05
Packit 022b05
rohcInstanceContextsCurrent OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Number of currently active contexts created by this
Packit 022b05
         instance."
Packit 022b05
    ::= { rohcInstanceEntry 15 }
Packit 022b05
Packit 022b05
rohcInstancePackets OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Counter of all packets passing this instance.
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
         value of ifCounterDiscontinuityTime."
Packit 022b05
    ::= { rohcInstanceEntry 16 }
Packit 022b05
Packit 022b05
rohcInstanceIRs OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The number of all IR packets that are either sent
Packit 022b05
         or received by this instance.
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
         value of ifCounterDiscontinuityTime."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.7.7.1"
Packit 022b05
    ::= { rohcInstanceEntry 17 }
Packit 022b05
Packit 022b05
rohcInstanceIRDYNs OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The number of all IR-DYN packets that are either sent
Packit 022b05
         or received by this instance.
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
         value of ifCounterDiscontinuityTime."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.7.7.2"
Packit 022b05
    ::= { rohcInstanceEntry 18 }
Packit 022b05
Packit 022b05
rohcInstanceFeedbacks OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The number of all feedbacks that are either sent
Packit 022b05
         or received by this instance.
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
         value of ifCounterDiscontinuityTime."
Packit 022b05
    ::= { rohcInstanceEntry 19 }
Packit 022b05
Packit 022b05
rohcInstanceCompressionRatio OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcCompressionRatio
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the compression ratio so far over all
Packit 022b05
         packets on the channel served by this instance.  The
Packit 022b05
         compression is computed over all bytes of the IP packets
Packit 022b05
         including the IP header but excluding all lower layer
Packit 022b05
         headers."
Packit 022b05
    ::= { rohcInstanceEntry 20 }
Packit 022b05
Packit 022b05
--
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
-- Profile Table
Packit 022b05
--
Packit 022b05
Packit 022b05
rohcProfileTable OBJECT-TYPE
Packit 022b05
    SYNTAX      SEQUENCE OF RohcProfileEntry
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This table lists a set of profiles supported by the
Packit 022b05
         instance."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.1.1"
Packit 022b05
    ::= { rohcInstanceObjects 3 }
Packit 022b05
Packit 022b05
rohcProfileEntry OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcProfileEntry
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "An entry describing a particular profile supported by
Packit 022b05
         the instance.  It is indexed by the rohcChannelID
Packit 022b05
         identifying the instance and by the rohcProfile."
Packit 022b05
    INDEX { rohcChannelID, rohcProfile }
Packit 022b05
    ::= { rohcProfileTable 1 }
Packit 022b05
Packit 022b05
RohcProfileEntry ::= SEQUENCE {
Packit 022b05
    rohcProfile            Unsigned32,
Packit 022b05
    rohcProfileVendor      OBJECT IDENTIFIER,
Packit 022b05
    rohcProfileVersion     SnmpAdminString,
Packit 022b05
    rohcProfileDescr       SnmpAdminString,
Packit 022b05
    rohcProfileNegotiated  TruthValue
Packit 022b05
}
Packit 022b05
Packit 022b05
rohcProfile OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32 (0..65535)
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Identifier of a profile supported.  For a listing of
Packit 022b05
         possible profile values, see the IANA registry for
Packit 022b05
         'RObust Header Compression (ROHC) Profile Identifiers'
Packit 022b05
         at http://www.iana.org/assignments/rohc-pro-ids"
Packit 022b05
    ::= { rohcProfileEntry 2 }
Packit 022b05
Packit 022b05
rohcProfileVendor OBJECT-TYPE
Packit 022b05
    SYNTAX      OBJECT IDENTIFIER
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    DESCRIPTION
Packit 022b05
        "An object identifier that identifies the vendor who
Packit 022b05
         provides the implementation of robust header description.
Packit 022b05
         This object identifier SHALL point to the object identifier
Packit 022b05
         directly below the enterprise object identifier
Packit 022b05
         {1 3 6 1 4 1} allocated for the vendor.  The value must be
Packit 022b05
         the object identifier {0 0} if the vendor is not known."
Packit 022b05
    ::= { rohcProfileEntry 3 }
Packit 022b05
Packit 022b05
rohcProfileVersion OBJECT-TYPE
Packit 022b05
    SYNTAX      SnmpAdminString (SIZE (0..32))
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The version number of the implementation of robust header
Packit 022b05
         compression.  The zero-length string shall be used if the
Packit 022b05
         implementation does not have a version number.
Packit 022b05
Packit 022b05
         It is suggested that the version number consist of one or
Packit 022b05
         more decimal numbers separated by dots, where the first
Packit 022b05
         number is called the major version number."
Packit 022b05
    ::= { rohcProfileEntry 4 }
Packit 022b05
Packit 022b05
rohcProfileDescr OBJECT-TYPE
Packit 022b05
    SYNTAX      SnmpAdminString
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A textual description of the implementation."
Packit 022b05
    ::= { rohcProfileEntry 5 }
Packit 022b05
Packit 022b05
rohcProfileNegotiated OBJECT-TYPE
Packit 022b05
    SYNTAX      TruthValue
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "When retrieved, this boolean object returns true
Packit 022b05
         if the profile has been negotiated to be used at
Packit 022b05
         the instance, i.e., is supported also be the
Packit 022b05
         corresponding compressor/decompressor."
Packit 022b05
    ::= { rohcProfileEntry 6 }
Packit 022b05
Packit 022b05
--
Packit 022b05
-- Context Table
Packit 022b05
--
Packit 022b05
Packit 022b05
rohcContextTable OBJECT-TYPE
Packit 022b05
    SYNTAX      SEQUENCE OF RohcContextEntry
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This table lists and describes all compressor contexts
Packit 022b05
         per instance."
Packit 022b05
    ::= { rohcObjects 2 }
Packit 022b05
Packit 022b05
rohcContextEntry OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcContextEntry
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "An entry describing a particular compressor context."
Packit 022b05
    INDEX {
Packit 022b05
        rohcChannelID,
Packit 022b05
        rohcContextCID
Packit 022b05
    }
Packit 022b05
    ::= { rohcContextTable 1 }
Packit 022b05
Packit 022b05
RohcContextEntry ::= SEQUENCE {
Packit 022b05
    rohcContextCID                  Unsigned32,
Packit 022b05
    rohcContextCIDState             INTEGER,
Packit 022b05
    rohcContextProfile              Unsigned32,
Packit 022b05
    rohcContextDecompressorDepth    Unsigned32,
Packit 022b05
    rohcContextStorageTime          TimeInterval,
Packit 022b05
    rohcContextActivationTime       DateAndTime,
Packit 022b05
    rohcContextDeactivationTime     DateAndTime,
Packit 022b05
    rohcContextPackets              Counter32,
Packit 022b05
    rohcContextIRs                  Counter32,
Packit 022b05
    rohcContextIRDYNs               Counter32,
Packit 022b05
    rohcContextFeedbacks            Counter32,
Packit 022b05
    rohcContextDecompressorFailures Counter32,
Packit 022b05
    rohcContextDecompressorRepairs  Counter32,
Packit 022b05
    rohcContextAllPacketsRatio      RohcCompressionRatio,
Packit 022b05
    rohcContextAllHeadersRatio      RohcCompressionRatio,
Packit 022b05
    rohcContextAllPacketsMeanSize   Unsigned32,
Packit 022b05
    rohcContextAllHeadersMeanSize   Unsigned32,
Packit 022b05
    rohcContextLastPacketsRatio     RohcCompressionRatio,
Packit 022b05
    rohcContextLastHeadersRatio     RohcCompressionRatio,
Packit 022b05
    rohcContextLastPacketsMeanSize  Unsigned32,
Packit 022b05
    rohcContextLastHeadersMeanSize  Unsigned32
Packit 022b05
}
Packit 022b05
Packit 022b05
rohcContextCID OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32 (0..16383)
Packit 022b05
    MAX-ACCESS  not-accessible
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        "The context identifier (CID) of this context."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Sections 5.1.1 and 5.1.3"
Packit 022b05
    ::= { rohcContextEntry 2 }
Packit 022b05
Packit 022b05
rohcContextCIDState OBJECT-TYPE
Packit 022b05
    SYNTAX      INTEGER {
Packit 022b05
                    unused(1),
Packit 022b05
                    active(2),
Packit 022b05
                    expired(3),
Packit 022b05
                    terminated(4)
Packit 022b05
                }
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "State of the CID.  When a CID is assigned to a context,
Packit 022b05
         its state changes from `unused' to `active'.  The active
Packit 022b05
         context may stop operation due to some explicit
Packit 022b05
         signalling or after observing no packet for some specified
Packit 022b05
         time.  In the first case then the CID state changes to
Packit 022b05
         `terminated', in the latter case it changes to `expired'.
Packit 022b05
         If the CID is re-used again for another context, the
Packit 022b05
         state changes back to `active'."
Packit 022b05
    ::= { rohcContextEntry 3 }
Packit 022b05
Packit 022b05
rohcContextProfile OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32 (0..65535)
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "Identifier of the profile for this context.
Packit 022b05
         The profile is identified by its index in the
Packit 022b05
         rohcProfileTable for this instance.  There MUST exist a
Packit 022b05
         corresponding entry in the rohcProfileTable using the
Packit 022b05
         value of rohcContextProfile as second part of the index
Packit 022b05
         (and using the same rohcChannelID as first part of the
Packit 022b05
         index)."
Packit 022b05
    ::= { rohcContextEntry 4 }
Packit 022b05
Packit 022b05
rohcContextDecompressorDepth OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates whether reverse decompression, for
Packit 022b05
         example as described in RFC 3095, Section 6.1, is used
Packit 022b05
         on this channel or not, and if used, to what extent.
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
         Its value is only valid for decompressor contexts, i.e.,
Packit 022b05
         if rohcInstanceType has the value decompressor(2).  For
Packit 022b05
         compressor contexts where rohcInstanceType has the value
Packit 022b05
         compressor(1), the value of this object is irrelevant
Packit 022b05
         and MUST be set to zero (0).
Packit 022b05
Packit 022b05
         The value of the reverse decompression depth indicates
Packit 022b05
         the maximum number of packets that are buffered, and thus
Packit 022b05
         possibly be reverse decompressed by the decompressor.
Packit 022b05
         A zero (0) value means that reverse decompression is not
Packit 022b05
         used."
Packit 022b05
    ::= { rohcContextEntry 5 }
Packit 022b05
Packit 022b05
rohcContextStorageTime OBJECT-TYPE
Packit 022b05
    SYNTAX      TimeInterval
Packit 022b05
    UNITS       "centi-seconds"
Packit 022b05
    MAX-ACCESS  read-write
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The value of this object specifies how long this row
Packit 022b05
         can exist in the rohcContextTable after the
Packit 022b05
         rohcContextCIDState switched to expired(3) or
Packit 022b05
         terminated(4).  This object returns  the remaining time
Packit 022b05
         that the row may exist before it is aged out.  The object
Packit 022b05
         is initialized with the value of the  associated
Packit 022b05
         rohcContextStorageTime object.  After expiration or
Packit 022b05
         termination of the context, the value of this object ticks
Packit 022b05
         backwards.  The entry in the rohcContextTable is destroyed
Packit 022b05
         when the value reaches 0.
Packit 022b05
Packit 022b05
         The value of this object may be set in order to increase or
Packit 022b05
         reduce the remaining time that the row may exist.  Setting
Packit 022b05
         the value to 0 will destroy this entry as soon as the
Packit 022b05
         rochContextCIDState has the value expired(3) or
Packit 022b05
         terminated(4).
Packit 022b05
Packit 022b05
         Note that there is no guarantee that the row is stored as
Packit 022b05
         long as this object indicates.  In case of limited CID
Packit 022b05
         space, the instance may re-use a CID before the storage
Packit 022b05
         time of the corresponding row in rohcContextTable reaches
Packit 022b05
         the value of 0.  In this case the information stored in this
Packit 022b05
         row is not anymore available."
Packit 022b05
    ::= { rohcContextEntry 6 }
Packit 022b05
Packit 022b05
rohcContextActivationTime OBJECT-TYPE
Packit 022b05
    SYNTAX      DateAndTime
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The date and time when the context started to be able to
Packit 022b05
         compress packets or decompress packets, respectively.
Packit 022b05
         The value '0000000000000000'H is returned if the context
Packit 022b05
         has not been activated yet."
Packit 022b05
    DEFVAL { '0000000000000000'H }
Packit 022b05
    ::= { rohcContextEntry 7 }
Packit 022b05
Packit 022b05
rohcContextDeactivationTime OBJECT-TYPE
Packit 022b05
    SYNTAX      DateAndTime
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The date and time when the context stopped being able to
Packit 022b05
         compress packets or decompress packets, respectively,
Packit 022b05
         because it expired or was terminated for other reasons.
Packit 022b05
         The value '0000000000000000'H is returned if the context
Packit 022b05
         has not been deactivated yet."
Packit 022b05
    DEFVAL { '0000000000000000'H }
Packit 022b05
    ::= { rohcContextEntry 8 }
Packit 022b05
Packit 022b05
rohcContextPackets OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The number of all packets passing this context.
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
         value of ifCounterDiscontinuityTime.  For checking
Packit 022b05
         ifCounterDiscontinuityTime, the interface index is
Packit 022b05
         required.  It can be determined by reading the
Packit 022b05
         rohcChannelTable."
Packit 022b05
    ::= { rohcContextEntry 9 }
Packit 022b05
Packit 022b05
rohcContextIRs OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The number of all IR packets sent or received,
Packit 022b05
         respectively, by this context.
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
         value of ifCounterDiscontinuityTime.  For checking
Packit 022b05
         ifCounterDiscontinuityTime, the interface index is
Packit 022b05
         required.  It can be determined by reading the
Packit 022b05
         rohcChannelTable."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.7.7.1"
Packit 022b05
    ::= { rohcContextEntry 10 }
Packit 022b05
Packit 022b05
rohcContextIRDYNs OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The number of all IR-DYN packets sent or received,
Packit 022b05
         respectively, by this context.
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
         value of ifCounterDiscontinuityTime.  For checking
Packit 022b05
         ifCounterDiscontinuityTime, the interface index is
Packit 022b05
         required.  It can be determined by reading the
Packit 022b05
         rohcChannelTable."
Packit 022b05
    REFERENCE
Packit 022b05
        "RFC 3095, Section 5.7.7.2"
Packit 022b05
    ::= { rohcContextEntry 11 }
Packit 022b05
Packit 022b05
rohcContextFeedbacks OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The number of all feedbacks sent or received,
Packit 022b05
         respectively, by this context.
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
         value of ifCounterDiscontinuityTime.  For checking
Packit 022b05
         ifCounterDiscontinuityTime, the interface index is
Packit 022b05
         required.  It can be determined by reading the
Packit 022b05
         rohcChannelTable."
Packit 022b05
    ::= { rohcContextEntry 12 }
Packit 022b05
Packit 022b05
rohcContextDecompressorFailures OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The number of all decompressor failures so far in this
Packit 022b05
         context. The number is only valid for decompressor
Packit 022b05
         contexts, i.e., if rohcInstanceType has the value
Packit 022b05
         decompressor(2).
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
         value of ifCounterDiscontinuityTime.  For checking
Packit 022b05
         ifCounterDiscontinuityTime, the interface index is
Packit 022b05
         required.  It can be determined by reading the
Packit 022b05
         rohcChannelTable."
Packit 022b05
    ::= { rohcContextEntry 13 }
Packit 022b05
Packit 022b05
rohcContextDecompressorRepairs OBJECT-TYPE
Packit 022b05
    SYNTAX      Counter32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The number of all context repairs so far in this
Packit 022b05
         context.  The number is only valid for decompressor
Packit 022b05
         contexts, i.e., if rohcInstanceType has the value
Packit 022b05
         decompressor(2).
Packit 022b05
Packit 022b05
         Discontinuities in the value of this counter can
Packit 022b05
         occur at re-initialization of the management
Packit 022b05
         system, and at other times as indicated by the
Packit 022b05
         value of ifCounterDiscontinuityTime.  For checking
Packit 022b05
         ifCounterDiscontinuityTime, the interface index is
Packit 022b05
         required.  It can be determined by reading the
Packit 022b05
         rohcChannelTable."
Packit 022b05
    ::= { rohcContextEntry 14 }
Packit 022b05
Packit 022b05
rohcContextAllPacketsRatio OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcCompressionRatio
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the compression ratio so far over all
Packit 022b05
         packets passing this context.  The compression is computed
Packit 022b05
         over all bytes of the IP packets including the IP header
Packit 022b05
         but excluding all lower layer headers."
Packit 022b05
    ::= { rohcContextEntry 15 }
Packit 022b05
Packit 022b05
rohcContextAllHeadersRatio OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcCompressionRatio
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the compression ratio so far over all
Packit 022b05
         packet headers passing this context.  The compression is
Packit 022b05
         computed over all bytes of all headers that are subject to
Packit 022b05
         compression for the used profile."
Packit 022b05
    ::= { rohcContextEntry 16 }
Packit 022b05
Packit 022b05
rohcContextAllPacketsMeanSize OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the mean compressed packet size
Packit 022b05
         of all packets passing this context.  The packet size
Packit 022b05
         includes the IP header and payload but excludes all lower
Packit 022b05
         layer headers.  The mean value is given in byte rounded
Packit 022b05
         to the next integer value."
Packit 022b05
    ::= { rohcContextEntry 17 }
Packit 022b05
Packit 022b05
rohcContextAllHeadersMeanSize OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the mean compressed packet header size
Packit 022b05
         of all packets passing this context.  The packet header size
Packit 022b05
         is the sum of the size of all headers of a packet that are
Packit 022b05
         subject to compression for the used profile.  The mean value
Packit 022b05
         is given in byte rounded to the next integer value."
Packit 022b05
    ::= { rohcContextEntry 18 }
Packit 022b05
Packit 022b05
rohcContextLastPacketsRatio OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcCompressionRatio
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the compression ratio
Packit 022b05
         concerning the last 16 packets passing this context
Packit 022b05
         or concerning all packets passing this context
Packit 022b05
         if they are less than 16, so far.  The compression is
Packit 022b05
         computed over all bytes of the IP packets including the IP
Packit 022b05
         header but excluding all lower layer headers."
Packit 022b05
    ::= { rohcContextEntry 19 }
Packit 022b05
Packit 022b05
rohcContextLastHeadersRatio OBJECT-TYPE
Packit 022b05
    SYNTAX      RohcCompressionRatio
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the compression ratio concerning the
Packit 022b05
         headers of the last 16 packets passing this context or
Packit 022b05
         concerning the headers of all packets passing this context
Packit 022b05
         if they are less than 16, so far.  The compression is
Packit 022b05
         computed over all bytes of all headers that are subject to
Packit 022b05
         compression for the used profile."
Packit 022b05
    ::= { rohcContextEntry 20 }
Packit 022b05
Packit 022b05
rohcContextLastPacketsMeanSize OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the mean compressed packet size
Packit 022b05
         concerning the last 16 packets passing this context or
Packit 022b05
         concerning all packets passing this context if they are
Packit 022b05
         less than 16, so far.  The packet size includes the IP
Packit 022b05
         header and payload but excludes all lower layer headers.
Packit 022b05
         The mean value is given in byte rounded to the next
Packit 022b05
         integer value."
Packit 022b05
    ::= { rohcContextEntry 21 }
Packit 022b05
Packit 022b05
rohcContextLastHeadersMeanSize OBJECT-TYPE
Packit 022b05
    SYNTAX      Unsigned32
Packit 022b05
    MAX-ACCESS  read-only
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "This object indicates the mean compressed packet header size
Packit 022b05
         concerning the last 16 packets passing this context or
Packit 022b05
         concerning all packets passing this context if they are
Packit 022b05
         less than 16, so far.  The packet header size is the sum of
Packit 022b05
         the size of all headers of a packet that are subject to
Packit 022b05
         compression for the used profile.  The mean value is given
Packit 022b05
         in byte rounded to the next integer value."
Packit 022b05
    ::= { rohcContextEntry 22 }
Packit 022b05
Packit 022b05
--
Packit 022b05
-- conformance information
Packit 022b05
--
Packit 022b05
Packit 022b05
rohcCompliances OBJECT IDENTIFIER ::= { rohcConformance 1 }
Packit 022b05
rohcGroups      OBJECT IDENTIFIER ::= { rohcConformance 2 }
Packit 022b05
Packit 022b05
--
Packit 022b05
-- compliance statements
Packit 022b05
--
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
rohcCompliance MODULE-COMPLIANCE
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "The compliance statement for SNMP entities that implement
Packit 022b05
         the ROHC-MIB.
Packit 022b05
Packit 022b05
         Note that compliance with this compliance
Packit 022b05
         statement requires compliance with the
Packit 022b05
         ifCompliance3 MODULE-COMPLIANCE statement of the
Packit 022b05
         IF-MIB (RFC2863)."
Packit 022b05
    MODULE      -- this module
Packit 022b05
    MANDATORY-GROUPS {
Packit 022b05
            rohcInstanceGroup, rohcContextGroup
Packit 022b05
    }
Packit 022b05
    GROUP   rohcStatisticsGroup
Packit 022b05
    DESCRIPTION
Packit 022b05
       "A compliant implementation does not have to implement
Packit 022b05
        the rohcStatisticsGroup."
Packit 022b05
    GROUP   rohcTimerGroup
Packit 022b05
    DESCRIPTION
Packit 022b05
       "A compliant implementation does not have to implement
Packit 022b05
        the rohcTimerGroup."
Packit 022b05
    OBJECT  rohcInstanceContextStorageTime
Packit 022b05
    MIN-ACCESS  read-only
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A compliant implementation does not have to support changing
Packit 022b05
         the value of object rohcInstanceContextStorageTime."
Packit 022b05
    OBJECT  rohcContextStorageTime
Packit 022b05
    MIN-ACCESS  read-only
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A compliant implementation does not have to support changing
Packit 022b05
         the value of object rohcContextStorageTime."
Packit 022b05
    GROUP   rohcContextStatisticsGroup
Packit 022b05
    DESCRIPTION
Packit 022b05
       "A compliant implementation does not have to implement
Packit 022b05
        the rohcContextStatisticsGroup."
Packit 022b05
    ::= { rohcCompliances 1 }
Packit 022b05
Packit 022b05
rohcInstanceGroup OBJECT-GROUP
Packit 022b05
    OBJECTS {
Packit 022b05
        rohcChannelType,
Packit 022b05
        rohcChannelFeedbackFor,
Packit 022b05
        rohcChannelDescr,
Packit 022b05
        rohcChannelStatus,
Packit 022b05
        rohcInstanceFBChannelID,
Packit 022b05
        rohcInstanceVendor,
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        rohcInstanceVersion,
Packit 022b05
        rohcInstanceDescr,
Packit 022b05
        rohcInstanceClockRes,
Packit 022b05
        rohcInstanceMaxCID,
Packit 022b05
        rohcInstanceLargeCIDs,
Packit 022b05
        rohcInstanceMRRU,
Packit 022b05
        rohcInstanceStatus,
Packit 022b05
        rohcProfileVendor,
Packit 022b05
        rohcProfileVersion,
Packit 022b05
        rohcProfileDescr,
Packit 022b05
        rohcProfileNegotiated
Packit 022b05
    }
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A collection of objects providing information about
Packit 022b05
         ROHC instances, used channels and available profiles."
Packit 022b05
    ::= { rohcGroups 2 }
Packit 022b05
Packit 022b05
rohcStatisticsGroup OBJECT-GROUP
Packit 022b05
    OBJECTS {
Packit 022b05
        rohcInstanceContextsTotal,
Packit 022b05
        rohcInstanceContextsCurrent,
Packit 022b05
        rohcInstancePackets,
Packit 022b05
        rohcInstanceIRs,
Packit 022b05
        rohcInstanceIRDYNs,
Packit 022b05
        rohcInstanceFeedbacks,
Packit 022b05
        rohcInstanceCompressionRatio
Packit 022b05
    }
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A collection of objects providing ROHC statistics."
Packit 022b05
    ::= { rohcGroups 4 }
Packit 022b05
Packit 022b05
rohcContextGroup OBJECT-GROUP
Packit 022b05
    OBJECTS {
Packit 022b05
        rohcContextCIDState,
Packit 022b05
        rohcContextProfile,
Packit 022b05
        rohcContextDecompressorDepth
Packit 022b05
    }
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A collection of objects providing information about
Packit 022b05
         ROHC compressor contexts and decompressor contexts."
Packit 022b05
    ::= { rohcGroups 5 }
Packit 022b05
Packit 022b05
rohcTimerGroup OBJECT-GROUP
Packit 022b05
    OBJECTS {
Packit 022b05
        rohcInstanceContextStorageTime,
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        rohcContextStorageTime,
Packit 022b05
        rohcContextActivationTime,
Packit 022b05
        rohcContextDeactivationTime
Packit 022b05
Packit 022b05
    }
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A collection of objects providing statistical information
Packit 022b05
         about ROHC compressor contexts and decompressor contexts."
Packit 022b05
    ::= { rohcGroups 6 }
Packit 022b05
Packit 022b05
rohcContextStatisticsGroup OBJECT-GROUP
Packit 022b05
    OBJECTS {
Packit 022b05
        rohcContextPackets,
Packit 022b05
        rohcContextIRs,
Packit 022b05
        rohcContextIRDYNs,
Packit 022b05
        rohcContextFeedbacks,
Packit 022b05
        rohcContextDecompressorFailures,
Packit 022b05
        rohcContextDecompressorRepairs,
Packit 022b05
        rohcContextAllPacketsRatio,
Packit 022b05
        rohcContextAllHeadersRatio,
Packit 022b05
        rohcContextAllPacketsMeanSize,
Packit 022b05
        rohcContextAllHeadersMeanSize,
Packit 022b05
        rohcContextLastPacketsRatio,
Packit 022b05
        rohcContextLastHeadersRatio,
Packit 022b05
        rohcContextLastPacketsMeanSize,
Packit 022b05
        rohcContextLastHeadersMeanSize
Packit 022b05
    }
Packit 022b05
    STATUS      current
Packit 022b05
    DESCRIPTION
Packit 022b05
        "A collection of objects providing statistical information
Packit 022b05
         about ROHC compressor contexts and decompressor contexts."
Packit 022b05
    ::= { rohcGroups 7 }
Packit 022b05
Packit 022b05
END