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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
|
--
-- Juniper Enterprise Specific MIB: RPS
--
-- Copyright (c) 2007-2009, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
JUNIPER-RPS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString
FROM SNMPv2-TC
jnxRPS
FROM JUNIPER-EX-SMI;
jnxRPSMIBObjects MODULE-IDENTITY
LAST-UPDATED "200708290000Z"
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
"Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net"
DESCRIPTION
"This module contains definitions of management information for
Redundant power supply."
REVISION
"200908070000Z" -- Fri Aug 07 00:00:00 2009 UTC
DESCRIPTION
"Data types of jnxRPSFanStatus and jnxRPSSystemStatus are
changed to JnxRPSStatus"
::= { jnxRPS 1 }
JnxRPSStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "RPS Status."
SYNTAX INTEGER {
green(0),
red(1),
amber(2),
green-blink(3),
red-blink(4),
amber-blink(5),
off(6)
}
--
-- Definition of RPS Version information Table
--
jnxRPSVersionTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxRPSVersionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Table containing RPS Version details."
::= { jnxRPSMIBObjects 1 }
jnxRPSVersionEntry OBJECT-TYPE
SYNTAX JnxRPSVersionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RPS Version details on a specific serial number."
INDEX { jnxRPSSerialNumber }
::= { jnxRPSVersionTable 1 }
JnxRPSVersionEntry ::= SEQUENCE {
jnxRPSSerialNumber DisplayString,
jnxRPSModel DisplayString,
jnxRPSFirmwareVersion DisplayString ,
jnxRPSUBootVersion DisplayString }
jnxRPSSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (12))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPS Serial Number of the Chassis."
::= { jnxRPSVersionEntry 1 }
jnxRPSModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Model name of the Chassis."
::= { jnxRPSVersionEntry 2 }
jnxRPSFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Firmware version of the Chassis."
::= { jnxRPSVersionEntry 3 }
jnxRPSUBootVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS UBoot verison of the Chassis."
::= { jnxRPSVersionEntry 4 }
--
-- Definition of RPS Status Table
--
jnxRPSStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxRPSStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing RPS Fan and System Status for each slot."
::= { jnxRPSMIBObjects 2 }
jnxRPSStatusEntry OBJECT-TYPE
SYNTAX JnxRPSStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Status information for each FAN and SYSTEM slot."
INDEX { jnxRPSSerialNumber }
::= { jnxRPSStatusTable 1 }
JnxRPSStatusEntry ::= SEQUENCE {
jnxRPSFanStatus JnxRPSStatus,
jnxRPSSystemStatus JnxRPSStatus }
jnxRPSFanStatus OBJECT-TYPE
SYNTAX JnxRPSStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Fan Status on the chassis ."
::= { jnxRPSStatusEntry 1 }
jnxRPSSystemStatus OBJECT-TYPE
SYNTAX JnxRPSStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS System Status on the Chassis."
::= { jnxRPSStatusEntry 2 }
--
-- Definition of RPS Power Supply Table
--
jnxRPSPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxRPSPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing RPS Power Supply details."
::= { jnxRPSMIBObjects 3 }
jnxRPSPowerSupplyEntry OBJECT-TYPE
SYNTAX JnxRPSPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about Power Supply Status and Description."
INDEX { jnxRPSSerialNumber, jnxRPSPowerSupplyIndex }
::= { jnxRPSPowerSupplyTable 1 }
JnxRPSPowerSupplyEntry ::= SEQUENCE {
jnxRPSPowerSupplyIndex Integer32,
jnxRPSPowerSupplySlotId Integer32,
jnxRPSPowerSupplyStatus DisplayString,
jnxRPSPowerSupplyDescription DisplayString }
jnxRPSPowerSupplyIndex OBJECT-TYPE
SYNTAX Integer32(1..3)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPS Power Supply Index of the Chassis corresponding to RPS node."
::= { jnxRPSPowerSupplyEntry 1 }
jnxRPSPowerSupplySlotId OBJECT-TYPE
SYNTAX Integer32(1..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Power Supply Slot ID f the Chassis corresponding to RPS node."
::= { jnxRPSPowerSupplyEntry 2 }
jnxRPSPowerSupplyStatus OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Power Supply Status of the Chassis corresponding to RPS node."
::= { jnxRPSPowerSupplyEntry 3 }
jnxRPSPowerSupplyDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Power Supply Description of the Chassis corresponding to RPS node."
::= { jnxRPSPowerSupplyEntry 4 }
--
-- Definition of RPS Led Status Table
--
jnxRPSLedPortStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxRPSLedPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing RPS LED Status details."
::= { jnxRPSMIBObjects 4 }
jnxRPSLedPortStatusEntry OBJECT-TYPE
SYNTAX JnxRPSLedPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"LED Port status of each port."
INDEX { jnxRPSSerialNumber, jnxRPSLedPortIndex }
::= { jnxRPSLedPortStatusTable 1 }
JnxRPSLedPortStatusEntry ::= SEQUENCE {
jnxRPSLedPortIndex Integer32,
jnxRPSLedPortStatus DisplayString }
jnxRPSLedPortIndex OBJECT-TYPE
SYNTAX Integer32(1..6)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPS Led Port Index of the Chassis corresponding to RPS node."
::= { jnxRPSLedPortStatusEntry 1 }
jnxRPSLedPortStatus OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Led Port Status of the Chassis corresponding to RPS node."
::= { jnxRPSLedPortStatusEntry 2 }
--
-- Definition of RPS Port Status Table
--
jnxRPSPortStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxRPSPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing RPS Port Status details."
::= { jnxRPSMIBObjects 5 }
jnxRPSPortStatusEntry OBJECT-TYPE
SYNTAX JnxRPSPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port Priority and Status for each port ."
INDEX { jnxRPSSerialNumber, jnxRPSPortIndex }
::= { jnxRPSPortStatusTable 1 }
JnxRPSPortStatusEntry ::= SEQUENCE {
jnxRPSPortIndex Integer32,
jnxRPSPortId Integer32,
jnxRPSPortStatus Integer32,
jnxRPSPortPriority Integer32,
jnxRPSPortPowerRequested DisplayString }
jnxRPSPortIndex OBJECT-TYPE
SYNTAX Integer32(1..6)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RPS Port Index of the Chassis corresponding to RPS node."
::= { jnxRPSPortStatusEntry 1 }
jnxRPSPortId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Port ID of the Chassis corresponding to RPS node."
::= { jnxRPSPortStatusEntry 2 }
jnxRPSPortStatus OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Port Status of the Chassis corresponding to RPS node."
::= { jnxRPSPortStatusEntry 3 }
jnxRPSPortPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Port Priority of the Chassis corresponding to RPS node."
::= { jnxRPSPortStatusEntry 4 }
jnxRPSPortPowerRequested OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The RPS Led Port Power Requested of the Chassis corresponding to RPS node."
::= { jnxRPSPortStatusEntry 5 }
END
|