Blame mibs/ietf/RFC1381-MIB

Packit 022b05
RFC1381-MIB DEFINITIONS ::= BEGIN
Packit 022b05
Packit 022b05
IMPORTS
Packit 022b05
        Counter
Packit 022b05
                FROM RFC1155-SMI
Packit 022b05
        transmission
Packit 022b05
                FROM RFC1213-MIB
Packit 022b05
        OBJECT-TYPE
Packit 022b05
                FROM RFC-1212;
Packit 022b05
Packit 022b05
Packit 022b05
                --  LAPB MIB
Packit 022b05
Packit 022b05
lapb    OBJECT IDENTIFIER ::= { transmission 16 }
Packit 022b05
Packit 022b05
PositiveInteger ::= INTEGER (0..2147483647)
Packit 022b05
Packit 022b05
IfIndexType     ::= INTEGER (1..2147483647)
Packit 022b05
-- IfIndexType specifies an index object for a table
Packit 022b05
-- with entries that match entries in the MIB-II ifTable.
Packit 022b05
-- The value of the index for the table will match the
Packit 022b05
-- ifIndex entry for same interface in the ifTable.
Packit 022b05
-- The values of this object range from 1 to ifNumber
Packit 022b05
-- inclusive.
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--                      LAPB Admn Table
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
-- Support of the lapbAdmnTable is mandatory for all
Packit 022b05
-- agents of systems that implement LAPB.
Packit 022b05
Packit 022b05
lapbAdmnTable   OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF LapbAdmnEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This table contains objects that can be
Packit 022b05
                changed to manage a LAPB interface.
Packit 022b05
                Changing one of these parameters may take
Packit 022b05
                effect in the operating LAPB immediately or
Packit 022b05
                may wait until the interface is restarted
Packit 022b05
                depending on the details of the
Packit 022b05
                implementation.
Packit 022b05
Packit 022b05
                Most of the objects in this read-write table
Packit 022b05
                have corresponding read-only objects in the
Packit 022b05
                lapbOperTable that return the current
Packit 022b05
                operating value.
Packit 022b05
Packit 022b05
                The operating values may be different from
Packit 022b05
                these configured values if changed by XID
Packit 022b05
                negotiation or if a configured parameter was
Packit 022b05
                changed after the interface was started."
Packit 022b05
        ::= { lapb 1 }
Packit 022b05
Packit 022b05
lapbAdmnEntry   OBJECT-TYPE
Packit 022b05
        SYNTAX  LapbAdmnEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Configured parameter values for a specific
Packit 022b05
                LAPB."
Packit 022b05
        INDEX { lapbAdmnIndex }
Packit 022b05
        ::= { lapbAdmnTable 1 }
Packit 022b05
Packit 022b05
LapbAdmnEntry ::= SEQUENCE {
Packit 022b05
        lapbAdmnIndex
Packit 022b05
                IfIndexType,
Packit 022b05
        lapbAdmnStationType
Packit 022b05
                INTEGER,
Packit 022b05
        lapbAdmnControlField
Packit 022b05
                INTEGER,
Packit 022b05
        lapbAdmnTransmitN1FrameSize
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbAdmnReceiveN1FrameSize
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbAdmnTransmitKWindowSize
Packit 022b05
                INTEGER,
Packit 022b05
        lapbAdmnReceiveKWindowSize
Packit 022b05
                INTEGER,
Packit 022b05
        lapbAdmnN2RxmitCount
Packit 022b05
        INTEGER,
Packit 022b05
        lapbAdmnT1AckTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbAdmnT2AckDelayTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbAdmnT3DisconnectTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbAdmnT4IdleTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbAdmnActionInitiate
Packit 022b05
                INTEGER,
Packit 022b05
        lapbAdmnActionRecvDM
Packit 022b05
                INTEGER
Packit 022b05
        }
Packit 022b05
Packit 022b05
lapbAdmnIndex   OBJECT-TYPE
Packit 022b05
        SYNTAX  IfIndexType
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The ifIndex value for the LAPB interface."
Packit 022b05
        ::= { lapbAdmnEntry 1 }
Packit 022b05
Packit 022b05
lapbAdmnStationType     OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                dte (1),
Packit 022b05
                dce (2),
Packit 022b05
                dxe (3)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Identifies the desired station type of this
Packit 022b05
                interface."
Packit 022b05
        REFERENCE "ISO 7776 section 3.1"
Packit 022b05
        DEFVAL { dte }
Packit 022b05
        ::= { lapbAdmnEntry 2 }
Packit 022b05
Packit 022b05
lapbAdmnControlField OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                modulo8 (1),
Packit 022b05
                modulo128 (2)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The desired size of the sequence numbers
