1-- ***************************************************************** 2-- L A N O P T I C S - E T H E R N E T - O P T I O N - M I B . m y 3-- 4-- March 1996, Keith Horil 5-- 6-- Copyright (c) 1996 by cisco Systems, Inc. 7-- All rights reserved. 8-- ***************************************************************** 9-- 10-- This mib was developed by LanOptics 11 12 13LANOPTICS-ETHERNET-OPTION-MIB DEFINITIONS ::= BEGIN 14 15-- MIB II Extension Definitions for Ethernet Manager Option 16 17IMPORTS 18 OBJECT-TYPE 19 FROM RFC-1212 20 enterprises 21 FROM RFC1155-SMI; 22 23 lanOptics OBJECT IDENTIFIER ::= { enterprises 224 } 24 lanOpticsDot3Monitor OBJECT IDENTIFIER ::= { lanOptics 3 } 25 26etAlertsLevel OBJECT-TYPE 27 SYNTAX OCTET STRING 28 ACCESS read-write 29 STATUS mandatory 30 DESCRIPTION 31 "An array of 6 WORDs (16 bits) values that determines the 32 alerts' thresholds for this agent." 33 ::= { lanOpticsDot3Monitor 1 } 34 35 36 37etAlertsBuffer OBJECT-TYPE 38 SYNTAX OCTET STRING 39 ACCESS read-only 40 STATUS mandatory 41 DESCRIPTION 42 "A buffer holding a list of the last Ethernet manager specific 43 alerts (traps), in an internal representation." 44 ::= { lanOpticsDot3Monitor 2 } 45 46etFullStatisticsBuffer OBJECT-TYPE 47 SYNTAX OCTET STRING 48 ACCESS read-only 49 STATUS mandatory 50 DESCRIPTION 51 "A buffer holding a full statistics information of a certain Ethernet port, in internal representation." 52 ::= { lanOpticsDot3Monitor 3 } 53 54etResetBuffers OBJECT-TYPE 55 SYNTAX INTEGER{ 56 reset(1) 57 } 58 ACCESS read-write 59 STATUS mandatory 60 DESCRIPTION 61 "Setting this value to 1 will flush the alerts and full statistics buffers of this agent" 62 ::= { lanOpticsDot3Monitor 4 } 63 64etSlotsTable OBJECT-TYPE 65 SYNTAX SEQUENCE OF EtSlotsEntry 66 ACCESS not-accessible 67 STATUS mandatory 68 DESCRIPTION 69 "Ethernet information per slot" 70 ::= { lanOpticsDot3Monitor 5 } 71 72etSlotsEntry OBJECT-TYPE 73 SYNTAX EtSlotsEntry 74 ACCESS not-accessible 75 STATUS mandatory 76 DESCRIPTION 77 "A slot entry containing low level information of an Ethernet the card in the slot." 78 INDEX { INTEGER } 79 ::= { etSlotsTable 1 } 80 81EtSlotsEntry ::= SEQUENCE { 82 etSlotPollStruct 83 OCTET STRING 84 } 85 86etSlotPollStruct OBJECT-TYPE 87 SYNTAX OCTET STRING 88 ACCESS read-only 89 STATUS mandatory 90 DESCRIPTION 91 "A structure holding in internal representation, the detailed status of the Ethernet module in this slot" 92 ::= { etSlotsEntry 1 } 93 94END 95