summaryrefslogtreecommitdiff
path: root/MIBS/packetflux/PACKETFLUX-STANDBYPOWER
blob: a7f516d3a834532f5d86ad3db4d74d7ba73b6266 (plain)
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
PACKETFLUX-STANDBYPOWER DEFINITIONS ::= BEGIN
    IMPORTS
    MODULE-IDENTITY, Integer32, OBJECT-TYPE,
    Gauge32, TimeTicks
        FROM SNMPv2-SMI
    packetfluxMgmt
        FROM PACKETFLUX-SMI
    OBJECT-GROUP
        FROM SNMPv2-CONF
    TruthValue
        FROM SNMPv2-TC;

    standbypower MODULE-IDENTITY
        LAST-UPDATED        "201306041649Z"
        ORGANIZATION        "PacketFlux Technologies"
        CONTACT-INFO        "custsvc@packetflux.com                        
                            http://www.packetflux.com"
        DESCRIPTION         "MIB for the PacketFlux Standby Power Controller"

        REVISION            "201306041649Z"
        DESCRIPTION         "initial version of this module"
        ::= { packetfluxMgmt 2 }


    powercontrollerstate OBJECT-TYPE
        SYNTAX              INTEGER {
                                onprimarypower( 1 ),
                                startingstandby( 2 ),
                                transferringtostandby( 3 ),
                                onstandbypower( 4 ),
                                transferringtoprimary( 5 )
                            }
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The status of the standby power controller."
        ::= { standbypower 1 }

    transferswitchstate OBJECT-TYPE
        SYNTAX              INTEGER {
                                primary( 1 ),
                                transfertostandby1( 2 ),
                                transfertostandby2( 3 ),
                                transfertostandby3( 4 ),
                                standby( 5 ),
                                transfertoprimary1( 6 ),
                                transfertoprimary2( 7 ),
                                transfertoprimary3( 8 )
                            }
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The current state in the transfer sequence."
        ::= { standbypower 2 }

    standbypowerstate OBJECT-TYPE
        SYNTAX              INTEGER {
                                stopped( 1 ),
                                prepare1( 2 ),
                                prepare2( 3 ),
                                prepare3( 4 ),
                                startup1( 5 ),
                                startup2( 6 ),
                                startup3( 7 ),
                                checkrun( 8 ),
                                reprepare1( 9 ),
                                reprepare2( 10 ),
                                reprepare3( 11 ),
                                warmup1( 12 ),
                                warmup2( 13 ),
                                warmup3( 14 ),
                                verifyrun( 15 ),
                                running( 16 ),
                                cooldown1( 17 ),
                                cooldown2( 18 ),
                                cooldown3( 19 ),
                                shutdown1( 20 ),
                                shutdown2( 21 ),
                                shutdown3( 22 ),
                                verifystopped( 23 ),
                                postshutdown1( 24 ),
                                postshutdown2( 25 ),
                                postshutdown3( 26 )
                            }
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The current state in the standby power sequence."
        ::= { standbypower 3 }

    ac1voltage OBJECT-TYPE
        SYNTAX              Gauge32
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The voltage of the AC input AC1 in 1/10ths of
                            a volt."
        ::= { standbypower 4 }

    ac1frequency OBJECT-TYPE
        SYNTAX              Gauge32
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The frequency of the AC input AC1 in 1/100ths
                            of a Hertz."
        ::= { standbypower 5 }

    ac2voltage OBJECT-TYPE
        SYNTAX              Gauge32
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The voltage of the AC input AC2 in 1/10ths of
                            a volt."
        ::= { standbypower 6 }

    ac2frequency OBJECT-TYPE
        SYNTAX              Gauge32
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The frequency of the AC input AC2 in 1/100ths
                            of a Hertz."
        ::= { standbypower 7 }

    mtr1voltage OBJECT-TYPE
        SYNTAX              Gauge32
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The voltage of the DC input Mtr1 in 1/10ths of
                            a volt."
        ::= { standbypower 8 }

    mtr2voltage OBJECT-TYPE
        SYNTAX              Gauge32
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The voltage of the DC input Mtr2 in 1/10ths of
                            a volt."
        ::= { standbypower 9 }

    pwr1voltage OBJECT-TYPE
        SYNTAX              Gauge32
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The voltage of the DC input Pwr3 in 1/10ths of
                            a volt."
        ::= { standbypower 10 }

    pwr2voltage OBJECT-TYPE
        SYNTAX              Gauge32
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The voltage of the DC input Pwr2 in 1/10ths of
                            a volt."
        ::= { standbypower 11 }

    shuntvoltage OBJECT-TYPE
        SYNTAX              Integer32
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The voltage of the DC input Shunt in 1/10ths of
                            a millivolt. Can be negative."
        ::= { standbypower 12 }

    temperature OBJECT-TYPE
        SYNTAX              Gauge32
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "The temperature of the onboard temperature sensor
                            in 1/10ths of a degree centigrade."
        ::= { standbypower 13 }

    recentunsuccessfulstarts OBJECT-TYPE
        SYNTAX              Integer32
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The number of times the standby power source was
                            not successfully started. This counter resets
                            upon a successful start. It can also be reset
                            via the web interface or by writing 0 to this
                            object."
        ::= { standbypower 14 }

    totalunsuccessfulstarts OBJECT-TYPE
        SYNTAX              Integer32
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The number of times the standby power source was
                            not successfully started. This counter DOES NOT
                            reset upon a successful start. It can be reset
                            via the web interface or by writing 0 to this
                            object."
        ::= { standbypower 15 }

    recentstalls OBJECT-TYPE
        SYNTAX              Integer32
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The number of times the standby power source has
                            stalled. This counter resets upon a clean shutdown.
                            It can also be reset via the web interface or
                            by writing 0 to this object."
        ::= { standbypower 16 }

    totalstalls OBJECT-TYPE
        SYNTAX              Integer32
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The number of times the standby power source has
                            stalled. This counter DOES NOT reset upon a clean
                            shutdown. It can be reset via the web interface
                            or by writing 0 to this object."
        ::= { standbypower 17 }

    numberofstarts OBJECT-TYPE
        SYNTAX              Integer32
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The number of times the secondary power source
                            has started. This counter increments when the
                            standby sequence reaches the running state. This
                            counter can be reset via the web interface or
                            by writing 0 to this object."
        ::= { standbypower 18 }

    numberoftransfers OBJECT-TYPE
        SYNTAX              Integer32
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The number of times the power has transfered from
                            primary to standby, or back. A complete transfer
                            cycle from primary to standby and back to primary
                            will increment this counter twice. This counter
                            can be reset via the web interface or by writing
                            0 to this object."
        ::= { standbypower 19 }

    currenttimeonprimary OBJECT-TYPE
        SYNTAX              TimeTicks
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The amount of time the transfer switch has been
                            in the primary state (position) since the most
                            recent transfer to that state. This timer resets
                            to zero when the transfer switch leaves the primary
                            state (position). This timer can be reset via
                            the web interface or by writing 0 to this object."
        ::= { standbypower 20 }

    totaltimeonprimary OBJECT-TYPE
        SYNTAX              TimeTicks
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The amount of time the transfer switch has been
                            in the primary state (position) since power on
                            or the last reset of this counter. This timer
                            does not automatically reset. This timer can
                            be reset via the web interface or by writing
                            0 to this object."
        ::= { standbypower 21 }

    currenttimeonstandby OBJECT-TYPE
        SYNTAX              TimeTicks
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The amount of time the transfer switch has been
                            in the standby state (position) since the most
                            recent transfer to that state. This timer resets
                            to zero when the transfer switch leaves the primary
                            state (position). This timer can be reset via
                            the web interface or by writing 0 to this object."
        ::= { standbypower 22 }

    totaltimeonstandby OBJECT-TYPE
        SYNTAX              TimeTicks
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The amount of time the transfer switch has been
                            in the standby state (position) since power on
                            or the last reset of this counter. This timer
                            does not automatically reset. This timer can
                            be reset via the web interface or by writing
                            0 to this object."
        ::= { standbypower 23 }

    currentstandbyruntime OBJECT-TYPE
        SYNTAX              TimeTicks
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The amount of time the standby power source has
                            been running during it's current run. This timer
                            resets to zero when the standby power source
                            shuts down. This timer can be reset via the web
                            interface or by writing 0 to this object."
        ::= { standbypower 24 }

    totalstandbyruntime OBJECT-TYPE
        SYNTAX              TimeTicks
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The amount of time the standby power source has
                            been running since power on or the last reset
                            of this counter. This timer does not automatically
                            reset. This timer can be reset via the web interface
                            or by writing 0 to this object."
        ::= { standbypower 25 }

    laststandbyrun OBJECT-TYPE
        SYNTAX              TimeTicks
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The amount of time since the standby power source
                            ran last. This timer resets upon start of the
                            standby power source and starts timing upon shutdown
                            of the standby power source. This timer can be
                            reset via the web interface or by writing 0 to
                            this object."
        ::= { standbypower 26 }

    laststandbygracefulstop OBJECT-TYPE
        SYNTAX              TimeTicks
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The amount of time since standby power source
                            was gracefully shutdown. This timer resets and
                            starts timing upon graceful shutdown of the standby
                            power source. This timer can be reset via the
                            web interface or by writing 0 to this object."
        ::= { standbypower 27 }

    laststandbyunsuccessfulstart OBJECT-TYPE
        SYNTAX              TimeTicks
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The amount of time since the last failed start
                            of the standby power source . This timer resets
                            and starts timing upon a unsuccessful start of
                            the power source. This timer can be reset via
                            the web interface or by writing 0 to this object."
        ::= { standbypower 28 }

    laststandbyfailure OBJECT-TYPE
        SYNTAX              TimeTicks
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "The amount of time since the stall or failure
                            while running of the standby power source . This
                            timer resets and starts timing upon a stall/failure
                            of the power source. This timer can be reset
                            via the web interface or by writing 0 to this
                            object."
        ::= { standbypower 29 }

    switch1closed OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Switch 1 input is closed (shorted/on).
                            False(2) if it is open."
        ::= { standbypower 30 }

    switch2closed OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Switch 2 input is closed (shorted/on).
                            False(2) if it is open."
        ::= { standbypower 31 }

    switch3closed OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Switch 3 input is closed (shorted/on).
                            False(2) if it is open."
        ::= { standbypower 32 }

    switch4closed OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Switch 4 input is closed (shorted/on).
                            False(2) if it is open."
        ::= { standbypower 33 }

    switch5closed OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Switch 5 input is closed (shorted/on).
                            False(2) if it is open."
        ::= { standbypower 34 }

    enabled OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the enable input is closed (shorted/on).
                            False(2) if it is open."
        ::= { standbypower 35 }

    relay1on OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Relay 1 ouput is on (C and NO connected).
                            False(2) if it is off (C and NC connected)."
        ::= { standbypower 36 }

    relay2on OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Relay 2 ouput is on (C and NO connected).
                            False(2) if it is off (C and NC connected)."
        ::= { standbypower 37 }

    relay3on OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Relay 3 ouput is on (C and NO connected).
                            False(2) if it is off (C and NC connected)."
        ::= { standbypower 38 }

    relay4on OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Relay 4 ouput is on (C and NO connected).
                            False(2) if it is off (C and NC connected)."
        ::= { standbypower 39 }

    relay5on OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Relay 5 output is on (C and NO
                            connected). False(2) if it is off (C and NC connected)."
        ::= { standbypower 40 }

    relay6on OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Relay 6 output is on (C and NO
                            connected). False(2) if it is off (C and NC connected)."
        ::= { standbypower 41 }

    relay7on OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the Relay 7 output is on (C and NO
                            connected). False(2) if it is off (C and NC connected)."
        ::= { standbypower 42 }

    ruleswitchstandby OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the switch to standby rule is true.
                            False(2) if it is not."
        ::= { standbypower 43 }

    rulereturnprimary OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the return to primary rule is true.
                            False(2) if it is not."
        ::= { standbypower 44 }

    rulestandbygood OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the standby power good rule is true.
                            False(2) if it is not."
        ::= { standbypower 45 }

    rulestopstandby OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the stop standby and consider it failed
                            rule is true. False(2) if it is not."
        ::= { standbypower 46 }

    ruleexercisestandby OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-only
        STATUS              current
        DESCRIPTION         "True(1) if the exercise standby without transfer
                            rule is true. False(2) if it is not."
        ::= { standbypower 47 }

    webcontrol1 OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "True(1) if the webcontrol 1 virtual toggle switch
                            is in the on position. False(2) if it is not.
                            This value can be written to affect the position
                            of the toggle switch."
        ::= { standbypower 48 }

    webcontrol2 OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "True(1) if the webcontrol 2 virtual toggle switch
                            is in the on position. False(2) if it is not.
                            This value can be written to affect the position
                            of the toggle switch."
        ::= { standbypower 49 }

    webcontrol3 OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "True(1) if the webcontrol 3 virtual toggle switch
                            is in the on position. False(2) if it is not.
                            This value can be written to affect the position
                            of the toggle switch."
        ::= { standbypower 50 }

    webcontrol4 OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "True(1) if the webcontrol 4 virtual toggle switch
                            is in the on position. False(2) if it is not.
                            This value can be written to affect the position
                            of the toggle switch."
        ::= { standbypower 51 }

    webcontrol5 OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "True(1) if the webcontrol 5 virtual toggle switch
                            is in the on position. False(2) if it is not.
                            This value can be written to affect the position
                            of the toggle switch."
        ::= { standbypower 52 }

    webcontrol6 OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "True(1) if the webcontrol 6 virtual toggle switch
                            is in the on position. False(2) if it is not.
                            This value can be written to affect the position
                            of the toggle switch."
        ::= { standbypower 53 }

    webcontrol7 OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "True(1) if the webcontrol 7 virtual toggle switch
                            is in the on position. False(2) if it is not.
                            This value can be written to affect the position
                            of the toggle switch."
        ::= { standbypower 54 }

    webcontrol8 OBJECT-TYPE
        SYNTAX              TruthValue
        MAX-ACCESS          read-write
        STATUS              current
        DESCRIPTION         "True(1) if the webcontrol 8 virtual toggle switch
                            is in the on position. False(2) if it is not.
                            This value can be written to affect the position
                            of the toggle switch."
        ::= { standbypower 55 }

    standbypowerConformance OBJECT IDENTIFIER ::= { standbypower 256 }

    standbypowerGroups OBJECT IDENTIFIER ::= { standbypowerConformance 1 }

    packetfluxStandbypowerAllObjects OBJECT-GROUP
        OBJECTS {           
                        powercontrollerstate,
                        transferswitchstate,
                        standbypowerstate,
                        ac1voltage,
                        ac1frequency,
                        ac2voltage,
                        ac2frequency,
                        mtr1voltage,
                        mtr2voltage,
                        pwr1voltage,
                        pwr2voltage,
                        shuntvoltage,
                        temperature,
                        recentunsuccessfulstarts,
                        totalunsuccessfulstarts,
                        recentstalls,
                        totalstalls,
                        numberofstarts,
                        numberoftransfers,
                        currenttimeonprimary,
                        totaltimeonprimary,
                        currenttimeonstandby,
                        totaltimeonstandby,
                        currentstandbyruntime,
                        totalstandbyruntime,
                        laststandbyrun,
                        laststandbygracefulstop,
                        laststandbyunsuccessfulstart,
                        laststandbyfailure,
                        switch1closed,
                        switch2closed,
                        switch3closed,
                        switch4closed,
                        switch5closed,
                        enabled,
                        relay1on,
                        relay2on,
                        relay3on,
                        relay4on,
                        relay5on,
                        relay6on,
                        relay7on,
                        ruleswitchstandby,
                        rulereturnprimary,
                        rulestandbygood,
                        rulestopstandby,
                        ruleexercisestandby,
                        webcontrol1,
                        webcontrol2,
                        webcontrol3,
                        webcontrol4,
                        webcontrol5,
                        webcontrol6,
                        webcontrol7,
                        webcontrol8
                }
        STATUS              current
        DESCRIPTION         "This automatically created object group contains
                            all those objects that do not belong to any other
                            OBJECT-GROUP"
        ::= { standbypowerGroups 1 }


END