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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
-- MibName=raisecomSynce
-- *****************************************************************
-- Version 1.0 Created 2010.12.30 by hongding
-- This version of MIB is created just for the Management of fan .
--
-- Copyright(c) 2002-2012 by RAISECOM TECH, Ltd.
-- All rights reserved.
--
-- modify history
-- 01,20120418,yangzhonghong, ITS00020700,change the enum values of the raisecomFanCardState node
-- 01,20121206,guokai, ESW00006977,add raisecomFanMonitorTrapSendEnable
-- *****************************************************************
RAISECOM-FANMONITOR-MIB DEFINITIONS ::= BEGIN
IMPORTS
raisecomSystem
FROM RAISECOM-SYSTEM-MIB
TruthValue
FROM SNMPv2-TC
Integer32,Unsigned32,Counter32
FROM SNMPv2-SMI;
raisecomFanMonitor MODULE-IDENTITY
LAST-UPDATED "201012270000Z"
ORGANIZATION "Raisecom, Inc."
CONTACT-INFO
" Raise Systems
Postal: Beijing,
China
Tel: 86-010-82884499
E-mail: support@raisecom.com"
DESCRIPTION
"Configuration of fanMonitor object."
-- -------------------------------------------------------------
-- modify history
-- -------------------------------------------------------------
REVISION "201012300000Z"
DESCRIPTION "The initial revision of this MIB."
::= { raisecomSystem 5}
-- -------------------------------------------------------------
-- groups in the raisecomFanMonitor MIB
-- -------------------------------------------------------------
raisecomFanMonitorNotification OBJECT IDENTIFIER ::= { raisecomFanMonitor 1 }
raisecomFanMonitorMibObjects OBJECT IDENTIFIER ::= { raisecomFanMonitor 2 }
-- -------------------------------------------------------------
-- raisecomFanMonitorNotification
-- -------------------------------------------------------------
raisecomFanSpeedNormal NOTIFICATION-TYPE
OBJECTS { raisecomFanIndex,
raisecomFanSpeedValue
}
STATUS current
DESCRIPTION
"The trap notification occur when fan state translating from abnormal to normal."
::= { raisecomFanMonitorNotification 1 }
raisecomFanSpeedAbnormal NOTIFICATION-TYPE
OBJECTS { raisecomFanIndex,
raisecomFanSpeedValue,
raisecomFanSpeedDueValue
}
STATUS current
DESCRIPTION
"The trap notification occur when fan state translatingfrom normal to abnormal."
::= { raisecomFanMonitorNotification 2 }
raisecomFanCardUp NOTIFICATION-TYPE
OBJECTS { raisecomFanCardState }
STATUS current
DESCRIPTION
"The trap notification occur when fan card state translating from down to up."
::= { raisecomFanMonitorNotification 3 }
raisecomFanCardDown NOTIFICATION-TYPE
OBJECTS { raisecomFanCardState }
STATUS current
DESCRIPTION
"The trap notification occur when fan card state translating from up to down."
::= { raisecomFanMonitorNotification 4 }
-- -------------------------------------------------------------
-- raisecomFanMonitorMibObjects
-- -------------------------------------------------------------
raisecomFanMonitorGlobalGroup OBJECT IDENTIFIER ::= { raisecomFanMonitorMibObjects 1 }
-- -------------------------------------------------------------
-- raisecomFanMonitorGlobalGroup
-- -------------------------------------------------------------
raisecomFanMonitorMode OBJECT-TYPE
SYNTAX INTEGER
{
enforce(1),
auto(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An integer value that specify the current monitor mode.
ENFORCE(1) means that the fan speed need to set manully;
AUTO(2) means that the fan speed will ajusted autoly according
to the temperature"
::= { raisecomFanMonitorGlobalGroup 1 }
raisecomFanMonitorSpdLevel OBJECT-TYPE
SYNTAX Unsigned32(1..4)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the speed level of fan in enforce mode."
::= { raisecomFanMonitorGlobalGroup 2 }
raisecomFanMonitorNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the number of fan being monitorred."
::= { raisecomFanMonitorGlobalGroup 3 }
raisecomFanMonitorLevlNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the total number of fan speed levels."
::= { raisecomFanMonitorGlobalGroup 4 }
raisecomFanCardState OBJECT-TYPE
SYNTAX INTEGER
{
all-down(1),
all-up(2),
card1-up(3),
card2-up(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the current state of fan cards.
all_down(1) means that all fan cards are down;
all_up(2) means that all fan cards are up;
card1_up(3) means that fan card 1 is up, the others are down;
card2_up(4) means that fan card 2 is up, the others are down."
::= { raisecomFanMonitorGlobalGroup 5 }
raisecomFanCardSerialNumber OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"specify the identical serial number of current fan card,this
string number will be set when device leaving factory"
::= { raisecomFanMonitorGlobalGroup 6 }
raisecomFanMonitorTrapSendEnable OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the status of sending trap"
::= {raisecomFanMonitorGlobalGroup 7 }
-- -------------------------------------------------------------
-- raisecomFanMonitorStateTable
-- -------------------------------------------------------------
raisecomFanMonitorStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaisecomFanMonitorStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Fan monitor state table."
::= { raisecomFanMonitorMibObjects 2 }
raisecomFanMonitorStateEntry OBJECT-TYPE
SYNTAX RaisecomFanMonitorStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Fan monitor state entry."
INDEX { raisecomFanIndex }
::= { raisecomFanMonitorStateTable 1 }
RaisecomFanMonitorStateEntry ::= SEQUENCE {
raisecomFanIndex Unsigned32,
raisecomFanSpeedValue Unsigned32,
raisecomFanWorkState INTEGER,
raisecomFanSpeedCurrentLevel Unsigned32
}
raisecomFanIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specify the sequence number of fan."
::= { raisecomFanMonitorStateEntry 1 }
raisecomFanSpeedValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the actural speed of the current fan."
::= { raisecomFanMonitorStateEntry 2 }
raisecomFanWorkState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
abnormal(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the current state of fan
normal(1) means the current fan operate normally;
abnormal(2) means the current fan operate abnormally"
::= { raisecomFanMonitorStateEntry 3 }
raisecomFanSpeedCurrentLevel OBJECT-TYPE
SYNTAX Unsigned32(1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the temperature scale border that match the speed levle,
based on this scale border,the current fan speed will ajusted autoly
according to the current temperature"
::= { raisecomFanMonitorStateEntry 4 }
-- -------------------------------------------------------------
-- raisecomFanSpeedLevelTable
-- -------------------------------------------------------------
raisecomFanSpeedLevelTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaisecomFanSpeedLevelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"fan speed level information table."
::= { raisecomFanMonitorMibObjects 3 }
raisecomFanSpeedLevelEntry OBJECT-TYPE
SYNTAX RaisecomFanSpeedLevelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"fan speed level information entry."
INDEX { raisecomFanSpeedLevelIndex }
::= { raisecomFanSpeedLevelTable 1 }
RaisecomFanSpeedLevelEntry ::= SEQUENCE {
raisecomFanSpeedLevelIndex Unsigned32,
raisecomFanSpeedDueValue Unsigned32,
raisecomFanSpeedTemperatureScale Unsigned32
}
raisecomFanSpeedLevelIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specify the fan speed level index."
::= { raisecomFanSpeedLevelEntry 1 }
raisecomFanSpeedDueValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the speed value that match the fan levle index.
this value can ben get from a new or normal fan ,not an used
fan ,because the used fan may be aged"
::= { raisecomFanSpeedLevelEntry 2 }
raisecomFanSpeedTemperatureScale OBJECT-TYPE
SYNTAX Unsigned32(45..75)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the temperature scale border that match the speed levle,
based on this scale border,the current fan speed will ajusted autoly
according to the current temperature"
::= { raisecomFanSpeedLevelEntry 3 }
END
|