-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNETWORK-APPLIANCE-MIB
24180 lines (21172 loc) · 611 KB
/
NETWORK-APPLIANCE-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
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
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- ======================================================== --
-- Network Appliance Custom MIB --
-- --
-- This MIB contains only information specific to --
-- Network Appliance products. The Network Appliance --
-- SNMP agent supports the information specified --
-- in the RFC1213 MIB, but the specification of the --
-- RFC1213 MIB is not included in this file. --
-- ======================================================= --
-- Version 1.18, October 2004 (See NOTE below)
-- Copyright (c) 1995-2001 Network Appliance, Inc.
-- All rights reserved.
-- This Network Appliance SNMP Management Information Base
-- (Specification) embodies Network Appliance's confidential
-- and proprietary intellectual property. Network Appliance
-- retains all title and ownership in the Specification,
-- including any revisions.
-- This Specification is supplied "AS IS," and Network Appliance
-- makes no warranty, either express or implied, as to the use,
-- operation, condition, or performance of the Specification.
-- NOTE: Please maintain the format of the line above
-- containing the MIB's version number as:
--
-- Version <version #>, <Date> (See NOTE below)
--
-- This line is parsed during the release process
-- to extract the version of the MIB.
NETWORK-APPLIANCE-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises, Counter, IpAddress, TimeTicks, Gauge
FROM RFC1155-SMI
PhysAddress, DisplayString
FROM RFC1213-MIB
TRAP-TYPE
FROM RFC-1215
OBJECT-TYPE
FROM RFC-1212;
-- This MIB module uses the extended OBJECT-TYPE macro as
-- defined in RFC-1212
-- MIB-II (same prefix as MIB-I)
-- the Network Appliance MIB
-- NetApp conventions
netapp OBJECT IDENTIFIER ::= { enterprises 789 }
-- the current netapp mib
netapp1 OBJECT IDENTIFIER ::= { netapp 1 }
--
-- This is the tree under which values for the sysObjectID
-- are allocated.
--
netappProducts OBJECT IDENTIFIER ::= { netapp 2 }
--
-- This is the tree under which values for the DataFabric Manager
-- are allocated. Those values are defined in separate mib file,
-- distributed with DataFabric Manager product.
--
netappDataFabricManager OBJECT IDENTIFIER ::= { netapp 3 }
--
-- This is the tree under which values for the NetApp Support Console
-- are allocated. Those values are defined in separate mib file,
-- distributed with the Support Console
--
netappSupportConsole OBJECT IDENTIFIER ::= { netapp 4 }
--
-- We distinguish between filers and NetCaches.
--
netappFiler OBJECT IDENTIFIER ::= { netappProducts 1 }
netappNetCache OBJECT IDENTIFIER ::= { netappProducts 2 }
netappClusteredFiler OBJECT IDENTIFIER ::= { netappProducts 3 }
-- top-level netapp groups
product OBJECT IDENTIFIER ::= { netapp1 1 }
sysStat OBJECT IDENTIFIER ::= { netapp1 2 }
nfs OBJECT IDENTIFIER ::= { netapp1 3 }
quota OBJECT IDENTIFIER ::= { netapp1 4 }
filesys OBJECT IDENTIFIER ::= { netapp1 5 }
raid OBJECT IDENTIFIER ::= { netapp1 6 }
cifs OBJECT IDENTIFIER ::= { netapp1 7 }
netcache OBJECT IDENTIFIER ::= { netapp1 8 }
snapmirror OBJECT IDENTIFIER ::= { netapp1 9 }
ndmp OBJECT IDENTIFIER ::= { netapp1 10 }
fabric OBJECT IDENTIFIER ::= { netapp1 11 }
dafs OBJECT IDENTIFIER ::= { netapp1 12 }
vi OBJECT IDENTIFIER ::= { netapp1 13 }
backup OBJECT IDENTIFIER ::= { netapp1 14 }
vfiler OBJECT IDENTIFIER ::= { netapp1 16 }
blocks OBJECT IDENTIFIER ::= { netapp1 17 }
nfscache OBJECT IDENTIFIER ::= { netapp1 18 }
snapvault OBJECT IDENTIFIER ::= { netapp1 19 }
ftpd OBJECT IDENTIFIER ::= { netapp1 20 }
storage OBJECT IDENTIFIER ::= { netapp1 21 }
network OBJECT IDENTIFIER ::= { netapp1 22 }
-- -- -- -- -- -- -- --
-- the product group --
-- -- -- -- -- -- -- --
productType OBJECT-TYPE
SYNTAX INTEGER {
eisa-based(1),
pci-based(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The product type representing the target platform."
::= { product 1 }
productVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Version String for the Software Running on
this platform."
::= { product 2 }
productId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The System ID of this system."
::= { product 3 }
productVendor OBJECT-TYPE
SYNTAX INTEGER {
netapp(1),
dell(2),
ibm(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The vendor id of this system, indicating the company
that has supplied the product."
::= { product 4 }
productModel OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The model name of the system. Examples
are FAS980 and FAS3050."
::= { product 5 }
productFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Version string for the Firmware running on
this platform."
::= { product 6 }
productGuiUrl OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The complete URL used to access the administrative GUI
for a browser-based interface."
::= { product 7 }
productApiUrl OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The complete URL used to access the administrative API
for a programmatic interface."
::= { product 8 }
productSerialNum OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The product serial number. Returns unknown if it
cannot be determined."
::= { product 9 }
productPartnerSerialNum OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The partner's serial number, not applicable
if there is no partner, and unknown if it
cannot be determined."
::= { product 10 }
productCPUArch OBJECT-TYPE
SYNTAX INTEGER {
x86(1),
alpha(2),
mips(3),
sparc(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The CPU architecture type of this appliance"
::= { product 11 }
productTrapData OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This returns a static string. This object is used
as a placeholder for enterprise traps."
::= { product 12 }
productMachineType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The machine type of the system. Examples
are FAS980 and FAS3050."
::= { product 13 }
-- -- -- -- -- -- -- --
-- the sysStat group --
-- -- -- -- -- -- -- --
cpu OBJECT IDENTIFIER ::= { sysStat 1 }
misc OBJECT IDENTIFIER ::= { sysStat 2 }
cf OBJECT IDENTIFIER ::= { sysStat 3 }
environment OBJECT IDENTIFIER ::= { sysStat 4 }
nvram OBJECT IDENTIFIER ::= { sysStat 5 }
cp OBJECT IDENTIFIER ::= { sysStat 6 }
autosupport OBJECT IDENTIFIER ::= { sysStat 7 }
-- the cpu group for sysStat
cpuUpTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time (in hundredths of a second) that the
CPU has been up since the last boot."
::= { cpu 1 }
cpuBusyTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time (in hundredths of a second) that the
CPU has been doing useful work since the last
boot."
::= { cpu 2 }
cpuBusyTimePerCent OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The percent of time that the CPU has been doing
useful work since the last time a client requested
the cpuBusyTimePerCent."
::= { cpu 3 }
cpuIdleTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time (in hundredths of a second) that the
CPU has been idle since the last boot."
::= { cpu 4 }
cpuIdleTimePerCent OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The percent of time that the CPU has been idle
since the last time a client requested the
cpuBusyTimePerCent."
::= { cpu 5 }
cpuCount OBJECT-TYPE
SYNTAX INTEGER (1..2)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of CPUs in the system."
::= { cpu 6 }
cpuSwitchInvocations OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of sk_switch invocations."
::= { cpu 7 }
cpuContextSwitches OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hardware context switches."
::= { cpu 8 }
cpuInterrupts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of interrupts during a CP."
::= { cpu 9 }
cpuNonCPInterrupts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of interrupts not during a CP."
::= { cpu 10 }
cpuCPInterruptPercent OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The percentage of time handling CP interrupts."
::= { cpu 11 }
cpuNonCPInterruptPercent OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The percentage of time handling non-cp interrupts."
::= { cpu 12 }
cpuTotalDomainSwitches OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The total number of Domain Switches."
::= { cpu 13 }
-- the misc group for sysStat
-- miscNfsOps is DEPRECATED; use miscHighNfsOps
-- and miscLowNfsOps
miscNfsOps OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Server side NFS calls since
the last boot"
::= { misc 1 }
-- miscNetRcvdKB is DEPRECATED; use miscHighNetRcvdBytes
-- and miscLowNetRcvdBytes
miscNetRcvdKB OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of KBytes received on all the
network interfaces, since the last boot."
::= { misc 2 }
-- miscNetSentKB is DEPRECATED; use miscHighNetSentBytes
-- and miscLowNetSentBytes
miscNetSentKB OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of KBytes transmitted on all the
network interfaces, since the last boot."
::= { misc 3 }
miscGlobalStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
unknown(2),
ok(3),
nonCritical(4),
critical(5),
nonRecoverable(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This indicates the overall status of the appliance.
The algorithm to determine the value uses both
hardware status (e.g. the number of failed fans) and
volume status (e.g. number of volumes that are full).
The algorithm is subject to change in future releases,
but the range of values will not change."
::= { misc 4 }
miscHighNfsOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Server side NFS calls since
the last boot. This object returns the most
significant 32 bits of the 64 bit unsigned integer."
::= { misc 5 }
miscLowNfsOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Server side NFS calls since
the last boot. This object returns the least
significant 32 bits of the 64 bit unsigned integer."
::= { misc 6 }
miscHighCifsOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Server side CIFS calls since
the last boot. This object returns the most
significant 32 bits of the 64 bit unsigned integer."
::= { misc 7 }
miscLowCifsOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Server side CIFS calls since
the last boot. This object returns the least
significant 32 bits of the 64 bit unsigned integer."
::= { misc 8 }
miscHighHttpOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of HTTP operations received
since the last boot. This object returns the most
significant 32 bits of the 64 bit unsigned integer."
::= { misc 9 }
miscLowHttpOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of HTTP operations received
since the last boot. This object returns the least
significant 32 bits of the 64 bit unsigned integer."
::= { misc 10 }
miscHighNetRcvdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes received on all the
network interfaces, since the last boot. This
object returns the most significant 32 bits
of the 64 bit unsigned integer."
::= { misc 11 }
miscLowNetRcvdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes received on all the
network interfaces, since the last boot. This
object returns the least significant 32 bits
of the 64 bit unsigned integer."
::= { misc 12 }
miscHighNetSentBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes transmitted on all the
network interfaces, since the last boot. This
object returns the most significant 32 bits
of the 64 bit unsigned integer."
::= { misc 13 }
miscLowNetSentBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes transmitted on all the
network interfaces, since the last boot. This
object returns the least significant 32 bits
of the 64 bit unsigned integer."
::= { misc 14 }
miscHighDiskReadBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes read from disk
since the last boot. This object returns
the most significant 32 bits of the 64 bit unsigned
integer."
::= { misc 15 }
miscLowDiskReadBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes read from disk since
the last boot. This object returns the least
significant 32 bits of the 64 bit unsigned integer."
::= { misc 16 }
miscHighDiskWriteBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes written to disk
since the last boot. This object returns
the most significant 32 bits of the 64 bit unsigned
integer."
::= { misc 17 }
miscLowDiskWriteBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes written to disk since
the last boot. This object returns the least
significant 32 bits of the 64 bit unsigned integer."
::= { misc 18 }
miscHighTapeReadBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes read from tape
since the last boot. This object returns
the most significant 32 bits of the 64 bit unsigned
integer."
::= { misc 19 }
miscLowTapeReadBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes read from tape since
the last boot. This object returns the least
significant 32 bits of the 64 bit unsigned integer."
::= { misc 20 }
miscHighTapeWriteBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes written to tape
since the last boot. This object returns
the most significant 32 bits of the 64 bit unsigned
integer."
::= { misc 21 }
miscLowTapeWriteBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of bytes written to tape since
the last boot. This object returns the least
significant 32 bits of the 64 bit unsigned integer."
::= { misc 22 }
miscCacheAge OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Age in minutes of the oldest read-only blocks
in the buffer cache. This indicates how fast
read operations are cycling through system
memory; when the appliance is reading very
large files (larger than the machine's memory
size), buffer cache age will be very low."
::= { misc 23 }
miscCorrectedMachineChecks OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of corrected machine checks since
the last boot."
::= { misc 24 }
miscGlobalStatusMessage OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A string describing the global status,
including a description of the condition (if
any) that caused the status to be anything
other than ok(3)."
::= { misc 25 }
miscWindowsSetupWizardVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The version number of Windows Setup Wizard
required to configure the appliance. Windows
Setup Wizard with a version number lower than
this integer is not capable of configuring the
appliance."
::= { misc 26 }
-- the Clustered Failover group
cfSettings OBJECT-TYPE
SYNTAX INTEGER {
notConfigured(1),
enabled(2),
disabled(3),
takeoverByPartnerDisabled(4),
thisNodeDead(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Clustered Failover configuration settings.
The value notConfigured(1) indicates that the
cluster is not licensed. The thisNodeDead(5)
setting indicates that this node has been
taken over."
::= { cf 1 }
cfState OBJECT-TYPE
SYNTAX INTEGER {
dead(1),
canTakeover(2),
cannotTakeover(3),
takeover(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Clustered Failover state."
::= { cf 2 }
cfCannotTakeoverCause OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
unknownReason(2),
disabledByOperator(3),
interconnectOffline(4),
disabledByPartner(5),
takeoverFailed(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The reason this node cannot takeover its
partner"
::= { cf 3 }
cfPartnerStatus OBJECT-TYPE
SYNTAX INTEGER {
maybeDown(1),
ok(2),
dead(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the status last returned by the
Clustered Failover partner."
::= { cf 4 }
cfPartnerLastStatusUpdate OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If non-zero, the absolute time of the last
update from the Clustered Failover partner."
::= { cf 5 }
cfPartnerName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hostname for Clustered Failover partner."
::= { cf 6 }
cfPartnerSysid OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"System ID for Clustered Failover partner."
::= { cf 7 }
cfInterconnectStatus OBJECT-TYPE
SYNTAX INTEGER {
notPresent(1),
down(2),
partialFailure(3),
up(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current status of the interconnect.
The partialFailure(3) status indicates that
one of the links in the interconnect hardware
is down."
::= { cf 8 }
-- the environment group for sysStat
envOverTemperature OBJECT-TYPE
SYNTAX INTEGER {
no(1),
yes(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An indication of whether the hardware is
currently operating outside of its recommended
temperature range. The hardware will shutdown
if the temperature exceeds critical thresholds."
::= { environment 1 }
envFailedFanCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of chassis fans which
are not operating within the recommended
RPM range."
::= { environment 2 }
envFailedFanMessage OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Text message describing the current condition of
chassis fans. This is useful only if
envFailedFanCount is not zero."
::= { environment 3 }
envFailedPowerSupplyCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of power supplies which
are in degraded mode."
::= { environment 4 }
envFailedPowerSupplyMessage OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Text message describing the state of any
power supplies which are currently degraded.
This is useful only if envFailedPowerSupplyCount
is not zero."
::= { environment 5 }
-- -- -- -- -- -- --
-- the nvram group for sysStat
nvramBatteryStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
partiallyDischarged(2),
fullyDischarged(3),
notPresent(4),
nearEndOfLife(5),
atEndOfLife(6),
unknown(7),
overCharged(8),
fullyCharged(9)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An indication of the current status of the
NVRAM battery or batteries. Batteries which
are fully or partially discharged may not
fully protect the system during a crash.
The end-of-life status values are based on
the manufacturer's recommended life for the
batteries."
::= { nvram 1 }
-- -- -- -- -- -- --
-- the cp group for sysStat
cpTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time (in hundredths of a second) since boot
during which the system has had a consistency point
(cp) operation in progress."
::= { cp 1 }
cpFromTimerOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of consistency point operations since boot
that were caused by timer."
::= { cp 2 }
cpFromSnapshotOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of consistency point operations since boot
that were caused by snapshot operation."
::= { cp 3 }
cpFromLowWaterOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of consistency point operations since boot
that were caused by low water mark."
::= { cp 4 }
cpFromHighWaterOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of consistency point operations since boot
that were caused by high water mark."
::= { cp 5 }
cpFromLogFullOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of consistency point operations since boot
that were caused by nv-log full."
::= { cp 6 }
cpFromCpOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of back to back consistency point
operations since boot."
::= { cp 7 }
cpTotalOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of consistency point operations
since boot."
::= { cp 8 }
cpFromFlushOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of consistency point operations since boot
that were caused by flushing unlogged write data."
::= { cp 9 }
cpFromSyncOps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of consistency point operations since boot
that were caused by file system sync requests."
::= { cp 10 }