Blame mibs/ietf/RFC1382-MIB

Packit 022b05
RFC1382-MIB DEFINITIONS ::= BEGIN
Packit 022b05
Packit 022b05
IMPORTS
Packit 022b05
        Counter, Gauge, TimeTicks
Packit 022b05
                FROM RFC1155-SMI
Packit 022b05
        OBJECT-TYPE
Packit 022b05
                FROM RFC-1212
Packit 022b05
        DisplayString, transmission
Packit 022b05
                FROM RFC1213-MIB
Packit 022b05
        TRAP-TYPE
Packit 022b05
                FROM RFC-1215
Packit 022b05
        EntryStatus
Packit 022b05
                FROM RFC1271-MIB
Packit 022b05
        PositiveInteger,
Packit 022b05
        IfIndexType
Packit 022b05
                FROM RFC1381-MIB;
Packit 022b05
Packit 022b05
x25     OBJECT IDENTIFIER ::= { transmission 5 }
Packit 022b05
Packit 022b05
Packit 022b05
-- Support of the X25 subtree and all subtrees under it
Packit 022b05
-- is mandatory for all agents of system that implement X.25.
Packit 022b05
Packit 022b05
X121Address ::= OCTET STRING (SIZE(0..17))
Packit 022b05
 -- 0 to 17 bytes in length containing the ASCII
Packit 022b05
 -- characters [0-9], each octet contains one digit
Packit 022b05
 -- of the address.
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--            X.25 Administration Table
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
x25AdmnTable OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF X25AdmnEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This table contains the administratively
Packit 022b05
                set configuration parameters for an X.25
Packit 022b05
                Packet Level Entity (PLE).
Packit 022b05
Packit 022b05
               Most of the objects in this table have
Packit 022b05
                corresponding objects in the x25OperTable.
Packit 022b05
                This table contains the values as last set
Packit 022b05
                by the administrator.  The x25OperTable
Packit 022b05
                contains the values actually in use by an
Packit 022b05
                X.25 PLE.
Packit 022b05
Packit 022b05
                Changing an administrative value may or may
Packit 022b05
                not change a current operating value.  The
Packit 022b05
                operating value may not change until the
Packit 022b05
                interface is restarted.  Some
Packit 022b05
                implementations may change the values
Packit 022b05
                immediately upon changing the administrative
Packit 022b05
                table.  All implementations are required to
Packit 022b05
                load the values from the administrative
Packit 022b05
                table when initializing a PLE."
Packit 022b05
        ::= { x25 1 }
Packit 022b05
Packit 022b05
x25AdmnEntry OBJECT-TYPE
Packit 022b05
        SYNTAX  X25AdmnEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Entries of x25AdmnTable."
Packit 022b05
        INDEX { x25AdmnIndex }
Packit 022b05
        ::= { x25AdmnTable 1 }
Packit 022b05
Packit 022b05
X25AdmnEntry ::= SEQUENCE {
Packit 022b05
        x25AdmnIndex
Packit 022b05
                IfIndexType,
Packit 022b05
        x25AdmnInterfaceMode
Packit 022b05
                INTEGER,
Packit 022b05
        x25AdmnMaxActiveCircuits
Packit 022b05
                INTEGER,
Packit 022b05
        x25AdmnPacketSequencing
Packit 022b05
                INTEGER,
Packit 022b05
        x25AdmnRestartTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
     x25AdmnCallTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25AdmnResetTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25AdmnClearTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25AdmnWindowTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25AdmnDataRxmtTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25AdmnInterruptTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25AdmnRejectTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25AdmnRegistrationRequestTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25AdmnMinimumRecallTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25AdmnRestartCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25AdmnResetCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25AdmnClearCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25AdmnDataRxmtCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25AdmnRejectCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25AdmnRegistrationRequestCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25AdmnNumberPVCs
Packit 022b05
                INTEGER,
Packit 022b05
        x25AdmnDefCallParamId
Packit 022b05
                OBJECT IDENTIFIER,
Packit 022b05
        x25AdmnLocalAddress
Packit 022b05
                X121Address,
Packit 022b05
        x25AdmnProtocolVersionSupported
Packit 022b05
                OBJECT IDENTIFIER
Packit 022b05
        }
Packit 022b05
Packit 022b05
x25AdmnIndex 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 X.25 Interface."
Packit 022b05
        ::= { x25AdmnEntry 1 }
Packit 022b05
Packit 022b05
x25AdmnInterfaceMode 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 DCE/DTE mode in which the
Packit 022b05
                interface operates.  A value of dxe
Packit 022b05
                indicates the mode will be determined by XID
Packit 022b05
                negotiation."
Packit 022b05
        REFERENCE "10733 5.9 interfaceMode"
Packit 022b05
        ::= { x25AdmnEntry 2 }
Packit 022b05
Packit 022b05
x25AdmnMaxActiveCircuits        OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4096)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The maximum number of circuits this PLE can
Packit 022b05
                support; including PVCs."
Packit 022b05
        REFERENCE "10733 5.9 maxActiveCircuits;
Packit 022b05
                See ISO 8208, Section 3.7"
Packit 022b05
        ::= { x25AdmnEntry 3 }
Packit 022b05
Packit 022b05
x25AdmnPacketSequencing 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 modulus of the packet sequence number
Packit 022b05
                space."
Packit 022b05
        REFERENCE "10733 extendedPacketSequencing;
Packit 022b05
                See ISO 8208 Section 7.1.1"
Packit 022b05
        ::= { x25AdmnEntry 4 }
Packit 022b05
Packit 022b05
x25AdmnRestartTimer OBJECT-TYPE
Packit 022b05
     SYNTAX     PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T20 restart timer in milliseconds."
Packit 022b05
        REFERENCE "10733 5.9 restartTime
Packit 022b05
                See ISO 8208 Section 4.1, table 26"
Packit 022b05
        ::= { x25AdmnEntry 5 }
Packit 022b05
Packit 022b05
x25AdmnCallTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T21 Call timer in milliseconds."
Packit 022b05
        REFERENCE "10733 callTime;
Packit 022b05
                See ISO 8208 Section 5.2.1, table 26"
Packit 022b05
        ::= { x25AdmnEntry 6 }
Packit 022b05
Packit 022b05
x25AdmnResetTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T22 Reset timer in milliseconds."
Packit 022b05
        REFERENCE "10733 resetTime;
Packit 022b05
                See ISO 8208 Section 8.1, table 26"
Packit 022b05
        ::= { x25AdmnEntry 7 }
Packit 022b05
Packit 022b05
x25AdmnClearTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T23 Clear timer in milliseconds."
Packit 022b05
        REFERENCE "10733 clearTime;
Packit 022b05
                See ISO 8208 Section 5.5.1, table 26"
Packit 022b05
        ::= { x25AdmnEntry 8 }
Packit 022b05
Packit 022b05
x25AdmnWindowTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T24 window status transmission timer in
Packit 022b05
                milliseconds.  A value of 2147483647
Packit 022b05
                indicates no window timer in use."
Packit 022b05
        REFERENCE "10733 5.10.1 windowTime (opt);
Packit 022b05
                See ISO 8208 Section 11.2.2, table 26"
Packit 022b05
        ::= { x25AdmnEntry 9 }
Packit 022b05
Packit 022b05
x25AdmnDataRxmtTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T25 data retransmission timer in
Packit 022b05
                milliseconds.  A value of 2147483647
Packit 022b05
                indicates no data retransmission timer in
Packit 022b05
                use."
Packit 022b05
        REFERENCE "10733 5.10.1 dataRetransmissionTime (opt);
Packit 022b05
                See ISO 8208 Section 11.2.1, table 26"
Packit 022b05
        ::= { x25AdmnEntry 10 }
Packit 022b05
Packit 022b05
x25AdmnInterruptTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T26 interrupt timer in milliseconds.  A
Packit 022b05
                value of 2147483647 indicates no interrupt
Packit 022b05
                timer in use."
Packit 022b05
        REFERENCE "10733 interruptTime;
Packit 022b05
                See ISO 8208 Section 6.8.1, table 26"
Packit 022b05
        ::= { x25AdmnEntry 11 }
Packit 022b05
Packit 022b05
x25AdmnRejectTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T27 Reject retransmission timer in
Packit 022b05
                milliseconds.  A value of 2147483647
Packit 022b05
                indicates no reject timer in use."
Packit 022b05
        REFERENCE "10733 5.10.1 dataRejectTime (opt);
Packit 022b05
                See ISO 8208 Section 13.4.1, table 26"
Packit 022b05
        ::= { x25AdmnEntry 12 }
Packit 022b05
Packit 022b05
x25AdmnRegistrationRequestTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T28 registration timer in milliseconds.
Packit 022b05
                A value of 2147483647 indicates no
Packit 022b05
                registration timer in use."
Packit 022b05
        REFERENCE "10733 5.8.1 registrationRequestTime (opt)
Packit 022b05
                See ISO 8208    Section 13.1.1.1, table 26"
Packit 022b05
        ::= { x25AdmnEntry 13 }
Packit 022b05
Packit 022b05
x25AdmnMinimumRecallTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Minimum time interval between unsuccessful
Packit 022b05
                call attempts in milliseconds."
Packit 022b05
        REFERENCE "10733 5.9 minimum RecallTimer"
Packit 022b05
        ::= { x25AdmnEntry 14 }
Packit 022b05
Packit 022b05
x25AdmnRestartCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The R20 restart retransmission count."
Packit 022b05
        REFERENCE "10733 5.9 restartCount;
Packit 022b05
                See ISO 8208    Section 4.1, table 27"
Packit 022b05
        ::= { x25AdmnEntry 15 }
Packit 022b05
Packit 022b05
x25AdmnResetCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The r22 Reset retransmission count."
Packit 022b05
        REFERENCE "10733 resetCount;
Packit 022b05
                See section ISO 8208 8.1, table 27"
Packit 022b05
        ::= { x25AdmnEntry 16 }
Packit 022b05
Packit 022b05
x25AdmnClearCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
        "The r23 Clear retransmission count."
Packit 022b05
        REFERENCE "10733 clearCount;
Packit 022b05
                See ISO 8208 Section 5.5.1, table 27"
Packit 022b05
        ::= { x25AdmnEntry 17 }
Packit 022b05
Packit 022b05
x25AdmnDataRxmtCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The R25 Data retransmission count.  This
Packit 022b05
                value is irrelevant if the
Packit 022b05
                x25AdmnDataRxmtTimer indicates no timer in
Packit 022b05
                use."
Packit 022b05
        REFERENCE "10733 5.10.1 dataRetransmissionCount (opt)
Packit 022b05
                See ISO 8208 Section 11.2.1, table 27"
Packit 022b05
        ::= { x25AdmnEntry 18 }
Packit 022b05
Packit 022b05
x25AdmnRejectCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The R27 reject retransmission count.  This
Packit 022b05
                value is irrelevant if the
Packit 022b05
                x25AdmnRejectTimer indicates no timer in
Packit 022b05
                use."
Packit 022b05
        REFERENCE "10733 5.10.1 dataRejectCount (opt)"
Packit 022b05
        ::= { x25AdmnEntry 19 }
Packit 022b05
Packit 022b05
x25AdmnRegistrationRequestCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The R28 Registration retransmission Count.
Packit 022b05
                This value is irrelevant if the
Packit 022b05
                x25AdmnRegistrationRequestTimer indicates no
Packit 022b05
                timer in use."
