-- ================================================================== -- Copyright (C) 2002 by HUAWEI TECHNOLOGIES. All rights reserved. -- -- Description: HUAWEI Lan Switch private rmon alarm Information MIB -- Reference: -- Version: V1.0 -- History: --(1) Created by Qizhenglin, 2002.8.15 -- ================================================================== -- ================================================================== -- -- Varibles and types be imported -- -- ================================================================== HUAWEI-LswSMON-MIB DEFINITIONS ::= BEGIN IMPORTS OBJECT-TYPE FROM RFC-1212 huaweiMgmt,huaweiDatacomm FROM HUAWEI-3COM-OID-MIB; -- ================================================================== -- -- ======================= definition begin ========================= -- -- ================================================================== hwSmonExtend OBJECT IDENTIFIER ::= { huaweiDatacomm 26 } smonExtendObject OBJECT IDENTIFIER ::= { hwSmonExtend 1 } hwdot1qVlanStatNumber OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The number of vlans that can collect statistics of packets." ::= { smonExtendObject 1 } -- ================================================================== -- -- VLAN statistics status table (for SMON) -- -- ================================================================== hwdot1qVlanStatStatusTable OBJECT-TYPE SYNTAX SEQUENCE OF Hwdot1qVlanStatStatusEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "VLAN statistics status table." ::= { smonExtendObject 2 } hwdot1qVlanStatStatusEntry OBJECT-TYPE SYNTAX Hwdot1qVlanStatStatusEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION " VLAN statistics status table entry." INDEX { hwdot1qVlanStatEnableIndex } ::= { hwdot1qVlanStatStatusTable 1 } Hwdot1qVlanStatStatusEntry ::= SEQUENCE { hwdot1qVlanStatEnableIndex INTEGER, hwdot1qVlanStatEnableStatus INTEGER } hwdot1qVlanStatEnableIndex OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "Vlan index ." ::= {hwdot1qVlanStatStatusEntry 1} hwdot1qVlanStatEnableStatus OBJECT-TYPE SYNTAX INTEGER { enabled(1), disabled(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "VLAN Statistics Status.It represent the current VLAN supports statistic or not." ::= {hwdot1qVlanStatStatusEntry 2} END