Packit 022b05
                used to number frames."
Packit 022b05
        REFERENCE "ISO 8885 Table 3, Name: HDLC Option - 10"
Packit 022b05
        DEFVAL { modulo8 }
Packit 022b05
        ::= { lapbAdmnEntry 3 }
Packit 022b05
Packit 022b05
lapbAdmnTransmitN1FrameSize OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The default maximum N1 frame size desired
Packit 022b05
                in number of bits for a frame transmitted by
Packit 022b05
                this DTE.  This excludes flags and 0 bits
Packit 022b05
                inserted for transparency."
Packit 022b05
        REFERENCE "ISO 8885 Table 3,
Packit 022b05
                Name: Information Field length"
Packit 022b05
        DEFVAL { 36000 } -- 4500 * 8; 802.5 Frame size
Packit 022b05
        ::= { lapbAdmnEntry 4 }
Packit 022b05
Packit 022b05
lapbAdmnReceiveN1FrameSize OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The default maximum N1 frame size desired
Packit 022b05
                in number of bits for a frame the DCE/remote
Packit 022b05
                DTE transmits to this DTE.  This excludes
Packit 022b05
                flags and 0 bits inserted for transparency."
Packit 022b05
        DEFVAL { 36000  } -- 4500 * 8; 802.5 Frame size
Packit 022b05
        ::= { lapbAdmnEntry 5 }
Packit 022b05
Packit 022b05
lapbAdmnTransmitKWindowSize OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (1..127)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The default transmit window size for this
Packit 022b05
                Interface.  This is the maximum number of
Packit 022b05
                unacknowledged sequenced PDUs that may be
Packit 022b05
                outstanding from this DTE at any one time."
Packit 022b05
        REFERENCE "ISO 8885 Table 3, Name: Window size"
Packit 022b05
        DEFVAL { 7 }
Packit 022b05
        ::= { lapbAdmnEntry 6 }
Packit 022b05
Packit 022b05
lapbAdmnReceiveKWindowSize OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (1..127)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The default receive window size for this
Packit 022b05
                Interface.  This is the maximum number of
Packit 022b05
                unacknowledged sequenced PDUs that may be
Packit 022b05
                outstanding from the DCE/remote DTE at any
Packit 022b05
                one time."
Packit 022b05
        REFERENCE "ISO 8885 Table 3, Name: Window size"
Packit 022b05
        DEFVAL { 7 }
Packit 022b05
        ::= { lapbAdmnEntry 7 }
Packit 022b05
Packit 022b05
lapbAdmnN2RxmitCount    OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The default N2 retry counter for this
Packit 022b05
                interface.  This specifies the number of
Packit 022b05
                times a PDU will be resent after the T1
Packit 022b05
                timer expires without an acknowledgement for
Packit 022b05
                the PDU."
Packit 022b05
        REFERENCE "ISO 8885 Table 3,
Packit 022b05
                Name: Retransmission Attempts"
Packit 022b05
        DEFVAL { 20 }
Packit 022b05
        ::= { lapbAdmnEntry 8 }
Packit 022b05
Packit 022b05
lapbAdmnT1AckTimer      OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The default T1 timer for this interface.
Packit 022b05
                This specifies the maximum time in
Packit 022b05
                Milliseconds to wait for acknowledgment of a
Packit 022b05
                PDU."
Packit 022b05
        REFERENCE "ISO 8885 Table 3, Name:
Packit 022b05
                Acknowledgement timer"
Packit 022b05
        DEFVAL { 3000 }
Packit 022b05
        ::= { lapbAdmnEntry 9 }
Packit 022b05
Packit 022b05
lapbAdmnT2AckDelayTimer         OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The default T2 timer for this interface.
Packit 022b05
                This specifies the maximum time in
Packit 022b05
                Milliseconds to wait before sending an
Packit 022b05
                acknowledgment for a sequenced PDU.  A value
Packit 022b05
                of zero means there will be no delay in
Packit 022b05
                acknowledgement generation."
Packit 022b05
        REFERENCE "ISO 8885 Table 3,
Packit 022b05
                Name: Reply delay timer"
Packit 022b05
        DEFVAL { 0 }
Packit 022b05
        ::= { lapbAdmnEntry 10 }
Packit 022b05
Packit 022b05
lapbAdmnT3DisconnectTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T3 timer for this interface.  This
Packit 022b05
                specifies the time in Milliseconds to wait
Packit 022b05
                before considering the link disconnected.  A
Packit 022b05
                value of zero indicates the link will be
Packit 022b05
                considered disconnected upon completion of
Packit 022b05
                the frame exchange to disconnect the link."
Packit 022b05
        REFERENCE "ISO 7776 section 5.7.1.3"