Packit 022b05
        REFERENCE "10733 5.8.1 registrationRequestCount (opt);
Packit 022b05
                See ISO 8208    Section 13.1.1.1, table 27"
Packit 022b05
        ::= { x25AdmnEntry 20 }
Packit 022b05
Packit 022b05
x25AdmnNumberPVCs OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4096)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of PVC configured for this PLE.
Packit 022b05
                The PVCs use channel numbers from 1 to this
Packit 022b05
                number."
Packit 022b05
        ::= { x25AdmnEntry 21 }
Packit 022b05
Packit 022b05
x25AdmnDefCallParamId OBJECT-TYPE
Packit 022b05
        SYNTAX  OBJECT IDENTIFIER
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This identifies the instance of the
Packit 022b05
                x25CallParmIndex for the entry in the
Packit 022b05
                x25CallParmTable which contains the default
Packit 022b05
                call parameters for this PLE."
Packit 022b05
        ::= { x25AdmnEntry 22 }
Packit 022b05
Packit 022b05
x25AdmnLocalAddress OBJECT-TYPE
Packit 022b05
        SYNTAX  X121Address
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The local address for this PLE subnetwork.
Packit 022b05
                A zero length address maybe returned by PLEs
Packit 022b05
                that only support PVCs."
Packit 022b05
        REFERENCE "10733 5.9 localDTEAddress"
Packit 022b05
        ::= { x25AdmnEntry 23 }
Packit 022b05
Packit 022b05
x25AdmnProtocolVersionSupported OBJECT-TYPE
Packit 022b05
        SYNTAX  OBJECT IDENTIFIER
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Identifies the version of the X.25 protocol
Packit 022b05
                this interface should support.  Object
Packit 022b05
                identifiers for common versions are defined
Packit 022b05
                below in the x25ProtocolVersion subtree."
Packit 022b05
        REFERENCE "10733 5.9 protocolVersionSupported"
Packit 022b05
        ::= { x25AdmnEntry 24 }
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--            X.25 Operational Table
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
x25OperTable OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF X25OperEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The operation parameters in use by the X.25
Packit 022b05
                PLE."
Packit 022b05
        ::= { x25 2 }
Packit 022b05
Packit 022b05
x25OperEntry OBJECT-TYPE
Packit 022b05
        SYNTAX  X25OperEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Entries of x25OperTable."
Packit 022b05
        INDEX { x25OperIndex }
Packit 022b05
        ::= { x25OperTable 1 }
Packit 022b05
Packit 022b05
X25OperEntry ::= SEQUENCE {
Packit 022b05
        x25OperIndex
Packit 022b05
                IfIndexType,
Packit 022b05
        x25OperInterfaceMode
Packit 022b05
                INTEGER,
Packit 022b05
        x25OperMaxActiveCircuits
Packit 022b05
                INTEGER,
Packit 022b05
        x25OperPacketSequencing
Packit 022b05
                INTEGER,
Packit 022b05
        x25OperRestartTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25OperCallTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25OperResetTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25OperClearTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25OperWindowTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25OperDataRxmtTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25OperInterruptTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25OperRejectTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
     x25OperRegistrationRequestTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25OperMinimumRecallTimer
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25OperRestartCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25OperResetCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25OperClearCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25OperDataRxmtCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25OperRejectCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25OperRegistrationRequestCount
Packit 022b05
                INTEGER,
Packit 022b05
        x25OperNumberPVCs
Packit 022b05
                INTEGER,
Packit 022b05
        x25OperDefCallParamId
Packit 022b05
                OBJECT IDENTIFIER,
Packit 022b05
        x25OperLocalAddress
Packit 022b05
                X121Address,
Packit 022b05
        x25OperDataLinkId
Packit 022b05
                OBJECT IDENTIFIER,
Packit 022b05
        x25OperProtocolVersionSupported
Packit 022b05
                OBJECT IDENTIFIER
Packit 022b05
        }
Packit 022b05
Packit 022b05
x25OperIndex 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 X.25 interface."
Packit 022b05
        ::= { x25OperEntry 1 }
Packit 022b05
Packit 022b05
x25OperInterfaceMode 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 DCE/DTE mode in which the
Packit 022b05
                interface operates.  A value of dxe
Packit 022b05
                indicates the role will be determined by XID
Packit 022b05
                negotiation at the Link Layer and that
Packit 022b05
                negotiation has not yet taken place."
Packit 022b05
        REFERENCE "10733 5.9 interfaceMode"
Packit 022b05
        ::= { x25OperEntry 2 }
Packit 022b05
Packit 022b05
x25OperMaxActiveCircuits        OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4096)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Maximum number of circuits this PLE can
Packit 022b05
                support."
Packit 022b05
        REFERENCE "10733 5.9 maxActiveCircuits
Packit 022b05
                See ISO 8208, Section 3.7"
Packit 022b05
        ::= { x25OperEntry 3 }
Packit 022b05
Packit 022b05
x25OperPacketSequencing 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 modulus of the packet sequence number
Packit 022b05
                space."
Packit 022b05
        REFERENCE "10733 extendedPacketSequencing;
Packit 022b05
                See ISO 8208    Section 7.1.1"
Packit 022b05
        ::= { x25OperEntry 4 }
Packit 022b05
Packit 022b05
x25OperRestartTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T20 restart timer in milliseconds."
Packit 022b05
        REFERENCE "10733 5.9 restartTime;
Packit 022b05
                See ISO 8208    Section 4.1, table 26"
Packit 022b05
        ::= { x25OperEntry 5 }
Packit 022b05
Packit 022b05
x25OperCallTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T21 Call timer in milliseconds."
Packit 022b05
        REFERENCE "10733 callTime;
Packit 022b05
                See ISO 8208 Section 5.2.1, table 26"
Packit 022b05
        ::= { x25OperEntry 6 }
Packit 022b05
Packit 022b05
x25OperResetTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T22 Reset timer in milliseconds."
Packit 022b05
        REFERENCE "10733 resetTime;
Packit 022b05
                See ISO 8208    Section 8.1, table 26"
Packit 022b05
        ::= { x25OperEntry 7 }
Packit 022b05
Packit 022b05
x25OperClearTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T23 Clear timer in milliseconds."
Packit 022b05
        REFERENCE "10733 clearTime;
Packit 022b05
                See ISO 8208 Section 5.5.1, table 26"
Packit 022b05
        ::= { x25OperEntry 8 }
Packit 022b05
Packit 022b05
x25OperWindowTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T24 window status transmission timer
Packit 022b05
                milliseconds.  A value of 2147483647
Packit 022b05
                indicates no window timer in use."
Packit 022b05
        REFERENCE "10733 5.10.1 windowTime (opt);
Packit 022b05
                See ISO 8208 Section 11.2.2, table 26"
Packit 022b05
        ::= { x25OperEntry 9 }
Packit 022b05
Packit 022b05
x25OperDataRxmtTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T25 Data Retransmission timer in
Packit 022b05
                milliseconds.  A value of 2147483647
Packit 022b05
                indicates no data retransmission timer in
Packit 022b05
                use."
Packit 022b05
        REFERENCE "10733 5.10.1 dataRetransmissionTime (opt);
Packit 022b05
                See ISO 8208 Section 11.2.1, table 26"
Packit 022b05
        ::= { x25OperEntry 10 }
Packit 022b05
Packit 022b05
x25OperInterruptTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T26 Interrupt timer in milliseconds.  A
Packit 022b05
                value of 2147483647 indicates interrupts are
Packit 022b05
                not being used."
Packit 022b05
        REFERENCE "10733 interruptTime;
Packit 022b05
                See ISO 8208 Section 6.8.1, table 26"
Packit 022b05
        ::= { x25OperEntry 11 }
Packit 022b05
Packit 022b05
x25OperRejectTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T27 Reject retransmission timer in
Packit 022b05
                milliseconds.  A value of 2147483647
Packit 022b05
                indicates no reject timer in use."
Packit 022b05
        REFERENCE "10733 5.10.1 dataRejectTime (opt);
Packit 022b05
                See ISO 8208 Section 13.4.1, table 26"
Packit 022b05
        ::= { x25OperEntry 12 }
Packit 022b05
Packit 022b05
x25OperRegistrationRequestTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The T28 registration timer in milliseconds.
Packit 022b05
                A value of 2147483647 indicates no
Packit 022b05
                registration timer in use."
Packit 022b05
        REFERENCE "10733 5.8.1 registrationRequestTime (opt);
Packit 022b05
                See ISO 8208    Section 13.1.1.1, table 26"
Packit 022b05
        ::= { x25OperEntry 13 }
Packit 022b05
Packit 022b05
x25OperMinimumRecallTimer OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Minimum time interval between unsuccessful
Packit 022b05
                call attempts in milliseconds."
Packit 022b05
        REFERENCE "10733 5.9 minimum RecallTimer"
Packit 022b05
        ::= { x25OperEntry 14 }
Packit 022b05
Packit 022b05
x25OperRestartCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The R20 restart retransmission count."
Packit 022b05
        REFERENCE "10733 5.9 restartCount
Packit 022b05
                See ISO 8208    Section 4.1, table 27"
Packit 022b05
        ::= { x25OperEntry 15 }
Packit 022b05
Packit 022b05
x25OperResetCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The r22 Reset retransmission count."
Packit 022b05
        REFERENCE "10733 resetCount;
Packit 022b05
                See section ISO 8208 8.1, table 27"
Packit 022b05
        ::= { x25OperEntry 16 }
Packit 022b05
Packit 022b05
x25OperClearCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The r23 Clear retransmission count."
Packit 022b05
        REFERENCE "10733 clearCount;
Packit 022b05
                See ISO 8208 Section 5.5.1, table 27"
Packit 022b05
        ::= { x25OperEntry 17 }
Packit 022b05
Packit 022b05
x25OperDataRxmtCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The R25 Data retransmission count.  This
Packit 022b05
                value is undefined if the
Packit 022b05
                x25OperDataRxmtTimer indicates no timer in
Packit 022b05
                use."
Packit 022b05
        REFERENCE "10733 5.10.1 dataRetransmissionCount (opt);
Packit 022b05
                See ISO 8208 Section 11.2.1, table 27"
Packit 022b05
        ::= { x25OperEntry 18 }
Packit 022b05
Packit 022b05
x25OperRejectCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The R27 reject retransmission count.  This
Packit 022b05
                value is undefined if the x25OperRejectTimer
Packit 022b05
                indicates no timer in use."
Packit 022b05
        REFERENCE "10733 5.10.1 dataRejectCount (opt)"
Packit 022b05
        ::= { x25OperEntry 19 }
Packit 022b05
Packit 022b05
x25OperRegistrationRequestCount OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65535)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The R28 Registration retransmission Count.
Packit 022b05
                This value is undefined if the
Packit 022b05
                x25OperREgistrationRequestTimer indicates no
Packit 022b05
                timer in use."
Packit 022b05
        REFERENCE "10733 5.8.1 registrationRequestCount (opt);
Packit 022b05
                See ISO 8208    Section 13.1.1.1, table 27"
Packit 022b05
        ::= { x25OperEntry 20 }
Packit 022b05
Packit 022b05
x25OperNumberPVCs OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4096)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of PVC configured for this PLE.
Packit 022b05
                The PVCs use channel numbers from 1 to this
Packit 022b05
                number."
Packit 022b05
        ::= { x25OperEntry 21 }
