-
Notifications
You must be signed in to change notification settings - Fork 57
/
CISCO-ACCESS-ENVMON-MIB.mib
199 lines (168 loc) · 6.29 KB
/
CISCO-ACCESS-ENVMON-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
-- *****************************************************************
-- CISCO-ACCESS-ENVMON-MIB.my: CISCO ACCESS ENVMON MIB file
--
-- November 1996 Hongchi Shih
--
-- Copyright (c) 1996, 1997, 1998 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
CISCO-ACCESS-ENVMON-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
ciscoEnvMonSupplyStatusEntry,
ciscoEnvMonTemperatureStatusDescr,
ciscoEnvMonTemperatureState,
ciscoEnvMonVoltageStatusDescr,
ciscoEnvMonVoltageState
FROM CISCO-ENVMON-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoAccessEnvMonMIB MODULE-IDENTITY
LAST-UPDATED "9808050000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W. Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-snmp@cisco.com"
DESCRIPTION
"The MIB module to describe the additional status of
the Environmental Monitor on those Cisco Access devices
which support one.
"
REVISION "9808050000Z"
DESCRIPTION
"Rename the enumerated values for caemSupplyFailedComponent
and add fan, overvoltage failure events to it.
Add caemVoltageNotification.
"
::= { ciscoMgmt 61 }
-- Cisco Access Environmental Monitor MIB objects definitions
caemObjects OBJECT IDENTIFIER ::= { ciscoAccessEnvMonMIB 1 }
--
-- Cisco Access Environmental Monitor power supply table
-- This table augments the ciscoEnvMonSupplyStatusTable defined in
-- CISCO-ENVMON-MIB.
--
caemSupplyStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CaemSupplyStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains the additional power supply information
that are not covered in the ciscoEnvMonSupplyStatusTable of
CISCO-ENVMON-MIB.
"
::= { caemObjects 1 }
caemSupplyStatusEntry OBJECT-TYPE
SYNTAX CaemSupplyStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional information about the failure component or location
in the power Supply beyond that provided by Cisco Environmental
Monitor MIB's ciscoEnvMonSupplyStatusEntry.
"
AUGMENTS { ciscoEnvMonSupplyStatusEntry }
::= { caemSupplyStatusTable 1 }
CaemSupplyStatusEntry ::=
SEQUENCE {
caemSupplyFailedComponent INTEGER
}
caemSupplyFailedComponent OBJECT-TYPE
SYNTAX INTEGER {
none (1),
inputVoltage (2),
dcOutputVoltage (3),
thermal (4),
multiple (5),
fan (6),
overvoltage (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The failure component of the power supply being instrumented.
none - No failure.
inputVoltage - Input power lost in one of the power supplies
dcOutputVoltage - DC output voltage lost in one of the power supplies
thermal - Power supply thermal failure.
multiple - Multiple failures.
fan - Fan failure
overvoltage - Over voltage.
"
::= { caemSupplyStatusEntry 1 }
--****************************************************************************
-- Notifications
--****************************************************************************
caemMIBNotificationPrefix
OBJECT IDENTIFIER ::= { ciscoAccessEnvMonMIB 2 }
caemMIBNotifications
OBJECT IDENTIFIER ::= { caemMIBNotificationPrefix 0 }
caemTemperatureNotification NOTIFICATION-TYPE
OBJECTS {
ciscoEnvMonTemperatureStatusDescr,
ciscoEnvMonTemperatureState
}
STATUS current
DESCRIPTION
"A caemTemperatureNotification is sent if the over temperature
condition is detected in the managed system.
This is a replacement for the ciscoEnvMonTemperatureNotification
trap because the information 'ciscoEnvMonTemperatureStatusValue'
required by the trap is not available in the managed system.
"
::= { caemMIBNotifications 1 }
caemVoltageNotification NOTIFICATION-TYPE
OBJECTS {
ciscoEnvMonVoltageStatusDescr,
ciscoEnvMonVoltageState
}
STATUS current
DESCRIPTION
"A caemVoltageNotification is sent if the over voltage
condition is detected and ciscoEnvMonVoltageState is not set
to 'notPresent' in the managed system.
This is a replacement for the ciscoEnvMonVoltageNotification
trap because the information 'ciscoEnvMonVoltageStatusValue'
required by the trap is not available in the managed system.
"
::= { caemMIBNotifications 2 }
caemConformance OBJECT IDENTIFIER ::=
{ ciscoAccessEnvMonMIB 3 }
caemCompliances OBJECT IDENTIFIER ::=
{ caemConformance 1 }
caemGroups OBJECT IDENTIFIER ::=
{ caemConformance 2 }
-- compliance statements
caemCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Cisco Environmental Monitor Supplemental MIB."
MODULE -- this module
MANDATORY-GROUPS
{ caemGroup }
::= { caemCompliances 1 }
-- units of conformance
caemGroup OBJECT-GROUP
OBJECTS {
caemSupplyFailedComponent
}
STATUS current
DESCRIPTION
"A collection of objects providing the additional Environmental
Monitor information beyond that provided by
Cisco Environmental Monitor MIB.
"
::= { caemGroups 1 }
END