Packit 022b05
        DEFVAL { 60000 }
Packit 022b05
        ::= { lapbAdmnEntry 11 }
Packit 022b05
Packit 022b05
lapbAdmnT4IdleTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T4 timer for this interface.  This
Packit 022b05
                specifies the maximum time in Milliseconds
Packit 022b05
                to allow without frames being exchanged on
Packit 022b05
                the data link.  A value of 2147483647
Packit 022b05
                indicates no idle timer is being kept."
Packit 022b05
        REFERENCE "ISO 7776 section 5.7.1.4"
Packit 022b05
        DEFVAL { 2147483647 }
Packit 022b05
        ::= { lapbAdmnEntry 12 }
Packit 022b05
Packit 022b05
lapbAdmnActionInitiate OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
        sendSABM (1),
Packit 022b05
                sendDISC (2),
Packit 022b05
                sendDM (3),
Packit 022b05
                none (4),
Packit 022b05
                other (5)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This identifies the action LAPB will take
Packit 022b05
                to initiate link set-up."
Packit 022b05
        DEFVAL { sendSABM }
Packit 022b05
        ::= { lapbAdmnEntry 13 }
Packit 022b05
Packit 022b05
lapbAdmnActionRecvDM OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                sendSABM (1),
Packit 022b05
                sendDISC (2),
Packit 022b05
                other (3)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This identifies the action LAPB will take
Packit 022b05
                when it receives a DM response."
Packit 022b05
        DEFVAL { sendSABM }
Packit 022b05
        ::= { lapbAdmnEntry 14 }
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--                      LAPB operating parameters.
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
-- Support of the lapbOperTable is mandatory for all
Packit 022b05
-- agents of systems that implement LAPB.
Packit 022b05
Packit 022b05
lapbOperTable   OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF LapbOperEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This table contains configuration
Packit 022b05
                information about interface parameters
Packit 022b05
                currently set in the interface.  Many of
Packit 022b05
                these objects have corresponding objects in
Packit 022b05
        the lapbAdmnTable."
Packit 022b05
        ::= { lapb 2 }
Packit 022b05
Packit 022b05
lapbOperEntry   OBJECT-TYPE
Packit 022b05
        SYNTAX  LapbOperEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Currently set parameter values for a
Packit 022b05
                specific LAPB."
Packit 022b05
        INDEX { lapbOperIndex }
Packit 022b05
        ::= { lapbOperTable 1 }
Packit 022b05
Packit 022b05
LapbOperEntry ::= SEQUENCE {
Packit 022b05
        lapbOperIndex
Packit 022b05
                IfIndexType,
Packit 022b05
        lapbOperStationType
Packit 022b05
                INTEGER,
Packit 022b05
        lapbOperControlField
Packit 022b05
                INTEGER,
Packit 022b05
        lapbOperTransmitN1FrameSize
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbOperReceiveN1FrameSize
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbOperTransmitKWindowSize
Packit 022b05
                INTEGER,
Packit 022b05
        lapbOperReceiveKWindowSize
Packit 022b05
                INTEGER,
Packit 022b05
        lapbOperN2RxmitCount
Packit 022b05
                INTEGER,
Packit 022b05
        lapbOperT1AckTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbOperT2AckDelayTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbOperT3DisconnectTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbOperT4IdleTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        lapbOperPortId
Packit 022b05
                OBJECT IDENTIFIER,
Packit 022b05
        lapbOperProtocolVersionId
Packit 022b05
                OBJECT IDENTIFIER
Packit 022b05
        }
Packit 022b05
Packit 022b05
lapbOperIndex   OBJECT-TYPE
Packit 022b05
   SYNTAX       IfIndexType
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The ifIndex value for the LAPB interface."
Packit 022b05
        ::= { lapbOperEntry 1 }
Packit 022b05
Packit 022b05
lapbOperStationType     OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                dte (1),
Packit 022b05
                dce (2),
Packit 022b05
                dxe (3)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Identifies the current operating station
Packit 022b05
                type of this interface.  A value of dxe (3)
Packit 022b05
                indicates XID negotiation has not yet taken
Packit 022b05
                place."
Packit 022b05
        REFERENCE "ISO 7776 section 3.1"
Packit 022b05
        ::= { lapbOperEntry 2 }
Packit 022b05
Packit 022b05
lapbOperControlField OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                modulo8 (1),
Packit 022b05
                modulo128 (2)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current operating size of the sequence
Packit 022b05
                numbers used to number frames."
Packit 022b05
        REFERENCE "ISO 7776 section 3.3"
Packit 022b05
        ::= { lapbOperEntry 3 }