Packit 022b05
Packit 022b05
x25OperDefCallParamId OBJECT-TYPE
Packit 022b05
        SYNTAX  OBJECT IDENTIFIER
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This identifies the instance of the
Packit 022b05
                x25CallParmIndex for the entry in the
Packit 022b05
                x25CallParmTable that contains the default
Packit 022b05
                call parameters for this PLE."
Packit 022b05
        ::= { x25OperEntry 22 }
Packit 022b05
Packit 022b05
x25OperLocalAddress OBJECT-TYPE
Packit 022b05
        SYNTAX  X121Address
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The local address for this PLE subnetwork.
Packit 022b05
                A zero length address maybe returned by PLEs
Packit 022b05
                that only support PVCs."
Packit 022b05
        REFERENCE "10733 5.9 localDTEAddress"
Packit 022b05
        ::= { x25OperEntry 23 }
Packit 022b05
Packit 022b05
x25OperDataLinkId OBJECT-TYPE
Packit 022b05
        SYNTAX  OBJECT IDENTIFIER
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This identifies the instance of the index
Packit 022b05
                object in the first table of the most device
Packit 022b05
                specific MIB for the interface used by this
Packit 022b05
                PLE."
Packit 022b05
        ::= { x25OperEntry 24 }
Packit 022b05
Packit 022b05
x25OperProtocolVersionSupported OBJECT-TYPE
Packit 022b05
        SYNTAX  OBJECT IDENTIFIER
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Identifies the version of the X.25 protocol
Packit 022b05
                this interface supports.  Object identifiers
Packit 022b05
                for common versions are defined below in the
Packit 022b05
                x25ProtocolVersion subtree."
Packit 022b05
        REFERENCE "10733 5.9 protocolVersionSupported"
Packit 022b05
        ::= { x25OperEntry 25 }
Packit 022b05
Packit 022b05
Packit 022b05
--      MIB-II also provides:
Packit 022b05
Packit 022b05
-- ifDescr:
Packit 022b05
-- On an X.25 interface this must include sufficient
Packit 022b05
Packit 022b05
-- information to enable the system's administrator
Packit 022b05
-- to determine the appropriate configuration
Packit 022b05
-- information on a system having multiple X.25
Packit 022b05
-- subnetworks.
Packit 022b05
Packit 022b05
-- ifType: ddn-x25 or rfc877-x25
Packit 022b05
--      an interface of type ddn-x25 will use an algorithm to
Packit 022b05
--      translate between X.121 address and IP addresses.
Packit 022b05
--      An interface of type rfc877-x25 will use a
Packit 022b05
--      configuration table to translate between X.121
Packit 022b05
--      addresses and IP addresses.
Packit 022b05
Packit 022b05
-- ifMtu: the maximum PDU a higher layer can pass to X.25 or
Packit 022b05
-- receive from X.25
Packit 022b05
Packit 022b05
-- ifSpeed:
Packit 022b05
-- This will be the value of the local clock for this line.
Packit 022b05
-- A value of zero indicates external clocking.
Packit 022b05
Packit 022b05
-- ifAdminStatus:
Packit 022b05
Packit 022b05
-- ifOperStatus
Packit 022b05
Packit 022b05
-- ifLastChange
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--            X.25 Statistics Table
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
x25StatTable OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF X25StatEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Statistics information about this X.25
Packit 022b05
                PLE."
Packit 022b05
        ::= { x25 3 }
Packit 022b05
Packit 022b05
x25StatEntry OBJECT-TYPE
Packit 022b05
        SYNTAX  X25StatEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                 "Entries of the x25StatTable."
Packit 022b05
                 INDEX { x25StatIndex }
Packit 022b05
        ::= { x25StatTable 1 }
Packit 022b05
Packit 022b05
X25StatEntry ::= SEQUENCE {
Packit 022b05
        x25StatIndex
Packit 022b05
                IfIndexType,
Packit 022b05
        x25StatInCalls
Packit 022b05
                Counter,
Packit 022b05
        x25StatInCallRefusals
Packit 022b05
                Counter,
Packit 022b05
        x25StatInProviderInitiatedClears
Packit 022b05
                Counter,
Packit 022b05
        x25StatInRemotelyInitiatedResets
Packit 022b05
                Counter,
Packit 022b05
        x25StatInProviderInitiatedResets
Packit 022b05
                Counter,
Packit 022b05
        x25StatInRestarts
Packit 022b05
                Counter,
Packit 022b05
        x25StatInDataPackets
Packit 022b05
                Counter,
Packit 022b05
        x25StatInAccusedOfProtocolErrors
Packit 022b05
                Counter,
Packit 022b05
        x25StatInInterrupts
Packit 022b05
                Counter,
Packit 022b05
        x25StatOutCallAttempts
Packit 022b05
                Counter,
Packit 022b05
        x25StatOutCallFailures
Packit 022b05
                Counter,
Packit 022b05
        x25StatOutInterrupts
Packit 022b05
                Counter,
Packit 022b05
        x25StatOutDataPackets
Packit 022b05
                Counter,
Packit 022b05
        x25StatOutgoingCircuits
Packit 022b05
                Gauge,
Packit 022b05
        x25StatIncomingCircuits
Packit 022b05
                Gauge,
Packit 022b05
        x25StatTwowayCircuits
Packit 022b05
                Gauge,
Packit 022b05
        x25StatRestartTimeouts
Packit 022b05
                Counter,
Packit 022b05
        x25StatCallTimeouts
Packit 022b05
                Counter,
Packit 022b05
        x25StatResetTimeouts
Packit 022b05
                Counter,
Packit 022b05
        x25StatClearTimeouts
Packit 022b05
                Counter,
Packit 022b05
        x25StatDataRxmtTimeouts
Packit 022b05
                Counter,
Packit 022b05
        x25StatInterruptTimeouts
Packit 022b05
                Counter,
Packit 022b05
        x25StatRetryCountExceededs
Packit 022b05
                Counter,
Packit 022b05
        x25StatClearCountExceededs
Packit 022b05
                Counter
Packit 022b05
        }
Packit 022b05
Packit 022b05
x25StatIndex 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 X.25 interface."
Packit 022b05
        ::= { x25StatEntry 1 }
Packit 022b05
Packit 022b05
x25StatInCalls OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of incoming calls received."
Packit 022b05
        ::= { x25StatEntry 2 }
Packit 022b05
Packit 022b05
x25StatInCallRefusals OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of incoming calls refused.  This
Packit 022b05
                includes calls refused by the PLE and by
Packit 022b05
                higher layers.  This also includes calls
Packit 022b05
                cleared because of restricted fast select."
Packit 022b05
        ::= { x25StatEntry 3 }
Packit 022b05
Packit 022b05
x25StatInProviderInitiatedClears        OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of clear requests with a cause
Packit 022b05
                code other than DTE initiated."
Packit 022b05
                REFERENCE "10733 providerInitiatedDisconnect"
Packit 022b05
        ::= { x25StatEntry 4 }
Packit 022b05
Packit 022b05
x25StatInRemotelyInitiatedResets        OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of reset requests received with
Packit 022b05
                cause code DTE initiated."
Packit 022b05
        REFERENCE "10733 remotelyInitiatedResets"
Packit 022b05
        ::= { x25StatEntry 5 }
Packit 022b05
Packit 022b05
x25StatInProviderInitiatedResets        OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of reset requests received with
Packit 022b05
                cause code other than DTE initiated."
Packit 022b05
        REFERENCE "10733 ProviderInitiatedResets"
Packit 022b05
        ::= { x25StatEntry 6 }
Packit 022b05
Packit 022b05
x25StatInRestarts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of remotely initiated (including
Packit 022b05
                provider initiated) restarts experienced by
Packit 022b05
                the PLE excluding the restart associated
Packit 022b05
                with bringing up the PLE interface.  This
Packit 022b05
                only counts restarts received when the PLE
Packit 022b05
                already has an established connection with
Packit 022b05
                the remove PLE."
Packit 022b05
        REFERENCE "10733 5.9 remotelyInitiatedRestarts"
Packit 022b05
        ::= { x25StatEntry 7 }
Packit 022b05
Packit 022b05
x25StatInDataPackets    OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of data packets received."
Packit 022b05
                REFERENCE "10733 5.9 dataPacketsReceived."
Packit 022b05
        ::= { x25StatEntry 8 }
Packit 022b05
Packit 022b05
x25StatInAccusedOfProtocolErrors        OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of packets received containing a
Packit 022b05
                procedure error cause code.  These include
Packit 022b05
                clear, reset, restart, or diagnostic
Packit 022b05
                packets."
Packit 022b05
        REFERENCE "CD 10733 5.9 accusedOfProtocolError"
Packit 022b05
        ::= { x25StatEntry 9 }
Packit 022b05
Packit 022b05
x25StatInInterrupts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of interrupt packets received by
Packit 022b05
                the PLE or over the PVC/VC."
Packit 022b05
        REFERENCE "10733 interruptPacketsReceived"
Packit 022b05
        ::= { x25StatEntry 10 }
Packit 022b05
Packit 022b05
x25StatOutCallAttempts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of calls attempted."
Packit 022b05
        REFERENCE "10733 5.9 callAttempts"
Packit 022b05
        ::= { x25StatEntry 11 }
Packit 022b05
Packit 022b05
x25StatOutCallFailures OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of call attempts which failed.
Packit 022b05
                This includes calls that were cleared
Packit 022b05
                because of restrictive fast select."
Packit 022b05
        ::= { x25StatEntry 12 }
Packit 022b05
Packit 022b05
x25StatOutInterrupts    OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of interrupt packets send by the
Packit 022b05
                PLE or over the PVC/VC."
Packit 022b05
        REFERENCE "10733 InterruptPacketsSent"
Packit 022b05
        ::= { x25StatEntry 13 }
Packit 022b05
Packit 022b05
x25StatOutDataPackets   OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of data packets sent by this
Packit 022b05
                PLE."
Packit 022b05
        REFERENCE "10733 dataPacketSent"
Packit 022b05
        ::= { x25StatEntry 14 }
Packit 022b05
Packit 022b05
x25StatOutgoingCircuits OBJECT-TYPE
Packit 022b05
        SYNTAX  Gauge
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of active outgoing circuits.
Packit 022b05
                This includes call requests sent but not yet
Packit 022b05
                confirmed.  This does not count PVCs."
Packit 022b05
        ::= { x25StatEntry 15 }
Packit 022b05
Packit 022b05
x25StatIncomingCircuits OBJECT-TYPE
Packit 022b05
        SYNTAX  Gauge
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of active Incoming Circuits.
Packit 022b05
                This includes call indications received but
Packit 022b05
                not yet acknowledged.  This does not count
Packit 022b05
                PVCs."
Packit 022b05
        ::= { x25StatEntry 16 }
Packit 022b05
Packit 022b05
x25StatTwowayCircuits   OBJECT-TYPE
Packit 022b05
        SYNTAX  Gauge
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
        "The number of active two-way Circuits.
Packit 022b05
                This includes call requests sent but not yet
Packit 022b05
                confirmed.  This does not count PVCs."
Packit 022b05
        ::= { x25StatEntry 17 }
Packit 022b05
Packit 022b05
x25StatRestartTimeouts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times the T20 restart timer
Packit 022b05
                expired."
Packit 022b05
        REFERENCE "10733 5.9 restartTimeouts"
Packit 022b05
        ::= { x25StatEntry 18 }
Packit 022b05
Packit 022b05
x25StatCallTimeouts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times the T21 call timer
Packit 022b05
                expired."
