-- ================================================================== -- 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 hwInternetProtocol FROM HUAWEI-MIB hwdot1qVlanIndex FROM HUAWEI_LswINF_MIB; -- ================================================================== -- -- ======================= definition begin ========================= -- -- ================================================================== smonExtend OBJECT IDENTIFIER ::= { xxxxxx } smonExtendObject OBJECT IDENTIFIER ::= { smonExtend 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 { hwdot1qVlanIndex } ::= { hwdot1qVlanStatStatusTable 1 } Hwdot1qVlanStatStatusEntry ::= SEQUENCE { hwdot1qVlanStatEnableStatus INTEGER } hwdot1qVlanStatStatusStatus 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 1} END