Packit 022b05
Packit 022b05
lapbOperTransmitN1FrameSize OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current operating N1 frame size used
Packit 022b05
                for the maximum number of bits in a frame
Packit 022b05
                this DTE can transmit.  This excludes flags
Packit 022b05
                and 0 bits inserted for transparency."
Packit 022b05
        REFERENCE "ISO 7776 section 5.7.3"
Packit 022b05
        ::= { lapbOperEntry 4 }
Packit 022b05
Packit 022b05
lapbOperReceiveN1FrameSize OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        -- See lapbOperTransmitN1FrameSize above
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current operating N1 frame size used
Packit 022b05
                for the maximum number of bits in a frame
Packit 022b05
                the DCE/remote DTE can transmit.  This
Packit 022b05
                excludes flags and 0 bits inserted for
Packit 022b05
                transparency."
Packit 022b05
        ::= { lapbOperEntry 5 }
Packit 022b05
Packit 022b05
lapbOperTransmitKWindowSize OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (1..127)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current PDU window size this Interface
Packit 022b05
                uses to transmit.  This is the maximum
Packit 022b05
                number of unacknowledged sequenced PDUs that
Packit 022b05
                may be outstanding from this DTE at any one
Packit 022b05
                time."
Packit 022b05
        REFERENCE "ISO 7776 section 5.7.4"
Packit 022b05
        ::= { lapbOperEntry 6 }
Packit 022b05
Packit 022b05
lapbOperReceiveKWindowSize OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (1..127)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current receive PDU window size for
Packit 022b05
                this Interface.  This is the maximum number
Packit 022b05
                of unacknowledged sequenced PDUs that may be
Packit 022b05
                outstanding from the DCE/remote DTE at any
Packit 022b05
                one time."
Packit 022b05
        REFERENCE "ISO 7776 section 5.7.4"
Packit 022b05
        ::= { lapbOperEntry 7 }
Packit 022b05
Packit 022b05
lapbOperN2RxmitCount    OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current N2 retry counter used for this
Packit 022b05
                interface.  This specifies the number of
Packit 022b05
                times a PDU will be resent after the T1
Packit 022b05
                timer expires without an acknowledgement for
Packit 022b05
                the PDU."
Packit 022b05
        REFERENCE "ISO 7776 section 5.7.2"
Packit 022b05
        ::= { lapbOperEntry 8 }
Packit 022b05
Packit 022b05
lapbOperT1AckTimer      OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current T1 timer for this interface.
Packit 022b05
                This specifies the maximum time in
Packit 022b05
                Milliseconds to wait for acknowledgment of a
Packit 022b05
                PDU."
Packit 022b05
        REFERENCE "ISO 7776 section 5.7.1.1"
Packit 022b05
        ::= { lapbOperEntry 9 }
Packit 022b05
Packit 022b05
lapbOperT2AckDelayTimer         OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current T2 timer for this interface.
Packit 022b05
                This specifies the maximum time in
Packit 022b05
                Milliseconds to wait before sending an
Packit 022b05
                acknowledgment for a sequenced PDU.  A value
Packit 022b05
                of zero means there will be no delay in
Packit 022b05
                acknowledgement generation."
Packit 022b05
        REFERENCE "ISO 7776 section 5.7.1.2"
Packit 022b05
        ::= { lapbOperEntry 10 }
Packit 022b05
Packit 022b05
lapbOperT3DisconnectTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current T3 timer for this interface.
Packit 022b05
                This specifies the time in Milliseconds to
Packit 022b05
                wait before considering the link
Packit 022b05
                disconnected.  A value of zero indicates the
Packit 022b05
                link will be considered disconnected upon
Packit 022b05
                completion of the frame exchange to
Packit 022b05
                disconnect the link."
Packit 022b05
        REFERENCE "ISO 7776 section 5.7.1.3"
Packit 022b05
        ::= { lapbOperEntry 11 }
Packit 022b05
Packit 022b05
lapbOperT4IdleTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current T4 timer for this interface.
Packit 022b05
                This specifies the maximum time in
Packit 022b05
                Milliseconds to allow without frames being
Packit 022b05
                exchanged on the data link.  A value of
Packit 022b05
                2147483647 indicates no idle timer is being
Packit 022b05
                kept."
Packit 022b05
        REFERENCE "ISO 7776 section 5.7.1.4"
Packit 022b05
        ::= { lapbOperEntry 12 }
Packit 022b05
Packit 022b05
lapbOperPortId OBJECT-TYPE
Packit 022b05
        SYNTAX  OBJECT IDENTIFIER
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This object identifies an instance of the
Packit 022b05
                index object in the first group of objects
Packit 022b05
                in the MIB specific to the physical device
Packit 022b05
                or interface used to send and receive
Packit 022b05
                frames.  If an agent does not support any
