⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rfc1382-mib

📁 很不错java的SNMP应用例子
💻
📖 第 1 页 / 共 5 页
字号:
        }x25ChannelIndex OBJECT-TYPE        SYNTAX  IfIndexType        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The ifIndex value for the X.25 Interface."        ::= { x25ChannelEntry 1 }x25ChannelLIC OBJECT-TYPE        SYNTAX  INTEGER (0..4095)        ACCESS  read-write        STATUS  mandatory        DESCRIPTION                "Lowest Incoming channel."        ::= { x25ChannelEntry 2 }x25ChannelHIC OBJECT-TYPE        SYNTAX  INTEGER (0..4095)        ACCESS  read-write        STATUS  mandatory        DESCRIPTION                "Highest Incoming channel.  A value of zero                indicates no channels in this range."        ::= { x25ChannelEntry 3 }x25ChannelLTC OBJECT-TYPE        SYNTAX  INTEGER (0..4095)        ACCESS  read-write        STATUS  mandatory        DESCRIPTION                "Lowest Two-way channel."        ::= { x25ChannelEntry 4 }x25ChannelHTC OBJECT-TYPE        SYNTAX  INTEGER (0..4095)        ACCESS  read-write        STATUS  mandatory        DESCRIPTION                "Highest Two-way channel.  A value of zero                indicates no channels in this range."        ::= { x25ChannelEntry 5 }x25ChannelLOC OBJECT-TYPE        SYNTAX  INTEGER (0..4095)        ACCESS  read-write        STATUS  mandatory        DESCRIPTION                "Lowest outgoing channel."        ::= { x25ChannelEntry 6 }x25ChannelHOC OBJECT-TYPE        SYNTAX  INTEGER (0..4095)        ACCESS  read-write        STATUS  mandatory        DESCRIPTION                "Highest outgoing channel.  A value of zero                indicates no channels in this range."        ::= { x25ChannelEntry 7 }-- ###########################################################--          X25 Per Circuits Information Table-- ###########################################################x25CircuitTable OBJECT-TYPE        SYNTAX  SEQUENCE OF X25CircuitEntry        ACCESS  not-accessible        STATUS  mandatory        DESCRIPTION                "These objects contain general information                about a specific circuit of an X.25 PLE."        ::= { x25 5 }x25CircuitEntry OBJECT-TYPE        SYNTAX  X25CircuitEntry        ACCESS  not-accessible        STATUS  mandatory        DESCRIPTION                "Entries of x25CircuitTable."        INDEX { x25CircuitIndex,                x25CircuitChannel }        ::= { x25CircuitTable 1 }X25CircuitEntry ::= SEQUENCE {        x25CircuitIndex                IfIndexType,        x25CircuitChannel                INTEGER,        x25CircuitStatus                INTEGER,        x25CircuitEstablishTime                TimeTicks,        x25CircuitDirection                INTEGER,        x25CircuitInOctets                Counter,        x25CircuitInPdus                Counter,        x25CircuitInRemotelyInitiatedResets                Counter,        x25CircuitInProviderInitiatedResets                Counter,        x25CircuitInInterrupts                Counter,        x25CircuitOutOctets                Counter,        x25CircuitOutPdus                Counter,        x25CircuitOutInterrupts                Counter,        x25CircuitDataRetransmissionTimeouts                Counter,        x25CircuitResetTimeouts                Counter,        x25CircuitInterruptTimeouts                Counter,        x25CircuitCallParamId                OBJECT IDENTIFIER,        x25CircuitCalledDteAddress                X121Address,        x25CircuitCallingDteAddress                X121Address,        x25CircuitOriginallyCalledAddress                X121Address,        x25CircuitDescr                DisplayString        }x25CircuitIndex OBJECT-TYPE        SYNTAX  IfIndexType        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The ifIndex value for the X.25 Interface."        ::= { x25CircuitEntry 1 }x25CircuitChannel OBJECT-TYPE        SYNTAX  INTEGER (0..4095)        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The channel number for this circuit."        ::= { x25CircuitEntry 2 }x25CircuitStatus OBJECT-TYPE        SYNTAX  INTEGER {               -- state table states                        invalid (1),                        closed (2),             -- (p1)                        calling (3),            -- (p2,p3,p5)                        open (4),               -- (p4)                        clearing (5),           -- (p6,p7)                        pvc (6),                        pvcResetting (7),                        startClear (8),         -- Close cmd                        startPvcResetting (9),  -- Reset cmd                        other (10)                }        ACCESS  read-write        STATUS  mandatory        DESCRIPTION                "This object reports the current status of                the circuit.                An existing instance of this object can only                be set to startClear, startPvcResetting, or                invalid.  An instance with the value calling                or open can only be set to startClear and                that action will start clearing the circuit.                An instance with the value PVC can only be                set to startPvcResetting or invalid and that                action resets the PVC or deletes the circuit                respectively.  The values startClear or                startPvcResetting will never be returned by                an agent.  An attempt to set the status of                an existing instance to a value other than                one of these values will result in an error.                A non-existing instance can be set to PVC to                create a PVC if the implementation supports                dynamic creation of PVCs.  Some                implementations may only allow creation and                deletion of PVCs if the interface is down.                Since the instance identifier will supply                the PLE index and the channel number,                setting this object alone supplies                sufficient information to create the                instance.  All the DEFVAL clauses for the                other objects of this table are appropriate                for creating a PVC; PLEs creating entries                for placed or accepted calls will use values                appropriate for the call rather than the                value of the DEFVAL clause.  Two managers                trying to create the same PVC can determine                from the return code which manager succeeded                and which failed (the failing manager fails                because it can not set a value of PVC for an                existing object).                An entry in the closed or invalid state may                be deleted or reused at the agent's                convence.  If the entry is kept in the                closed state, the values of the parameters                associated with the entry must be correct.                Closed implies the values in the circuit                table are correct.                The value of invalid indicates the other                values in the table are invalid.  Many                agents may never return a value of invalid                because they dynamically allocate and free                unused table entries.  An agent for a                statically configured systems can return                invalid to indicate the entry has not yet                been used so the counters contain no                information."        REFERENCE "See ISO 8208,                        table 33 for (p<n>) state table"        ::= { x25CircuitEntry 3 }x25CircuitEstablishTime OBJECT-TYPE        SYNTAX  TimeTicks        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The value of sysUpTime when the channel was                associated with this circuit.  For outgoing                SVCs, this is the time the first call packet                was sent.  For incoming SVCs, this is the                time the call indication was received.  For                PVCs this is the time the PVC was able to                pass data to a higher layer entity without                loss of data."        ::= { x25CircuitEntry 4 }x25CircuitDirection OBJECT-TYPE        SYNTAX  INTEGER {                        incoming (1),                        outgoing (2),                        pvc (3)                }        ACCESS  read-write        STATUS  mandatory        DESCRIPTION                "The direction of the call that established                this circuit."        REFERENCE "10733 direction"        DEFVAL { pvc }        ::= { x25CircuitEntry 5 }                -- X25 Circuit data flow statisticsx25CircuitInOctets OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of octets of user data delivered                to upper layer."        REFERENCE "5.11 octetsReceivedCounter"        ::= { x25CircuitEntry 6 }x25CircuitInPdus OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of PDUs received for this                circuit."        REFERENCE "10733 5.11 dataPacketsReceived"        ::= { x25CircuitEntry 7 }x25CircuitInRemotelyInitiatedResets OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of Resets received for this                circuit with cause code of DTE initiated."        REFERENCE "10733 remotelyInitiatedResets"        ::= { x25CircuitEntry 8 }x25CircuitInProviderInitiatedResets OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of Resets received for this                circuit with cause code other than DTE                initiated."        REFERENCE "10733 ProviderInitiatedResets"        ::= { x25CircuitEntry 9 }x25CircuitInInterrupts OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of interrupt packets received                for this circuit."        REFERENCE "10733 interruptPacketsReceived"        ::= { x25CircuitEntry 10 }x25CircuitOutOctets OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of octets of user data sent for                this circuit."        REFERENCE "10733 5.11 octetsSentCounter"        ::= { x25CircuitEntry 11 }x25CircuitOutPdus OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of PDUs sent for this circuit."        REFERENCE "10733 5.11 dataPacketsSent"        ::= { x25CircuitEntry 12 }x25CircuitOutInterrupts OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of interrupt packets sent on                this circuit."        REFERENCE "10733 interruptPacketsSent"        ::= { x25CircuitEntry 13 }                -- X25 circuit timer statisticsx25CircuitDataRetransmissionTimeouts OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of times the T25 data                retransmission timer expired for this                circuit."        REFERENCE "10733 5.11 dataRetransmissionTimerExpiries"        ::= { x25CircuitEntry 14 }x25CircuitResetTimeouts OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of times the T22 reset timer                expired for this circuit."        REFERENCE "10733 5.11 resetTimeouts"        ::= { x25CircuitEntry 15 }x25CircuitInterruptTimeouts OBJECT-TYPE        SYNTAX  Counter        ACCESS  read-only        STATUS  mandatory        DESCRIPTION                "The number of times the T26 Interrupt timer                expired for this circuit."        REFERENCE "10733 interruptTimerExpiries"        ::= { x25CircuitEntry 16 }x25CircuitCallParamId OBJECT-TYPE        SYNTAX  OBJECT IDENTIFIER        ACCESS  read-write        STATUS  mandatory        DESCRIPTION                "This identifies the instance of the                x25CallParmIndex for the entry in the                x25CallParmTable which contains the call                parameters in use with this circuit.  The                entry referenced must contain the values                that are currently in use by the circuit                rather than proposed values.  A value of                NULL indicates the circuit is a PVC or is                using all the default parameters."        DEFVAL { {0 0} }        ::= { x25CircuitEntry 17 }x25CircuitCalledDteAddress OBJECT-TYPE        SYNTAX  X121Address        ACCESS  read-write        STATUS  mandatory        DESCRIPTION                "For incoming calls, this is the called                address from the call indication packet.                For outgoing calls, this is the called

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -