-- ------------------------------------------------------------------ -- Description£º HuaWei Lan Switch Dual Main Control MIB -- -- Revise History£º1) 2003-03-27 Fuzhenyu created -- -- -- ------------------------------------------------------------------ -- ------------------------------------------------------------------ -- -- Variable imported -- -- ------------------------------------------------------------------ HUAWEI_LswMix_MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI hwLswFrameIndex,hwLswSlotIndex FROM HUAWEI_DEVICE_MIB lswCommon FROM HUAWEI-MIB; -- the document include the private data about device -- ******************************beginning ****************************** -- -- ------------------------------------------------------------------ hwLswMix MODULE-IDENTITY LAST-UPDATED "200106290000Z" ORGANIZATION "" CONTACT-INFO "" DESCRIPTION "" REVISION "200106290000Z" DESCRIPTION "" ::= { lswCommon 17 } -- the document include the private data about device mix hwLswLastSwitchDate OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "Date of last change mpu" ::= { hwLswMix 1 } hwLswLastSwitchTime OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "Date of last change mpu" ::= { hwLswMix 2 } hwLswMpuSwitchsNum OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "the number of switched mpu" ::= { hwLswMix 3 } hwLswMpuSwitch OBJECT-TYPE SYNTAX INTEGER{ switch(1) } MAX-ACCESS write-only STATUS current DESCRIPTION "the variable used to switch mpu" ::= { hwLswMix 4 } -- the document include the private data about main card hwLswXSlotTable OBJECT-TYPE SYNTAX SEQUENCE OF HwLswXSlotEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The source main table." ::= { hwLswMix 5 } hwLswXSlotEntry OBJECT-TYPE SYNTAX HwLswXSlotEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "An entry in the source main table." INDEX { hwLswFrameIndex, hwLswSlotIndex } ::= { hwLswXSlotTable 1 } HwLswXSlotEntry ::= SEQUENCE { hwLswMainCardBoardStatus INTEGER } hwLswMainCardBoardStatus OBJECT-TYPE SYNTAX INTEGER{ master(1), standby(2) } MAX-ACCESS read-only STATUS current DESCRIPTION "the value describing whether the card is master or standby" ::= { hwLswXSlotEntry 1 } END