Packit 022b05
                such objects, it should return nullSpec
Packit 022b05
                OBJECT IDENTIFIER {0 0}."
Packit 022b05
        ::= { lapbOperEntry 13 }
Packit 022b05
Packit 022b05
lapbOperProtocolVersionId       OBJECT-TYPE
Packit 022b05
        SYNTAX  OBJECT IDENTIFIER
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This object identifies the version of the
Packit 022b05
                lapb protocol implemented by this
Packit 022b05
                interface."
Packit 022b05
        ::= { lapbOperEntry 14 }
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--                      LAPB    Flow Table
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
-- Support of the lapbFlowTable is mandatory for all
Packit 022b05
-- agents of systems that implement LAPB.
Packit 022b05
Packit 022b05
lapbFlowTable OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF LapbFlowEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This table defines the objects recorded by
Packit 022b05
                LAPB to provide information about the
Packit 022b05
                traffic flow through the interface."
Packit 022b05
        ::= { lapb 3 }
Packit 022b05
Packit 022b05
lapbFlowEntry OBJECT-TYPE
Packit 022b05
        SYNTAX  LapbFlowEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The information regarding the effects of
Packit 022b05
                flow controls in LAPB."
Packit 022b05
         INDEX { lapbFlowIfIndex }
Packit 022b05
        ::= { lapbFlowTable 1 }
Packit 022b05
Packit 022b05
LapbFlowEntry ::= SEQUENCE {
Packit 022b05
        lapbFlowIfIndex
Packit 022b05
                IfIndexType,
Packit 022b05
        lapbFlowStateChanges
Packit 022b05
                Counter,
Packit 022b05
        lapbFlowChangeReason
Packit 022b05
                INTEGER,
Packit 022b05
        lapbFlowCurrentMode
Packit 022b05
                INTEGER,
Packit 022b05
        lapbFlowBusyDefers
Packit 022b05
                Counter,
Packit 022b05
        lapbFlowRejOutPkts
Packit 022b05
                Counter,
Packit 022b05
        lapbFlowRejInPkts
Packit 022b05
                Counter,
Packit 022b05
        lapbFlowT1Timeouts
Packit 022b05
                Counter,
Packit 022b05
        lapbFlowFrmrSent
Packit 022b05
        OCTET STRING,
Packit 022b05
        lapbFlowFrmrReceived
Packit 022b05
                OCTET STRING,
Packit 022b05
        lapbFlowXidReceived
Packit 022b05
                OCTET STRING
Packit 022b05
        }
Packit 022b05
Packit 022b05
lapbFlowIfIndex OBJECT-TYPE
Packit 022b05
        SYNTAX  IfIndexType
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The ifIndex value for the LAPB Interface."
Packit 022b05
        ::= { lapbFlowEntry 1 }
Packit 022b05
Packit 022b05
lapbFlowStateChanges OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of LAPB State Changes, including
Packit 022b05
                resets."
Packit 022b05
        ::= { lapbFlowEntry 2 }
Packit 022b05
Packit 022b05
lapbFlowChangeReason OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                notStarted (1),    -- Initial state
Packit 022b05
                abmEntered (2),    -- SABM or UA
Packit 022b05
                abmeEntered (3),   -- SABME or UA
Packit 022b05
                abmReset (4),      -- SABM in ABM
Packit 022b05
                abmeReset (5),     -- SABME in ABME
Packit 022b05
                dmReceived (6),    -- DM Response
Packit 022b05
                dmSent (7),        -- DM sent
Packit 022b05
                discReceived (8),  -- DISC Response
Packit 022b05
                discSent (9),      -- DISC Sent
Packit 022b05
                frmrReceived (10), -- FRMR Received
Packit 022b05
                frmrSent (11),     -- FRMR Sent
Packit 022b05
                n2Timeout (12),    -- N2 Timer Expired
Packit 022b05
                other (13)
Packit 022b05
                  }
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The reason for the most recent incrementing
Packit 022b05
                of lapbFlowStateChanges.  A DM or DISC frame
Packit 022b05
                generated to initiate link set-up does not
Packit 022b05
                alter this object.  When the MIB-II object
Packit 022b05
                ifOperStatus does not have a value of
Packit 022b05
                testing, there exists a correlation between
Packit 022b05
                this object and ifOperStatus.  IfOperStatus
Packit 022b05
                will have a value of up when this object
Packit 022b05
                contains:  abmEntered, abmeEntered,
Packit 022b05
                abmReset, or abmeReset.  IfOperStatus will
Packit 022b05
                have a value of down when this object has a
Packit 022b05
                value of notStarted, or dmReceived through
Packit 022b05
                n2Timeout.  There is no correlation when