Packit 022b05
        REFERENCE "10733 5.9 callTimeouts"
Packit 022b05
        ::= { x25StatEntry 19 }
Packit 022b05
Packit 022b05
x25StatResetTimeouts    OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times the T22 reset timer
Packit 022b05
                expired."
Packit 022b05
        REFERENCE "10733 5.9 resetTimeouts"
Packit 022b05
        ::= { x25StatEntry 20 }
Packit 022b05
Packit 022b05
x25StatClearTimeouts    OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times the T23 clear timer
Packit 022b05
                expired."
Packit 022b05
        REFERENCE "10733 5.9 clearTimeouts"
Packit 022b05
        ::= { x25StatEntry 21 }
Packit 022b05
Packit 022b05
x25StatDataRxmtTimeouts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times the T25 data timer
Packit 022b05
                expired."
Packit 022b05
        REFERENCE "10733 5.9 dataRetransmissionsTimerExpiries"
Packit 022b05
        ::= { x25StatEntry 22 }
Packit 022b05
Packit 022b05
x25StatInterruptTimeouts        OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times the T26 interrupt timer
Packit 022b05
                expired."
Packit 022b05
        REFERENCE "10733 5.9 interruptTimerExpires"
Packit 022b05
        ::= { x25StatEntry 23 }
Packit 022b05
Packit 022b05
x25StatRetryCountExceededs 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 retry counter was
Packit 022b05
                exhausted."
Packit 022b05
        REFERENCE "10733 5.9 retryCountsExceeded"
Packit 022b05
        ::= { x25StatEntry 24 }
Packit 022b05
Packit 022b05
x25StatClearCountExceededs OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times the R23 clear count was
Packit 022b05
                exceeded."
Packit 022b05
        REFERENCE "10733 5.9 clearCountsExceeded"
Packit 022b05
        ::= { x25StatEntry 25 }
Packit 022b05
Packit 022b05
Packit 022b05
--      MIB-II also contains:
Packit 022b05
Packit 022b05
-- ifInOctets: Number of data octets delivered to upper
Packit 022b05
-- layer entities.
Packit 022b05
Packit 022b05
-- ifInUcastPkts: Number of packets with a clear M-bit
Packit 022b05
-- delivered to higher layer entities.
Packit 022b05
Packit 022b05
-- ifDiscards: Number of packets dropped for lack of buffering
Packit 022b05
Packit 022b05
-- ifInErrors: Number of packets received containing errors
Packit 022b05
  -- REFERENCE ProtocolErrorsDetectedLocally
Packit 022b05
Packit 022b05
-- ifInUnknownProtos: Number of packets with unknown circuit
Packit 022b05
-- identifier.
Packit 022b05
Packit 022b05
-- ifOutOctets: Number of data octets delivered by
Packit 022b05
--      X.25 to upper layers.
Packit 022b05
Packit 022b05
-- ifOutUcastPkts: Number of packets with a clear M-bit
Packit 022b05
-- received from higher layer entities.
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--                    X.25 Channel Table
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
x25ChannelTable OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF X25ChannelEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "These objects contain information about the
Packit 022b05
                channel number configuration in an X.25 PLE.
Packit 022b05
                These values are the configured values.
Packit 022b05
                changes in these values after the interfaces
Packit 022b05
                has started may not be reflected in the
Packit 022b05
                operating PLE."
Packit 022b05
        REFERENCE "See ISO 8208, Section 3.7"
Packit 022b05
        ::= { x25 4 }
Packit 022b05
Packit 022b05
x25ChannelEntry OBJECT-TYPE
Packit 022b05
        SYNTAX  X25ChannelEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Entries of x25ChannelTable."
Packit 022b05
        REFERENCE "This provides the information available
Packit 022b05
                in 10733 logicalChannelAssignments."
Packit 022b05
        INDEX { x25ChannelIndex }
Packit 022b05
        ::= { x25ChannelTable 1    }
Packit 022b05
Packit 022b05
X25ChannelEntry ::= SEQUENCE {
Packit 022b05
        x25ChannelIndex
Packit 022b05
                IfIndexType,
Packit 022b05
        x25ChannelLIC
Packit 022b05
                INTEGER,
Packit 022b05
        x25ChannelHIC
Packit 022b05
                INTEGER,
Packit 022b05
        x25ChannelLTC
Packit 022b05
                INTEGER,
Packit 022b05
        x25ChannelHTC
Packit 022b05
                INTEGER,
Packit 022b05
        x25ChannelLOC
Packit 022b05
                INTEGER,
Packit 022b05
        x25ChannelHOC
Packit 022b05
                INTEGER
Packit 022b05
        }
Packit 022b05
Packit 022b05
x25ChannelIndex 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 X.25 Interface."
Packit 022b05
        ::= { x25ChannelEntry 1 }
Packit 022b05
Packit 022b05
x25ChannelLIC OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4095)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Lowest Incoming channel."
Packit 022b05
        ::= { x25ChannelEntry 2 }
Packit 022b05
Packit 022b05
x25ChannelHIC OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4095)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Highest Incoming channel.  A value of zero
Packit 022b05
                indicates no channels in this range."
Packit 022b05
        ::= { x25ChannelEntry 3 }
Packit 022b05
Packit 022b05
x25ChannelLTC OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4095)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Lowest Two-way channel."
Packit 022b05
        ::= { x25ChannelEntry 4 }
Packit 022b05
Packit 022b05
x25ChannelHTC OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4095)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Highest Two-way channel.  A value of zero
Packit 022b05
                indicates no channels in this range."
Packit 022b05
        ::= { x25ChannelEntry 5 }
Packit 022b05
Packit 022b05
x25ChannelLOC OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4095)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Lowest outgoing channel."
Packit 022b05
        ::= { x25ChannelEntry 6 }
Packit 022b05
Packit 022b05
x25ChannelHOC OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4095)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Highest outgoing channel.  A value of zero
Packit 022b05
                indicates no channels in this range."
Packit 022b05
        ::= { x25ChannelEntry 7 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--          X25 Per Circuits Information Table
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
x25CircuitTable OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF X25CircuitEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "These objects contain general information
Packit 022b05
                about a specific circuit of an X.25 PLE."
Packit 022b05
        ::= { x25 5 }
Packit 022b05
Packit 022b05
x25CircuitEntry OBJECT-TYPE
Packit 022b05
        SYNTAX  X25CircuitEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Entries of x25CircuitTable."
Packit 022b05
        INDEX { x25CircuitIndex,
Packit 022b05
                x25CircuitChannel }
Packit 022b05
        ::= { x25CircuitTable 1 }
Packit 022b05
Packit 022b05
X25CircuitEntry ::= SEQUENCE {
Packit 022b05
        x25CircuitIndex
Packit 022b05
                IfIndexType,
Packit 022b05
        x25CircuitChannel
Packit 022b05
                INTEGER,
Packit 022b05
        x25CircuitStatus
Packit 022b05
                INTEGER,
Packit 022b05
        x25CircuitEstablishTime
Packit 022b05
                TimeTicks,
Packit 022b05
        x25CircuitDirection
Packit 022b05
                INTEGER,
Packit 022b05
        x25CircuitInOctets
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitInPdus
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitInRemotelyInitiatedResets
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitInProviderInitiatedResets
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitInInterrupts
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitOutOctets
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitOutPdus
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitOutInterrupts
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitDataRetransmissionTimeouts
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitResetTimeouts
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitInterruptTimeouts
Packit 022b05
                Counter,
Packit 022b05
        x25CircuitCallParamId
Packit 022b05
                OBJECT IDENTIFIER,
Packit 022b05
        x25CircuitCalledDteAddress
Packit 022b05
                X121Address,
Packit 022b05
        x25CircuitCallingDteAddress
Packit 022b05
                X121Address,
Packit 022b05
        x25CircuitOriginallyCalledAddress
Packit 022b05
                X121Address,
Packit 022b05
        x25CircuitDescr
Packit 022b05
                DisplayString
Packit 022b05
        }
Packit 022b05
Packit 022b05
x25CircuitIndex 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 X.25 Interface."
Packit 022b05
        ::= { x25CircuitEntry 1 }
Packit 022b05
Packit 022b05
x25CircuitChannel OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4095)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The channel number for this circuit."
Packit 022b05
        ::= { x25CircuitEntry 2 }
Packit 022b05
Packit 022b05
x25CircuitStatus OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {               -- state table states
Packit 022b05
                        invalid (1),
Packit 022b05
                        closed (2),             -- (p1)
Packit 022b05
                        calling (3),            -- (p2,p3,p5)
Packit 022b05
                        open (4),               -- (p4)
Packit 022b05
                        clearing (5),           -- (p6,p7)
Packit 022b05
                        pvc (6),
Packit 022b05
                        pvcResetting (7),
Packit 022b05
                        startClear (8),         -- Close cmd
Packit 022b05
                        startPvcResetting (9),  -- Reset cmd
Packit 022b05
                        other (10)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This object reports the current status of
Packit 022b05
                the circuit.
Packit 022b05
Packit 022b05
                An existing instance of this object can only
Packit 022b05
                be set to startClear, startPvcResetting, or
Packit 022b05
                invalid.  An instance with the value calling
Packit 022b05
                or open can only be set to startClear and
Packit 022b05
                that action will start clearing the circuit.
Packit 022b05
                An instance with the value PVC can only be
Packit 022b05
                set to startPvcResetting or invalid and that
Packit 022b05
                action resets the PVC or deletes the circuit
Packit 022b05
                respectively.  The values startClear or
Packit 022b05
                startPvcResetting will never be returned by
Packit 022b05
                an agent.  An attempt to set the status of
Packit 022b05
                an existing instance to a value other than
Packit 022b05
                one of these values will result in an error.
Packit 022b05
Packit 022b05
                A non-existing instance can be set to PVC to
Packit 022b05
                create a PVC if the implementation supports
Packit 022b05
                dynamic creation of PVCs.  Some
Packit 022b05
                implementations may only allow creation and
Packit 022b05
                deletion of PVCs if the interface is down.
Packit 022b05
                Since the instance identifier will supply
Packit 022b05
                the PLE index and the channel number,
Packit 022b05
                setting this object alone supplies
Packit 022b05
                sufficient information to create the
Packit 022b05
                instance.  All the DEFVAL clauses for the
Packit 022b05
                other objects of this table are appropriate
Packit 022b05
                for creating a PVC; PLEs creating entries
Packit 022b05
                for placed or accepted calls will use values
Packit 022b05
                appropriate for the call rather than the
Packit 022b05
                value of the DEFVAL clause.  Two managers
Packit 022b05
                trying to create the same PVC can determine
Packit 022b05
                from the return code which manager succeeded
Packit 022b05
                and which failed (the failing manager fails
Packit 022b05
                because it can not set a value of PVC for an
Packit 022b05
                existing object).
Packit 022b05
                An entry in the closed or invalid state may
Packit 022b05
                be deleted or reused at the agent's
Packit 022b05
                convence.  If the entry is kept in the
Packit 022b05
                closed state, the values of the parameters
Packit 022b05
                associated with the entry must be correct.
Packit 022b05
                Closed implies the values in the circuit
Packit 022b05
                table are correct.
Packit 022b05
Packit 022b05
                The value of invalid indicates the other
Packit 022b05
                values in the table are invalid.  Many
Packit 022b05
                agents may never return a value of invalid
Packit 022b05
                because they dynamically allocate and free
Packit 022b05
                unused table entries.  An agent for a
Packit 022b05
                statically configured systems can return
Packit 022b05
                invalid to indicate the entry has not yet
Packit 022b05
                been used so the counters contain no
Packit 022b05
                information."
Packit 022b05
        REFERENCE "See ISO 8208,
Packit 022b05
                        table 33 for (p<n>) state table"
Packit 022b05
        ::= { x25CircuitEntry 3 }
Packit 022b05
Packit 022b05
x25CircuitEstablishTime OBJECT-TYPE
Packit 022b05
        SYNTAX  TimeTicks
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The value of sysUpTime when the channel was
Packit 022b05
                associated with this circuit.  For outgoing
Packit 022b05
                SVCs, this is the time the first call packet
Packit 022b05
                was sent.  For incoming SVCs, this is the
Packit 022b05
                time the call indication was received.  For
Packit 022b05
                PVCs this is the time the PVC was able to
Packit 022b05
                pass data to a higher layer entity without
Packit 022b05
                loss of data."
Packit 022b05
        ::= { x25CircuitEntry 4 }
Packit 022b05
Packit 022b05
x25CircuitDirection OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                        incoming (1),
Packit 022b05
                        outgoing (2),
Packit 022b05
                        pvc (3)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The direction of the call that established
Packit 022b05
                this circuit."
Packit 022b05
        REFERENCE "10733 direction"
Packit 022b05
        DEFVAL { pvc }
Packit 022b05
        ::= { x25CircuitEntry 5 }
Packit 022b05
Packit 022b05
                -- X25 Circuit data flow statistics
Packit 022b05
Packit 022b05
x25CircuitInOctets OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of octets of user data delivered
Packit 022b05
                to upper layer."
Packit 022b05
        REFERENCE "5.11 octetsReceivedCounter"
Packit 022b05
        ::= { x25CircuitEntry 6 }
Packit 022b05
Packit 022b05
x25CircuitInPdus OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of PDUs received for this
Packit 022b05
                circuit."
Packit 022b05
        REFERENCE "10733 5.11 dataPacketsReceived"
Packit 022b05
        ::= { x25CircuitEntry 7 }
Packit 022b05
Packit 022b05
x25CircuitInRemotelyInitiatedResets OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of Resets received for this
Packit 022b05
                circuit with cause code of DTE initiated."
Packit 022b05
        REFERENCE "10733 remotelyInitiatedResets"
Packit 022b05
        ::= { x25CircuitEntry 8 }
Packit 022b05
Packit 022b05
x25CircuitInProviderInitiatedResets OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of Resets received for this
Packit 022b05
                circuit with cause code other than DTE
Packit 022b05
                initiated."
Packit 022b05
        REFERENCE "10733 ProviderInitiatedResets"
Packit 022b05
        ::= { x25CircuitEntry 9 }
Packit 022b05
Packit 022b05
x25CircuitInInterrupts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of interrupt packets received
Packit 022b05
                for this circuit."
Packit 022b05
        REFERENCE "10733 interruptPacketsReceived"
Packit 022b05
        ::= { x25CircuitEntry 10 }
Packit 022b05
Packit 022b05
x25CircuitOutOctets OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of octets of user data sent for
Packit 022b05
                this circuit."
Packit 022b05
        REFERENCE "10733 5.11 octetsSentCounter"
Packit 022b05
        ::= { x25CircuitEntry 11 }
Packit 022b05
Packit 022b05
x25CircuitOutPdus OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of PDUs sent for this circuit."
Packit 022b05
        REFERENCE "10733 5.11 dataPacketsSent"
Packit 022b05
        ::= { x25CircuitEntry 12 }
Packit 022b05
Packit 022b05
x25CircuitOutInterrupts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of interrupt packets sent on
Packit 022b05
                this circuit."
Packit 022b05
        REFERENCE "10733 interruptPacketsSent"
Packit 022b05
        ::= { x25CircuitEntry 13 }
Packit 022b05
Packit 022b05
Packit 022b05
                -- X25 circuit timer statistics
Packit 022b05
Packit 022b05
x25CircuitDataRetransmissionTimeouts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times the T25 data
Packit 022b05
                retransmission timer expired for this
Packit 022b05
                circuit."
Packit 022b05
        REFERENCE "10733 5.11 dataRetransmissionTimerExpiries"
Packit 022b05
        ::= { x25CircuitEntry 14 }
Packit 022b05
Packit 022b05
x25CircuitResetTimeouts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times the T22 reset timer
Packit 022b05
                expired for this circuit."
Packit 022b05
        REFERENCE "10733 5.11 resetTimeouts"
Packit 022b05
        ::= { x25CircuitEntry 15 }
Packit 022b05
Packit 022b05
x25CircuitInterruptTimeouts OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of times the T26 Interrupt timer
Packit 022b05
                expired for this circuit."
Packit 022b05
        REFERENCE "10733 interruptTimerExpiries"
Packit 022b05
        ::= { x25CircuitEntry 16 }
Packit 022b05
Packit 022b05
x25CircuitCallParamId OBJECT-TYPE
Packit 022b05
        SYNTAX  OBJECT IDENTIFIER
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This identifies the instance of the
Packit 022b05
                x25CallParmIndex for the entry in the
Packit 022b05
                x25CallParmTable which contains the call
Packit 022b05
                parameters in use with this circuit.  The
Packit 022b05
                entry referenced must contain the values
Packit 022b05
                that are currently in use by the circuit
Packit 022b05
                rather than proposed values.  A value of
Packit 022b05
                NULL indicates the circuit is a PVC or is
Packit 022b05
                using all the default parameters."
Packit 022b05
        DEFVAL { {0 0} }
Packit 022b05
        ::= { x25CircuitEntry 17 }
Packit 022b05
Packit 022b05
x25CircuitCalledDteAddress OBJECT-TYPE
Packit 022b05
        SYNTAX  X121Address
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "For incoming calls, this is the called
Packit 022b05
                address from the call indication packet.
Packit 022b05
                For outgoing calls, this is the called
Packit 022b05
                address from the call confirmation packet.
Packit 022b05
                This will be zero length for PVCs."
Packit 022b05
        REFERENCE "10733 calledDTEAddress"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CircuitEntry 18 }
Packit 022b05
Packit 022b05
x25CircuitCallingDteAddress OBJECT-TYPE
Packit 022b05
        SYNTAX  X121Address
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "For incoming calls, this is the calling
Packit 022b05
                address from the call indication packet.
Packit 022b05
                For outgoing calls, this is the calling
Packit 022b05
                address from the call confirmation packet.
Packit 022b05
                This will be zero length for PVCs."
Packit 022b05
        REFERENCE "10733 callingDTEAddress"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CircuitEntry 19 }
Packit 022b05
Packit 022b05
x25CircuitOriginallyCalledAddress OBJECT-TYPE
Packit 022b05
        SYNTAX  X121Address
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "For incoming calls, this is the address in
Packit 022b05
                the call Redirection or Call Deflection
Packit 022b05
                Notification facility if the call was
Packit 022b05
                deflected or redirected, otherwise it will
Packit 022b05
                be called address from the call indication
Packit 022b05
                packet.  For outgoing calls, this is the
Packit 022b05
                address from the call request packet.  This
Packit 022b05
                will be zero length for PVCs."
Packit 022b05
        REFERENCE "10733 originallyCalledAddress"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CircuitEntry 20 }
Packit 022b05
Packit 022b05
x25CircuitDescr OBJECT-TYPE
Packit 022b05
        SYNTAX  DisplayString (SIZE (0..255))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "A descriptive string associated with this
Packit 022b05
                circuit.  This provides a place for the
Packit 022b05
                agent to supply any descriptive information
Packit 022b05
                it knows about the use or owner of the
Packit 022b05
                circuit.  The agent may return the process
Packit 022b05
                identifier and user name for the process
Packit 022b05
                using the circuit.  Alternative the agent
Packit 022b05
                may return the name of the configuration
Packit 022b05
                entry that caused a bridge to establish the
Packit 022b05
                circuit.  A zero length value indicates the
Packit 022b05
                agent doesn't have any additional
Packit 022b05
                information."
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CircuitEntry 21 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--              The Cleared Circuit Table
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
x25ClearedCircuitEntriesRequested OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The requested number of entries for the
Packit 022b05
                agent to keep in the x25ClearedCircuit
Packit 022b05
                table."
Packit 022b05
        ::= { x25 6 }
Packit 022b05
Packit 022b05
x25ClearedCircuitEntriesGranted OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The actual number of entries the agent will
Packit 022b05
                keep in the x25ClearedCircuit Table."
Packit 022b05
        ::= { x25 7 }
Packit 022b05
Packit 022b05
x25ClearedCircuitTable  OBJECT-TYPE
Packit 022b05
        SYNTAX SEQUENCE OF      X25ClearedCircuitEntry
Packit 022b05
        ACCESS not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "A table of entries about closed circuits.
Packit 022b05
                Entries must be made in this table whenever
Packit 022b05
                circuits are closed and the close request or
Packit 022b05
                close indication packet contains a clearing
Packit 022b05
                cause other than DTE Originated or a
Packit 022b05
                Diagnostic code field other than Higher
Packit 022b05
                Layer Initiated disconnection-normal.  An
Packit 022b05
                agent may optionally make entries for normal
Packit 022b05
                closes (to record closing facilities or
Packit 022b05
                other information).
Packit 022b05
Packit 022b05
                Agents will delete the oldest entry in the
Packit 022b05
                table when adding a new entry would exceed
Packit 022b05
                agent resources.  Agents are required to
Packit 022b05
                keep the last entry put in the table and may
Packit 022b05
                keep more entries.  The object
Packit 022b05
                x25OperClearEntriesGranted returns the
Packit 022b05
                maximum number of entries kept in the
Packit 022b05
                table."
Packit 022b05
        REFERENCE "See ISO 8208 Section 12.2.3.1.1
Packit 022b05
                        and 12.2.3.1.2"
Packit 022b05
        ::= { x25 8 }
Packit 022b05
Packit 022b05
x25ClearedCircuitEntry  OBJECT-TYPE
Packit 022b05
        SYNTAX  X25ClearedCircuitEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Information about a cleared circuit."
Packit 022b05
        INDEX { x25ClearedCircuitIndex }
Packit 022b05
        ::= { x25ClearedCircuitTable 1 }
Packit 022b05
Packit 022b05
X25ClearedCircuitEntry ::= SEQUENCE {
Packit 022b05
        x25ClearedCircuitIndex
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25ClearedCircuitPleIndex
Packit 022b05
                IfIndexType,
Packit 022b05
        x25ClearedCircuitTimeEstablished
Packit 022b05
                TimeTicks,
Packit 022b05
        x25ClearedCircuitTimeCleared
Packit 022b05
                TimeTicks,
Packit 022b05
        x25ClearedCircuitChannel
Packit 022b05
                INTEGER,
Packit 022b05
        x25ClearedCircuitClearingCause
Packit 022b05
                INTEGER,
Packit 022b05
        x25ClearedCircuitDiagnosticCode
Packit 022b05
                INTEGER,
Packit 022b05
        x25ClearedCircuitInPdus
Packit 022b05
                Counter,
Packit 022b05
        x25ClearedCircuitOutPdus
Packit 022b05
                Counter,
Packit 022b05
        x25ClearedCircuitCalledAddress
Packit 022b05
                X121Address,
Packit 022b05
        x25ClearedCircuitCallingAddress
Packit 022b05
                X121Address,
Packit 022b05
        x25ClearedCircuitClearFacilities
Packit 022b05
                OCTET STRING
Packit 022b05
        }
