-- Copyright (C) 2008-2014 Super Micro Computer Inc. All Rights Reserved -- $Id: fsrmon.mib,v 1.8 2013/03/21 12:09:39 siva Exp $ SUPERMICRO-RMON-MIB DEFINITIONS ::= BEGIN -- Remote Network Monitoring MIB -- Enterprises MIB for RMON product (for Trace). IMPORTS etherStatsEntry FROM RMON-MIB MODULE-IDENTITY, OBJECT-TYPE, enterprises, Unsigned32, Counter32 FROM SNMPv2-SMI; futrmon MODULE-IDENTITY LAST-UPDATED "201209050000Z" ORGANIZATION "Super Micro Computer Inc." CONTACT-INFO "support@Supermicro.com" DESCRIPTION " This MIB module is for managing RMON implementations." REVISION "201209050000Z" DESCRIPTION " This MIB module is for managing RMON implementations. Ether Statistics group supports the monitoring of different statistics on ethernet interfaces, which is enhanced to support statistics per VLAN The etherStatsDatasource of etherStats table identifies the source of data that is configured to analyze. Now this source can be set to either interface OID or VLAN OID. If configured for interface OID the statistics collection is set to be on Interface and if the source is set to VLAN OID the statistics collection is set to be on any of the VLAN configured in the device." ::= { enterprises supermicro-computer-inc(10876) super-switch(101) basic(1) 44 } -- FutreRmon Trace enable/disable object rmonDebugType OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-write STATUS current DESCRIPTION "This object defines the enabled debug flag for rmon" ::= { futrmon 1 } -- FutreRmon enable/disable status object rmonEnableStatus OBJECT-TYPE SYNTAX INTEGER { rmonenabled(1), rmondisabled(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "This object defines the rmonenable flag for rmon" ::= { futrmon 2 } -- FutreRmon stats supported object rmonHwStatsSupp OBJECT-TYPE SYNTAX INTEGER { notsupported(0), supported(1)} MAX-ACCESS read-write STATUS current DESCRIPTION "This object defines the flag for whether HW supports Etherstatistics or not " ::= { futrmon 3 } -- FutreRmon HW history supported object rmonHwHistorySupp OBJECT-TYPE SYNTAX INTEGER { notsupported(0), supported(1)} MAX-ACCESS read-write STATUS current DESCRIPTION "This object defines the enabled HWhistorysupp flag for rmon" ::= { futrmon 4 } -- FutreRmon HWalarmsupported object rmonHwAlarmSupp OBJECT-TYPE SYNTAX INTEGER { notsupported(0), supported(1)} MAX-ACCESS read-write STATUS current DESCRIPTION "This object defines the enabled HWAlarmsupp flag for rmon" ::= { futrmon 5 } -- FutreRmon HWHostsupported object rmonHwHostSupp OBJECT-TYPE SYNTAX INTEGER { notsupported(0), supported(1)} MAX-ACCESS read-write STATUS current DESCRIPTION "This object defines the enabled HWhostsupp flag for rmon" ::= { futrmon 6 } -- FutreRmon HW hosttopN supported object rmonHwHostTopNSupp OBJECT-TYPE SYNTAX INTEGER { notsupported(0), supported(1)} MAX-ACCESS read-write STATUS current DESCRIPTION "This object defines the enabled HWHostTopN flag for rmon" ::= { futrmon 7 } -- FutreRmon HW matrix supported object rmonHwMatrixSupp OBJECT-TYPE SYNTAX INTEGER { notsupported(0), supported(1)} MAX-ACCESS read-write STATUS current DESCRIPTION "This object defines the enabled HWMatrix flag for rmon" ::= { futrmon 8 } -- FutreRmon HW Event supported object rmonHwEventSupp OBJECT-TYPE SYNTAX INTEGER { notsupported(0), supported(1)} MAX-ACCESS read-write STATUS current DESCRIPTION "This object defines the enabled HWEvent flag for rmon" ::= { futrmon 9 } --Tabular Object rmonStatsTable OBJECT-TYPE SYNTAX SEQUENCE OF RmonStatsEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The table is a enhancement of etherStatsTable in stdrmon.mib." ::= {futrmon 10} rmonStatsEntry OBJECT-TYPE SYNTAX RmonStatsEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "An Entry containing Statistics information on OutFCSError." AUGMENTS {etherStatsEntry} ::= {rmonStatsTable 1} RmonStatsEntry ::= SEQUENCE { rmonStatsOutFCSErrors Counter32 } rmonStatsOutFCSErrors OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of frames transmitted with an invalid FCS. Whenever a frame is modified during transmission (e.g., to add or remove a tag) the frame's original FCS is inspected before a new FCS is added to a modified frame. If the original FCS is invalid, the new FCS is made invalid too and this counter is incremented." ::={rmonStatsEntry 1} END