Packit 022b05
                this object has the value other."
Packit 022b05
        ::= { lapbFlowEntry 3 }
Packit 022b05
Packit 022b05
lapbFlowCurrentMode OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                disconnected (1),
Packit 022b05
                        -- initial state or DISC received
Packit 022b05
Packit 022b05
                linkSetup (2),
Packit 022b05
                        -- SABM sent
Packit 022b05
Packit 022b05
                frameReject (3),
Packit 022b05
                        -- Invalid frame received and
Packit 022b05
                        -- FRMR sent
Packit 022b05
Packit 022b05
                disconnectRequest (4),
Packit 022b05
                        -- DISC sent
Packit 022b05
Packit 022b05
                informationTransfer (5),
Packit 022b05
                        -- normal information transfer state
Packit 022b05
                        -- SABM(E) sent and UA received, or
Packit 022b05
                        -- SABM(E) received and UA sent
Packit 022b05
Packit 022b05
                rejFrameSent (6),
Packit 022b05
                        -- invalid NS received and REJ sent
Packit 022b05
Packit 022b05
                waitingAcknowledgement (7),
Packit 022b05
Packit 022b05
                        -- T1 expired and RR sent
Packit 022b05
Packit 022b05
                stationBusy (8),
Packit 022b05
                        -- RNR sent
Packit 022b05
Packit 022b05
                remoteStationBusy (9),
Packit 022b05
                        -- RNR received
Packit 022b05
Packit 022b05
                bothStationsBusy (10),
Packit 022b05
                        -- RNR received and RNR sent
Packit 022b05
Packit 022b05
                waitingAckStationBusy (11),
Packit 022b05
                        -- T1 expired, RNR sent
Packit 022b05
Packit 022b05
                waitingAckRemoteBusy (12),
Packit 022b05
                        -- T1 expired, RNR received
Packit 022b05
Packit 022b05
                waitingAckBothBusy (13),
Packit 022b05
                        -- T1 expired, RNR sent,
Packit 022b05
                        -- and RNR received
Packit 022b05
Packit 022b05
                rejFrameSentRemoteBusy (14),
Packit 022b05
                        -- REJ sent and RNR received
Packit 022b05
Packit 022b05
                xidFrameSent (15),
Packit 022b05
                        -- XID frame sent
Packit 022b05
Packit 022b05
                error (16),
Packit 022b05
                        -- An error state other than
Packit 022b05
                        -- a one defined above
Packit 022b05
Packit 022b05
                other (17)
Packit 022b05
                        --  A state not listed above
Packit 022b05
                  }
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The current condition of the conversation."
Packit 022b05
        ::= { lapbFlowEntry 4 }
Packit 022b05
Packit 022b05
lapbFlowBusyDefers OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times this device was unable
Packit 022b05
                to transmit a frame due to a perceived
Packit 022b05
                remote busy condition.  Busy conditions can
Packit 022b05
                result from the receipt of an RNR from the
Packit 022b05
                remote device, the lack of valid sequence
Packit 022b05
                number space (window saturation), or other
Packit 022b05
                conditions."
Packit 022b05
        ::= { lapbFlowEntry 5 }
Packit 022b05
Packit 022b05
lapbFlowRejOutPkts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of REJ or SREJ frames sent by
Packit 022b05
                this station."
Packit 022b05
        ::= { lapbFlowEntry 6 }
Packit 022b05
Packit 022b05
lapbFlowRejInPkts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of REJ or SREJ frames received
Packit 022b05
                by this station."
Packit 022b05
        ::= { lapbFlowEntry 7 }
Packit 022b05
Packit 022b05
lapbFlowT1Timeouts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times a re-transmission was
Packit 022b05
                effected by the T1 Timer expiring."
Packit 022b05
        ::= { lapbFlowEntry 8 }
Packit 022b05
Packit 022b05
lapbFlowFrmrSent OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..7))
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Information Field of the FRMR most
Packit 022b05
                recently sent.  If no FRMR has been sent
Packit 022b05
                (the normal case) or the information isn't
Packit 022b05
                available, this will be an OCTET STRING of
Packit 022b05
                zero length."
Packit 022b05
        REFERENCE "ISO 7776 Section 4.3.9, tables 7 and 8"
Packit 022b05
        ::= { lapbFlowEntry 9 }
Packit 022b05
Packit 022b05
lapbFlowFrmrReceived OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..7))
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Information Field of the FRMR most
Packit 022b05
                recently received.  If no FRMR has been
Packit 022b05
                received (the normal case) or the
Packit 022b05
                information isn't available, this will be an
Packit 022b05
                OCTET STRING of zero length."
Packit 022b05
        REFERENCE "ISO 7776 Section 4.3.9, tables 7 and 8"