Packit 022b05
Packit 022b05
x25ClearedCircuitIndex OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "An index that uniquely distinguishes one
Packit 022b05
                entry in the clearedCircuitTable from
Packit 022b05
                another.  This index will start at
Packit 022b05
                2147483647 and will decrease by one for each
Packit 022b05
                new entry added to the table.  Upon reaching
Packit 022b05
                one, the index will reset to 2147483647.
Packit 022b05
                Because the index starts at 2147483647 and
Packit 022b05
                decreases, a manager may do a getnext on
Packit 022b05
                entry zero and obtain the most recent entry.
Packit 022b05
                When the index has the value of 1, the next
Packit 022b05
                entry will delete all entries in the table
Packit 022b05
                and that entry will be numbered 2147483647."
Packit 022b05
        ::= { x25ClearedCircuitEntry 1 }
Packit 022b05
Packit 022b05
x25ClearedCircuitPleIndex OBJECT-TYPE
Packit 022b05
        SYNTAX  IfIndexType
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The value of ifIndex for the PLE which
Packit 022b05
                cleared the circuit that created the entry."
Packit 022b05
        ::= { x25ClearedCircuitEntry 2 }
Packit 022b05
Packit 022b05
x25ClearedCircuitTimeEstablished OBJECT-TYPE
Packit 022b05
        SYNTAX  TimeTicks
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The value of sysUpTime when the circuit was
Packit 022b05
                established.  This will be the same value
Packit 022b05
                that was in the x25CircuitEstablishTime for
Packit 022b05
                the circuit."
Packit 022b05
        ::= { x25ClearedCircuitEntry 3 }
Packit 022b05
Packit 022b05
x25ClearedCircuitTimeCleared OBJECT-TYPE
Packit 022b05
        SYNTAX  TimeTicks
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The value of sysUpTime when the circuit was
Packit 022b05
                cleared.  For locally initiated clears, this
Packit 022b05
                will be the time when the clear confirmation
Packit 022b05
                was received.  For remotely initiated
Packit 022b05
                clears, this will be the time when the clear
Packit 022b05
                indication was received."
Packit 022b05
        ::= { x25ClearedCircuitEntry 4 }
Packit 022b05
Packit 022b05
x25ClearedCircuitChannel OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4095)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The channel number for the circuit that was
Packit 022b05
                cleared."
Packit 022b05
        ::= { x25ClearedCircuitEntry 5 }
Packit 022b05
Packit 022b05
x25ClearedCircuitClearingCause OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..255)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Clearing Cause from the clear request
Packit 022b05
                or clear indication packet that cleared the
Packit 022b05
                circuit."
Packit 022b05
        REFERENCE "See ISO 8208 Section 12.2.3.1.1"
Packit 022b05
        ::= { x25ClearedCircuitEntry 6 }
Packit 022b05
Packit 022b05
x25ClearedCircuitDiagnosticCode OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..255)
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Diagnostic Code from the clear request
Packit 022b05
                or clear indication packet that cleared the
Packit 022b05
                circuit."
Packit 022b05
        REFERENCE "See ISO 8208 Section 12.2.3.1.2"
Packit 022b05
        ::= { x25ClearedCircuitEntry 7 }
Packit 022b05
Packit 022b05
x25ClearedCircuitInPdus OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of PDUs received on the
Packit 022b05
                circuit."
Packit 022b05
        ::= { x25ClearedCircuitEntry 8 }
Packit 022b05
Packit 022b05
x25ClearedCircuitOutPdus OBJECT-TYPE
Packit 022b05
        SYNTAX  Counter
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of PDUs transmitted on the
Packit 022b05
                circuit."
Packit 022b05
        ::= { x25ClearedCircuitEntry 9 }
Packit 022b05
Packit 022b05
x25ClearedCircuitCalledAddress OBJECT-TYPE
Packit 022b05
        SYNTAX  X121Address
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The called address from the cleared
Packit 022b05
                circuit."
Packit 022b05
        ::= { x25ClearedCircuitEntry 10 }
Packit 022b05
Packit 022b05
x25ClearedCircuitCallingAddress OBJECT-TYPE
Packit 022b05
        SYNTAX  X121Address
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The calling address from the cleared
Packit 022b05
                circuit."
Packit 022b05
        ::= { x25ClearedCircuitEntry 11 }
Packit 022b05
Packit 022b05
x25ClearedCircuitClearFacilities OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..109))
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The facilities field from the clear request
Packit 022b05
                or clear indication packet that cleared the
Packit 022b05
                circuit.  A size of zero indicates no
Packit 022b05
                facilities were present."
Packit 022b05
        ::= { x25ClearedCircuitEntry 12 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--                The Call Parameter Table
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
x25CallParmTable OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF X25CallParmEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "These objects contain the parameters that
Packit 022b05
                can be varied between X.25 calls.  The
Packit 022b05
                entries in this table are independent of the
Packit 022b05
                PLE.  There exists only one of these tables
Packit 022b05
                for the entire system.  The indexes for the
Packit 022b05
                entries are independent of any PLE or any
Packit 022b05
                circuit.  Other tables reference entries in
Packit 022b05
                this table.  Entries in this table can be
Packit 022b05
                used for default PLE parameters, for
Packit 022b05
                parameters to use to place/answer a call,
Packit 022b05
                for the parameters currently in use for a
Packit 022b05
                circuit, or parameters that were used by a
Packit 022b05
                circuit.
Packit 022b05
Packit 022b05
                The number of references to a given set of
Packit 022b05
                parameters can be found in the
Packit 022b05
                x25CallParmRefCount object sharing the same
Packit 022b05
                instance identifier with the parameters.
Packit 022b05
                The value of this reference count also
Packit 022b05
                affects the access of the objects in this
Packit 022b05
                table.  An object in this table with the
Packit 022b05
                same instance identifier as the instance
Packit 022b05
                identifier of an x25CallParmRefCount must be
Packit 022b05
                consider associated with that reference
Packit 022b05
                count.  An object with an associated
Packit 022b05
                reference count of zero can be written (if
Packit 022b05
                its ACCESS clause allows it).  An object
Packit 022b05
                with an associated reference count greater
Packit 022b05
                than zero can not be written (regardless of
Packit 022b05
                the ACCESS clause).  This ensures that a set
Packit 022b05
                of call parameters being referenced from
Packit 022b05
                another table can not be modified or changed
Packit 022b05
                in a ways inappropriate for continued use by
Packit 022b05
                that table."
Packit 022b05
        ::= { x25 9 }
Packit 022b05
Packit 022b05
x25CallParmEntry OBJECT-TYPE
Packit 022b05
        SYNTAX  X25CallParmEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Entries of x25CallParmTable."
Packit 022b05
        INDEX { x25CallParmIndex }
Packit 022b05
        ::= { x25CallParmTable 1 }
Packit 022b05
Packit 022b05
X25CallParmEntry ::= SEQUENCE {
Packit 022b05
        x25CallParmIndex
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25CallParmStatus
Packit 022b05
                EntryStatus,
Packit 022b05
        x25CallParmRefCount
Packit 022b05
                PositiveInteger,
Packit 022b05
        x25CallParmInPacketSize
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmOutPacketSize
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmInWindowSize
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmOutWindowSize
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmAcceptReverseCharging
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmProposeReverseCharging
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmFastSelect
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmInThruPutClasSize
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmOutThruPutClasSize
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmCug
Packit 022b05
                DisplayString,
Packit 022b05
        x25CallParmCugoa
Packit 022b05
                DisplayString,
Packit 022b05
        x25CallParmBcug
Packit 022b05
                DisplayString,
Packit 022b05
        x25CallParmNui
Packit 022b05
                OCTET STRING,
Packit 022b05
        x25CallParmChargingInfo
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmRpoa
Packit 022b05
                DisplayString,
Packit 022b05
        x25CallParmTrnstDly
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmCallingExt
Packit 022b05
                DisplayString,
Packit 022b05
        x25CallParmCalledExt
Packit 022b05
                DisplayString,
Packit 022b05
        x25CallParmInMinThuPutCls
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmOutMinThuPutCls
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmEndTrnsDly
Packit 022b05
                OCTET STRING,
Packit 022b05
        x25CallParmPriority
Packit 022b05
                OCTET STRING,
Packit 022b05
        x25CallParmProtection
Packit 022b05
                DisplayString,
Packit 022b05
        x25CallParmExptData
Packit 022b05
                INTEGER,
Packit 022b05
        x25CallParmUserData
Packit 022b05
                OCTET STRING,
Packit 022b05
        x25CallParmCallingNetworkFacilities
Packit 022b05
                OCTET STRING,
Packit 022b05
        x25CallParmCalledNetworkFacilities
Packit 022b05
                OCTET STRING
Packit 022b05
        }
Packit 022b05
Packit 022b05
x25CallParmIndex OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "A value that distinguishes this entry from
Packit 022b05
                another entry.  Entries in this table are
Packit 022b05
                referenced from other objects which identify
Packit 022b05
                call parameters.
Packit 022b05
Packit 022b05
                It is impossible to know which other objects
Packit 022b05
                in the MIB reference entries in the table by
Packit 022b05
                looking at this table.  Because of this,
Packit 022b05
                changes to parameters must be accomplished
Packit 022b05
                by creating a new entry in this table and
Packit 022b05
                then changing the referencing table to
Packit 022b05
                identify the new entry.
Packit 022b05
Packit 022b05
                Note that an agent will only use the values
Packit 022b05
                in this table when another table is changed
Packit 022b05
                to reference those values.  The number of
Packit 022b05
                other tables that reference an index object
Packit 022b05
                in this table can be found in
Packit 022b05
                x25CallParmRefCount.  The value of the
Packit 022b05
                reference count will affect the writability
Packit 022b05
                of the objects as explained above.
Packit 022b05
Packit 022b05
                Entries in this table which have a reference
Packit 022b05
                count of zero maybe deleted at the convence
Packit 022b05
                of the agent.  Care should be taken by the
Packit 022b05
                agent to give the NMS sufficient time to
Packit 022b05
                create a reference to newly created entries.
Packit 022b05
Packit 022b05
                Should a Management Station not find a free
Packit 022b05
                index with which to create a new entry, it
Packit 022b05
                may feel free to delete entries with a
Packit 022b05
                reference count of zero.  However in doing
Packit 022b05
                so the Management Station much realize it
Packit 022b05
                may impact other Management Stations."
Packit 022b05
        ::= { x25CallParmEntry 1 }
Packit 022b05
Packit 022b05
x25CallParmStatus OBJECT-TYPE
Packit 022b05
        SYNTAX  EntryStatus
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The status of this call parameter entry.
Packit 022b05
                See RFC 1271 for details of usage."
Packit 022b05
        ::= { x25CallParmEntry 2 }
Packit 022b05
Packit 022b05
x25CallParmRefCount OBJECT-TYPE
Packit 022b05
        SYNTAX  PositiveInteger
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The number of references know by a
Packit 022b05
                management station to exist to this set of
Packit 022b05
                call parameters.  This is the number of
Packit 022b05
                other objects that have returned a value of,
Packit 022b05
                and will return a value of, the index for
Packit 022b05
                this set of call parameters.  Examples of
Packit 022b05
                such objects are the x25AdmnDefCallParamId,
Packit 022b05
                x25OperDataLinkId, or x25AdmnDefCallParamId
Packit 022b05
                objects defined above."
Packit 022b05
        ::= { x25CallParmEntry 3 }
Packit 022b05
Packit 022b05
x25CallParmInPacketSize OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4096)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The maximum receive packet size in octets
Packit 022b05
                for a circuit.  A size of zero for a circuit