Packit 022b05
        ::= { lapbFlowEntry 10 }
Packit 022b05
Packit 022b05
lapbFlowXidReceived OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..8206))
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Information Field of the XID frame most
Packit 022b05
                recently received.  If no XID frame has been
Packit 022b05
                received, this will be an OCTET STRING of
Packit 022b05
                zero length."
Packit 022b05
        REFERENCE "ISO 8885"
Packit 022b05
        ::= { lapbFlowEntry 11 }
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--                      LAPB    XID Table
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
-- Support for the lapbXidTable is mandatory for all agents
Packit 022b05
-- of systems that have a LAPB implementation using XID
Packit 022b05
-- negotiation.  Agents of systems without XID negotiation
Packit 022b05
-- support should not implement this table.
Packit 022b05
Packit 022b05
lapbXidTable    OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF LapbXidEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This table defines values to use for XID
Packit 022b05
                negotiation that are not found in the
Packit 022b05
                lapbAdmnTable.  This table is optional for
Packit 022b05
                implementations that don't support XID and
Packit 022b05
                mandatory for implementations that do
Packit 022b05
                initiate XID negotiation."
Packit 022b05
        ::= { lapb 4 }
Packit 022b05
Packit 022b05
lapbXidEntry    OBJECT-TYPE
Packit 022b05
        SYNTAX  LapbXidEntry
Packit 022b05
   ACCESS       not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "XId negotiation parameter values for a
Packit 022b05
                specific LAPB."
Packit 022b05
        INDEX { lapbXidIndex }
Packit 022b05
        ::= { lapbXidTable 1 }
Packit 022b05
Packit 022b05
Packit 022b05
LapbXidEntry ::= SEQUENCE {
Packit 022b05
        lapbXidIndex
Packit 022b05
                IfIndexType,
Packit 022b05
        lapbXidAdRIdentifier
Packit 022b05
                OCTET STRING,
Packit 022b05
        lapbXidAdRAddress
Packit 022b05
                OCTET STRING,
Packit 022b05
        lapbXidParameterUniqueIdentifier
Packit 022b05
                OCTET STRING,
Packit 022b05
        lapbXidGroupAddress
Packit 022b05
                OCTET STRING,
Packit 022b05
        lapbXidPortNumber
Packit 022b05
                OCTET STRING,
Packit 022b05
        lapbXidUserDataSubfield
Packit 022b05
                OCTET STRING
Packit 022b05
        }
Packit 022b05
Packit 022b05
lapbXidIndex    OBJECT-TYPE
Packit 022b05
        SYNTAX  IfIndexType
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The ifIndex value for the LAPB interface."
Packit 022b05
        ::= { lapbXidEntry 1 }
Packit 022b05
Packit 022b05
lapbXidAdRIdentifier OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..255))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The value of the Address Resolution
Packit 022b05
                Identifier.  A zero length string indicates
Packit 022b05
                no Identifier value has been assigned."
Packit 022b05
        REFERENCE "ISO 8885 Table 2, Name: Identifier"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { lapbXidEntry 2 }
Packit 022b05
Packit 022b05
lapbXidAdRAddress OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..255))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The value of the Address Resolution
Packit 022b05
                Address.  A zero length string indicates no
Packit 022b05
                Address value has been assigned."
Packit 022b05
        REFERENCE "ISO 8885 Table 2, Name: Address"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { lapbXidEntry 3 }
Packit 022b05
Packit 022b05
lapbXidParameterUniqueIdentifier OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..255))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The value of the parameter unique
Packit 022b05
                Identifier.  A zero length string indicates
Packit 022b05
                no Unique identifier value has been
Packit 022b05
                assigned."
Packit 022b05
        REFERENCE "ISO 8885 Table 3, Name: Identifier"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { lapbXidEntry 4 }
Packit 022b05
Packit 022b05
lapbXidGroupAddress OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..255))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The value of the parameter Group address.
Packit 022b05
                A zero length string indicates no Group
Packit 022b05
                address value has been assigned."
Packit 022b05
        REFERENCE "ISO 8885 Table 3, Name: Group address"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { lapbXidEntry 5 }
Packit 022b05
Packit 022b05
lapbXidPortNumber OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..255))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The port number assigned for this link.  A
Packit 022b05
                zero length string indicates no local port
Packit 022b05
                number identifier has been assigned."
Packit 022b05
        REFERENCE "ISO 8885 Table 3, Name: Port number"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { lapbXidEntry 6 }
Packit 022b05
Packit 022b05
lapbXidUserDataSubfield OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..8206))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "A user data subfield, if any, to be
Packit 022b05
                transmitted in an XID frame.  A zero length