Packit 022b05
                means use the PLE default size.  A size of
Packit 022b05
                zero for the PLE means use a default size of
Packit 022b05
                128."
Packit 022b05
        REFERENCE "10733 proposedPacketSize;
Packit 022b05
                See ISO 8208 Section 15.2.2.1.1"
Packit 022b05
        DEFVAL { 128 }
Packit 022b05
        ::= { x25CallParmEntry 4 }
Packit 022b05
Packit 022b05
x25CallParmOutPacketSize OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..4096)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The maximum transmit packet size in octets
Packit 022b05
                for a circuit.  A size of zero for a circuit
Packit 022b05
                means use the PLE default size.  A size of
Packit 022b05
                zero for the PLE default means use a default
Packit 022b05
                size of 128."
Packit 022b05
        REFERENCE "10733 proposedPacketSize;
Packit 022b05
                See ISO 8208 Section 15.2.2.1.1"
Packit 022b05
        DEFVAL { 128 }
Packit 022b05
        ::= { x25CallParmEntry 5 }
Packit 022b05
Packit 022b05
x25CallParmInWindowSize OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..127)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The receive window size for a circuit.  A
Packit 022b05
                size of zero for a circuit means use the PLE
Packit 022b05
                default size.  A size of zero for the PLE
Packit 022b05
                default means use 2."
Packit 022b05
        REFERENCE "10733 proposedWindowSize;
Packit 022b05
                See ISO 8208 Section 15.2.2.1.2"
Packit 022b05
        DEFVAL { 2 }
Packit 022b05
        ::= { x25CallParmEntry 6 }
Packit 022b05
Packit 022b05
x25CallParmOutWindowSize OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..127)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The transmit window size for a circuit.  A
Packit 022b05
                size of zero for a circuit means use the PLE
Packit 022b05
                default size.  A size of zero for the PLE
Packit 022b05
                default means use 2."
Packit 022b05
        REFERENCE "10733 proposedWindowSize;
Packit 022b05
                See ISO 8208 Section 15.2.2.1.2"
Packit 022b05
        DEFVAL { 2 }
Packit 022b05
        ::= { x25CallParmEntry 7 }
Packit 022b05
Packit 022b05
x25CallParmAcceptReverseCharging OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                        default (1),
Packit 022b05
                        accept (2),
Packit 022b05
                        refuse (3),
Packit 022b05
                        neverAccept (4)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "An enumeration defining if the PLE will
Packit 022b05
                accept or refuse charges.  A value of
Packit 022b05
                default for a circuit means use the PLE
Packit 022b05
                default value.  A value of neverAccept is
Packit 022b05
                only used for the PLE default and indicates
Packit 022b05
                the PLE will never accept reverse charging.
Packit 022b05
                A value of default for a PLE default means
Packit 022b05
                refuse."
Packit 022b05
        REFERENCE "10733 acceptReverseCharging"
Packit 022b05
        DEFVAL { refuse }
Packit 022b05
        ::= { x25CallParmEntry 8 }
Packit 022b05
Packit 022b05
x25CallParmProposeReverseCharging OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                        default (1),
Packit 022b05
                        reverse (2),
Packit 022b05
                        local (3)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "An enumeration defining if the PLE should
Packit 022b05
                propose reverse or local charging.  The
Packit 022b05
                value of default for a circuit means use the
Packit 022b05
                PLE default.  The value of default for the
Packit 022b05
                PLE default means use local."
Packit 022b05
        REFERENCE "10733 proposedPacketSize;
Packit 022b05
                See ISO 8208 Section 15.2.2.6"
Packit 022b05
        DEFVAL { local }
Packit 022b05
        ::= { x25CallParmEntry 9 }
Packit 022b05
Packit 022b05
x25CallParmFastSelect OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                        default (1),
Packit 022b05
                        notSpecified (2),
Packit 022b05
                        fastSelect (3),
Packit 022b05
                        restrictedFastResponse (4),
Packit 022b05
                        noFastSelect (5),
Packit 022b05
                        noRestrictedFastResponse (6)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "Expresses preference for use of fast select
Packit 022b05
                facility.  The value of default for a
Packit 022b05
                circuit is the PLE default.  A value of
Packit 022b05
                default for the PLE means noFastSelect.  A
Packit 022b05
                value of noFastSelect or
Packit 022b05
                noRestrictedFastResponse indicates a circuit
Packit 022b05
                may not use fast select or restricted fast
Packit 022b05
                response."
Packit 022b05
        REFERENCE "10733 fastSelect;
Packit 022b05
        Sec ISO 8208 Section 15.2.2.6"
Packit 022b05
        DEFVAL { noFastSelect }
Packit 022b05
        ::= { x25CallParmEntry 10 }
Packit 022b05
Packit 022b05
x25CallParmInThruPutClasSize    OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                        tcReserved1 (1),
Packit 022b05
                        tcReserved2 (2),
Packit 022b05
                        tc75 (3),
Packit 022b05
                        tc150 (4),
Packit 022b05
                        tc300 (5),
Packit 022b05
                        tc600 (6),
Packit 022b05
                        tc1200  (7),
Packit 022b05
                        tc2400  (8),
Packit 022b05
                        tc4800  (9),
Packit 022b05
                        tc9600  (10),
Packit 022b05
                        tc19200 (11),
Packit 022b05
                        tc48000 (12),
Packit 022b05
                        tc64000 (13),
Packit 022b05
                        tcReserved14 (14),
Packit 022b05
                        tcReserved15 (15),
Packit 022b05
                        tcReserved0 (16),
Packit 022b05
                        tcNone  (17),
Packit 022b05
                        tcDefault (18)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The incoming throughput class to negotiate.
Packit 022b05
                A value of tcDefault for a circuit means use
Packit 022b05
                the PLE default.  A value of tcDefault for
Packit 022b05
                the PLE default means tcNone.  A value of
Packit 022b05
                tcNone means do not negotiate throughtput
Packit 022b05
                class."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.2.2.2, table 18"
Packit 022b05
        DEFVAL { tcNone }
Packit 022b05
        ::= { x25CallParmEntry 11 }
Packit 022b05
Packit 022b05
x25CallParmOutThruPutClasSize   OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                        tcReserved1 (1),
Packit 022b05
                        tcReserved2 (2),
Packit 022b05
                        tc75 (3),
Packit 022b05
                        tc150 (4),
Packit 022b05
                        tc300 (5),
Packit 022b05
                tc600 (6),
Packit 022b05
                        tc1200  (7),
Packit 022b05
                        tc2400  (8),
Packit 022b05
                        tc4800  (9),
Packit 022b05
                        tc9600  (10),
Packit 022b05
                        tc19200 (11),
Packit 022b05
                        tc48000 (12),
Packit 022b05
                        tc64000 (13),
Packit 022b05
                        tcReserved14 (14),
Packit 022b05
                        tcReserved15 (15),
Packit 022b05
                        tcReserved0 (16),
Packit 022b05
                        tcNone  (17),
Packit 022b05
                        tcDefault (18)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The outgoing throughput class to negotiate.
Packit 022b05
                A value of tcDefault for a circuit means use
Packit 022b05
                the PLE default.  A value of tcDefault for
Packit 022b05
                the PLE default means use tcNone.  A value
Packit 022b05
                of tcNone means do not negotiate throughtput
Packit 022b05
                class."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.2.2.2, table 18"
Packit 022b05
        DEFVAL { tcNone }
Packit 022b05
        ::= { x25CallParmEntry 12 }
Packit 022b05
Packit 022b05
x25CallParmCug  OBJECT-TYPE
Packit 022b05
        SYNTAX  DisplayString (SIZE(0..4))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Closed User Group to specify.  This
Packit 022b05
                consists of two or four octets containing
Packit 022b05
                the characters 0 through 9.  A zero length
Packit 022b05
                string indicates no facility requested.  A
Packit 022b05
                string length of three containing the
Packit 022b05
                characters DEF for a circuit means use the
Packit 022b05
                PLE default, (the PLE default parameter may
Packit 022b05
                not reference an entry of DEF.)"
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.2.2.3"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 13 }
Packit 022b05
Packit 022b05
x25CallParmCugoa        OBJECT-TYPE
Packit 022b05
        SYNTAX  DisplayString (SIZE(0..4))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Closed User Group with Outgoing Access
Packit 022b05
                to specify.  This consists of two or four
Packit 022b05
                octets containing the characters 0 through
Packit 022b05
                9.  A string length of three containing the
Packit 022b05
                characters DEF for a circuit means use the
Packit 022b05
                PLE default (the PLE default parameters may
Packit 022b05
                not reference an entry of DEF).  A zero
Packit 022b05
                length string indicates no facility
Packit 022b05
                requested."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.2.2.4"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 14 }
Packit 022b05
Packit 022b05
x25CallParmBcug OBJECT-TYPE
Packit 022b05
        SYNTAX  DisplayString (SIZE(0..3))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Bilateral Closed User Group to specify.
Packit 022b05
                This consists of two octets containing the
Packit 022b05
                characters 0 through 9.  A string length of
Packit 022b05
                three containing the characters DEF for a
Packit 022b05
                circuit means use the PLE default (the PLE
Packit 022b05
                default parameter may not reference an entry
Packit 022b05
                of DEF).  A zero length string indicates no
Packit 022b05
                facility requested."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.2.2.5"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 15 }
Packit 022b05
Packit 022b05
x25CallParmNui  OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE(0..108))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Network User Identifier facility.  This
Packit 022b05
                is binary value to be included immediately
Packit 022b05
                after the length field.  The PLE will supply
Packit 022b05
                the length octet.  A zero length string
Packit 022b05
                indicates no facility requested.  This value
Packit 022b05
                is ignored for the PLE default parameters
Packit 022b05
                entry."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.2.2.7"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 16 }
Packit 022b05
Packit 022b05
x25CallParmChargingInfo OBJECT-TYPE
Packit 022b05
        SYNTAX INTEGER {
Packit 022b05
                        default (1),
Packit 022b05
                        noFacility (2),
Packit 022b05
                        noChargingInfo (3),
Packit 022b05
                        chargingInfo (4)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The charging Information facility.  A value
Packit 022b05
                of default for a circuit means use the PLE
Packit 022b05
                default.  The value of default for the
Packit 022b05
                default PLE parameters means use noFacility.
Packit 022b05
                The value of noFacility means do not include
Packit 022b05
                a facility."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.2.2.8"
Packit 022b05
        DEFVAL { noFacility }
Packit 022b05
        ::= { x25CallParmEntry 17 }
Packit 022b05
Packit 022b05
x25CallParmRpoa OBJECT-TYPE
Packit 022b05
        SYNTAX  DisplayString (SIZE(0..108))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The RPOA facility.  The octet string
Packit 022b05
                contains n * 4 sequences of the characters
Packit 022b05
                0-9 to specify a facility with n entries.
Packit 022b05
                The octet string containing the 3 characters
Packit 022b05
                DEF for a circuit specifies use of the PLE
Packit 022b05
                default (the entry for the PLE default may
Packit 022b05
                not contain DEF).  A zero length string
Packit 022b05
                indicates no facility requested."
Packit 022b05
        REFERENCE "See ISO 8208, section 15.2.2.9"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 18 }
Packit 022b05
Packit 022b05
x25CallParmTrnstDly     OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..65537)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Transit Delay Selection and Indication
Packit 022b05
                value.  A value of 65536 indicates no
Packit 022b05
                facility requested.  A value of 65537 for a
Packit 022b05
                circuit means use the PLE default (the PLE
Packit 022b05
                default parameters entry may not use the
Packit 022b05
                value 65537).  The value 65535 may only be
Packit 022b05
                used to indicate the value in use by a
Packit 022b05
                circuit."
Packit 022b05
        REFERENCE "See ISO 8208, Section 15.2.2.13"
Packit 022b05
        DEFVAL { 65536 }
Packit 022b05
        ::= { x25CallParmEntry 19 }
Packit 022b05
Packit 022b05
Packit 022b05
        -- The following parameters are for CCITT facilities.
Packit 022b05
Packit 022b05
x25CallParmCallingExt OBJECT-TYPE
Packit 022b05
        SYNTAX  DisplayString (SIZE(0..40))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Calling Extension facility.  This
Packit 022b05
                contains one of the following:
Packit 022b05
Packit 022b05
                A sequence of hex digits with the value to
Packit 022b05
                be put in the facility. These digits will be
Packit 022b05
                converted to binary by the agent and put in
Packit 022b05
                the facility.  These octets do not include
Packit 022b05
                the length octet.
Packit 022b05
Packit 022b05
                A value containing the three character DEF
Packit 022b05
                for a circuit means use the PLE default,
Packit 022b05
                (the entry for the PLE default parameters
Packit 022b05
                may not use the value DEF).
Packit 022b05
Packit 022b05
                A zero length string indicates no facility
Packit 022b05
                requested."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.3.2.1"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 20 }
Packit 022b05
Packit 022b05
x25CallParmCalledExt OBJECT-TYPE
Packit 022b05
        SYNTAX  DisplayString (SIZE(0..40))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Called Extension facility.  This
Packit 022b05
                contains one of the following:
Packit 022b05
Packit 022b05
                A sequence of hex digits with the value to
Packit 022b05
                be put in the facility.  These digits will be
Packit 022b05
                converted to binary by the agent and put in
Packit 022b05
                the facility.  These octets do not include
Packit 022b05
                the length octet.
Packit 022b05
Packit 022b05
                A value containing the three character DEF
Packit 022b05
                for a circuit means use the PLE default,
Packit 022b05
                (the entry for the PLE default parameters
Packit 022b05
                may not use the value DEF).
Packit 022b05
Packit 022b05
                A zero length string indicates no facility
Packit 022b05
                requested."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.3.2.2"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 21 }
Packit 022b05
Packit 022b05
x25CallParmInMinThuPutCls       OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..17)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The minimum input throughput Class.  A
Packit 022b05
                value of 16 for a circuit means use the PLE
Packit 022b05
                default (the PLE parameters entry may not
Packit 022b05
                use this value).  A value of 17 indicates no
Packit 022b05
                facility requested."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.3.2.3"
Packit 022b05
        DEFVAL { 17 }
Packit 022b05
        ::= { x25CallParmEntry 22 }
Packit 022b05
Packit 022b05
x25CallParmOutMinThuPutCls OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER (0..17)
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The minimum output throughput Class.  A
Packit 022b05
                value of 16 for a circuit means use the PLE
Packit 022b05
                default (the PLE parameters entry may not
Packit 022b05
                use this value).  A value of 17 indicates no
Packit 022b05
                facility requested."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.3.2.3"
Packit 022b05
        DEFVAL { 17 }
Packit 022b05
        ::= { x25CallParmEntry 23 }
Packit 022b05
Packit 022b05
x25CallParmEndTrnsDly OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE(0..6))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The End-to-End Transit Delay to negotiate.
Packit 022b05
                An octet string of length 2, 4, or 6
Packit 022b05
                contains the facility encoded as specified
Packit 022b05
                in ISO/IEC 8208 section 15.3.2.4.  An octet
Packit 022b05
                string of length 3 containing the three
Packit 022b05
                character DEF for a circuit means use the
Packit 022b05
                PLE default (the entry for the PLE default
Packit 022b05
                can not contain the characters DEF).  A zero
Packit 022b05
                length string indicates no facility
Packit 022b05
                requested."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.3.2.4"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 24 }
Packit 022b05
Packit 022b05
x25CallParmPriority OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE(0..6))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The priority facility to negotiate.  The
Packit 022b05
                octet string encoded as specified in ISO/IEC
Packit 022b05
                8208 section 15.3.2.5.  A zero length string
Packit 022b05
                indicates no facility requested.  The entry
Packit 022b05
                for the PLE default parameters must be zero
Packit 022b05
                length."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.3.2.5"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 25 }
Packit 022b05
Packit 022b05
x25CallParmProtection OBJECT-TYPE
Packit 022b05
        SYNTAX  DisplayString (SIZE(0..108))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "A string contains the following:
Packit 022b05
                A hex string containing the value for the
Packit 022b05
                protection facility.  This will be converted
Packit 022b05
                from hex to the octets actually in the
Packit 022b05
                packet by the agent.  The agent will supply
Packit 022b05
                the length field and the length octet is not
Packit 022b05
                contained in this string.
Packit 022b05
Packit 022b05
                An string containing the 3 characters DEF
Packit 022b05
                for a circuit means use the PLE default (the
Packit 022b05
                entry for the PLE default parameters may not
Packit 022b05
                use the value DEF).
Packit 022b05
Packit 022b05
                A zero length string mean no facility
Packit 022b05
                requested."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.3.2.5"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 26 }
Packit 022b05
Packit 022b05
x25CallParmExptData OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                        default (1),
Packit 022b05
                        noExpeditedData (2),
Packit 022b05
                        expeditedData (3)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The Expedited Data facility to negotiate.
Packit 022b05
                A value of default for a circuit means use
Packit 022b05
                the PLE default value.  The entry for the
Packit 022b05
                PLE default parameters may not have the
Packit 022b05
                value default."
Packit 022b05
        REFERENCE "See ISO 8208 Section 15.3.2.7"
Packit 022b05
        DEFVAL { noExpeditedData }
Packit 022b05
        ::= { x25CallParmEntry 27 }
Packit 022b05
Packit 022b05
x25CallParmUserData     OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..128))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The call user data as placed in the packet.
Packit 022b05
                A zero length string indicates no call user
Packit 022b05
                data.  If both the circuit call parameters
Packit 022b05
                and the PLE default have call user data
Packit 022b05
                defined, the data from the circuit call
Packit 022b05
                parameters will be used.  If only the PLE
Packit 022b05
                has data defined, the PLE entry will be
Packit 022b05
                used.  If neither the circuit call
Packit 022b05
                parameters or the PLE default entry has a
Packit 022b05
                value, no call user data will be sent."
Packit 022b05
        REFERENCE "See ISO 8208 Section 12.2.1.1.6, 12.2.1.2"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 28 }
Packit 022b05
Packit 022b05
x25CallParmCallingNetworkFacilities     OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..108))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The calling network facilities.  The
Packit 022b05
                facilities are encoded here exactly as
Packit 022b05
                encoded in the call packet.  These
Packit 022b05
                facilities do not include the marker
Packit 022b05
                facility code.
Packit 022b05
Packit 022b05
                A zero length string in the entry for the
Packit 022b05
                parameter to use when establishing a circuit
Packit 022b05
                means use the PLE default.  A zero length
Packit 022b05
                string in the entry for PLE default
Packit 022b05
                parameters indicates no default facilities."
Packit 022b05
        REFERENCE "See ISO 8206 Section 15.1, category b"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 29 }
Packit 022b05
Packit 022b05
x25CallParmCalledNetworkFacilities      OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..108))
Packit 022b05
        ACCESS  read-write
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
                "The called network facilities.  The
Packit 022b05
                facilities are encoded here exactly as
Packit 022b05
                encoded in the call packet.  These
Packit 022b05
                facilities do not include the marker
Packit 022b05
                facility code.
Packit 022b05
Packit 022b05
                A zero length string in the entry for the
Packit 022b05
                parameter to use when establishing a circuit
Packit 022b05
                means use the PLE default.  A zero length
Packit 022b05
                string in the entry for PLE default
Packit 022b05
                parameters indicates no default facilities."
Packit 022b05
        REFERENCE "See ISO 8206 Section 15.1, category c"
Packit 022b05
        DEFVAL { ''h }
Packit 022b05
        ::= { x25CallParmEntry 30 }
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--              X.25 Traps
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
x25Restart      TRAP-TYPE
Packit 022b05
        ENTERPRISE  x25
Packit 022b05
        VARIABLES { x25OperIndex }
Packit 022b05
        DESCRIPTION
Packit 022b05
                "This trap means the X.25 PLE sent or
Packit 022b05
                received a restart packet.  The restart that
Packit 022b05
                brings up the link should not send a
Packit 022b05
                x25Restart trap so the interface should send
Packit 022b05
                a linkUp trap.  Sending this trap means the
Packit 022b05
                agent does not send a linkDown and linkUp
Packit 022b05
                trap."
Packit 022b05
        ::= 1
Packit 022b05
Packit 022b05
x25Reset        TRAP-TYPE
Packit 022b05
        ENTERPRISE  x25
Packit 022b05
        VARIABLES { x25CircuitIndex,
Packit 022b05
                x25CircuitChannel }
Packit 022b05
        DESCRIPTION
Packit 022b05
                "If the PLE sends or receives a reset, the
Packit 022b05
                agent should send an x25Reset trap."
Packit 022b05
        ::= 2
Packit 022b05
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
--              X.25 Protocol Version Identifiers
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
x25ProtocolVersion OBJECT IDENTIFIER
Packit 022b05
        ::= { x25 10 }
Packit 022b05
Packit 022b05
        -- X.25 CCITT 1976 version.
Packit 022b05
x25protocolCcittV1976 OBJECT IDENTIFIER
Packit 022b05
        ::= { x25ProtocolVersion 1 }
Packit 022b05
Packit 022b05
        -- X.25 CCITT 1980 version.
Packit 022b05
x25protocolCcittV1980 OBJECT IDENTIFIER
Packit 022b05
        ::= { x25ProtocolVersion 2 }
Packit 022b05
Packit 022b05
        -- X.25 CCITT 1984 version.
Packit 022b05
x25protocolCcittV1984 OBJECT IDENTIFIER
Packit 022b05
        ::= { x25ProtocolVersion 3 }
Packit 022b05
Packit 022b05
        -- X.25 CCITT 1988 version.
Packit 022b05
x25protocolCcittV1988 OBJECT IDENTIFIER
Packit 022b05
        ::= { x25ProtocolVersion 4 }
Packit 022b05
Packit 022b05
        -- X.25 1987 version of ISO 8208.
Packit 022b05
x25protocolIso8208V1987 OBJECT IDENTIFIER
Packit 022b05
        ::= { x25ProtocolVersion 5 }
Packit 022b05
Packit 022b05
        -- X.25 1989 version of ISO 8208.
Packit 022b05
x25protocolIso8208V1989 OBJECT IDENTIFIER
Packit 022b05
        ::= { x25ProtocolVersion 6 }
Packit 022b05
Packit 022b05
-- ###########################################################
Packit 022b05
Packit 022b05
END