Packit 022b05
                frame indicates no user data subfield has
Packit 022b05
                been assigned.  The octet string should
Packit 022b05
                include both the User data identifier and
Packit 022b05
                User data field as shown in Figures 1 and
Packit 022b05
                4."
Packit 022b05
        REFERENCE "ISO 8885 section 4.3"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { lapbXidEntry 7 }
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--                      LAPB protocol versions
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
lapbProtocolVersion OBJECT IDENTIFIER
Packit 022b05
        ::= { lapb 5 }
Packit 022b05
Packit 022b05
lapbProtocolIso7776v1986 OBJECT IDENTIFIER
Packit 022b05
        ::= { lapbProtocolVersion 1 }
Packit 022b05
Packit 022b05
lapbProtocolCcittV1980 OBJECT IDENTIFIER
Packit 022b05
        ::= { lapbProtocolVersion 2 }
Packit 022b05
Packit 022b05
lapbProtocolCcittV1984 OBJECT IDENTIFIER
Packit 022b05
        ::= { lapbProtocolVersion 3 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
-- The following describes some of the MIB-II interface
Packit 022b05
-- objects and their relationship with the objects in this
Packit 022b05
-- MIB extension.
Packit 022b05
Packit 022b05
-- ifDescr:  describes the interface.   It should include
Packit 022b05
-- identification information for the physical line and a
Packit 022b05
-- description of the network.  For connections to PDNs,
Packit 022b05
-- it should name the PDN.
Packit 022b05
Packit 022b05
-- ifMtu: the maximum number of octets an upper layer can
Packit 022b05
-- pass to this interface as a single frame.
Packit 022b05
Packit 022b05
-- ifSpeed:
Packit 022b05
Packit 022b05
-- ifAdminStatus:
Packit 022b05
Packit 022b05
-- ifOperStatus:
Packit 022b05
Packit 022b05
-- ifLastChange: the last time the state of the interface
Packit 022b05
-- changed.  A reset is considered an instantaneous change to
Packit 022b05
-- the ndm state and back to abm or abme.  This will be the
Packit 022b05
-- last time that lapbFlowChangeReason and lapbFlowChanges
Packit 022b05
-- changed.
Packit 022b05
Packit 022b05
-- ifInOctets: contains the number of octets
Packit 022b05
-- received from the peer LAPB including FCS.
Packit 022b05
Packit 022b05
-- ifInUcastPkts: contains the number of I-frames delivered
Packit 022b05
-- by this interface to a higher layer interface.
Packit 022b05
Packit 022b05
-- ifInDiscards: contains the number of received
Packit 022b05
-- frames discarded because of internal conditions
Packit 022b05
-- (such as lack of buffering).
Packit 022b05
Packit 022b05
-- ifInErrors: contains the number of Invalid frames received.
Packit 022b05
-- This does not have any relationship with the number REJ,
Packit 022b05
-- or RNR frames sent or received.
Packit 022b05
Packit 022b05
-- ifInUnknownProtos: contains the number of frames
Packit 022b05
-- that were correct but were dropped because they
Packit 022b05
-- were inappropriate for the current state.  This
Packit 022b05
-- includes an invalid Poll bit, an unknown address,
Packit 022b05
-- or other condition such as an RNR when connection
Packit 022b05
-- not established.  This also includes the number of
Packit 022b05
-- DISC or other frames that were ignored because the
Packit 022b05
-- link was not established and this interface was not
Packit 022b05
-- configured to perform link setup on that type frame.
Packit 022b05
Packit 022b05
-- ifOutOctets: number of octets sent to peer including
Packit 022b05
-- FCS octets.
Packit 022b05
Packit 022b05
-- ifOutUcastPkts: number of I-frames received from
Packit 022b05
-- a higher layer for transmission to peer.
Packit 022b05
Packit 022b05
-- ifOutDiscards: number of frames to be sent that were
Packit 022b05
-- dropped due to internal conditions such as buffering etc.
Packit 022b05
Packit 022b05
-- ifOutErrors: number of transmissions that failed
Packit 022b05
-- due to errors or were considered invalid by the receiver.
Packit 022b05
-- This does not have any relationship with the number REJ,
Packit 022b05
-- or RNR frames sent or received.
Packit 022b05
Packit 022b05
-- ifOutQLen: number of frames waiting to be transmitted.
Packit 022b05
Packit 022b05
Packit 022b05
-- This MIB does not provide any support for:
Packit 022b05
--      Multilink procedure (MLP) in ISO 7776 section 6
Packit 022b05
--      LLC Pbit timer
Packit 022b05
--      LLC REJ timer
Packit 022b05
--      LLC Busy State Timer 7.8.1.4
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
END