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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
|
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
IMPORTS
TEXTUAL-CONVENTION FROM SNMPv2-TC
MODULE-IDENTITY,
OBJECT-TYPE,
snmpModules,
Integer32,
Counter32,
IpAddress,
TimeTicks,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
TDomain,
DisplayString,
PhysAddress,
TAddress,
TimeInterval,
RowStatus,
StorageType,
TestAndIncr,
MacAddress,
TruthValue
FROM SNMPv2-TC
ArubaSwitchRole,
ArubaActiveState,
ArubaCardType
FROM ARUBA-TC
OBJECT-GROUP
FROM SNMPv2-CONF
wlsxEnterpriseMibModules
FROM ARUBA-MIB;
wlsxSystemExtMIB MODULE-IDENTITY
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
System level information about the Aruba controller."
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 2 }
wlsxSystemExtGroup OBJECT IDENTIFIER ::= { wlsxSystemExtMIB 1 }
wlsxSystemExtTableGenNumberGroup OBJECT IDENTIFIER ::= { wlsxSystemExtMIB 2 }
-- wlsxSystemExtGroup contains objects to describe a controller.
wlsxSysExtSwitchIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Controller IP as configured by the user. This IP address uniquely
identifies the controller."
::= { wlsxSystemExtGroup 1 }
wlsxSysExtHostname OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the controller."
::= { wlsxSystemExtGroup 2 }
wlsxSysExtModelName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Model Name of the controller."
::= { wlsxSystemExtGroup 3 }
wlsxSysExtSwitchRole OBJECT-TYPE
SYNTAX ArubaSwitchRole
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Role of this controller in the Aruba Domain."
::= { wlsxSystemExtGroup 4 }
wlsxSysExtSwitchMasterIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Switch IP of the master controller.
"
::= { wlsxSystemExtGroup 5 }
wlsxSysExtSwitchDate OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
System notion of the local date and time of day.
"
::= { wlsxSystemExtGroup 6 }
wlsxSysExtSwitchBaseMacaddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The Base MAC address of the controller.
"
::= { wlsxSystemExtGroup 7 }
wlsxSysExtFanTrayAssemblyNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Assembly number of the Fan tray.
"
::= { wlsxSystemExtGroup 8 }
wlsxSysExtFanTraySerialNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Serial number of the Fan tray
"
::= { wlsxSystemExtGroup 9 }
wlsxSysExtInternalTemparature OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Internal temperature in the controller.
"
::= { wlsxSystemExtGroup 10 }
wlsxSysExtLicenseSerialNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The license serial number of the controller.
"
::= { wlsxSystemExtGroup 11 }
wlsxSysExtSwitchLicenseCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The number of licenses installed on the controller
"
::= { wlsxSystemExtGroup 12 }
-- Table lists all the processors and their corresponding Load.
wlsxSysExtProcessorTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxSysExtProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The table of processors contained by the controller.
"
::= { wlsxSystemExtGroup 13 }
wlsxSysExtProcessorEntry OBJECT-TYPE
SYNTAX WlsxSysExtProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
An entry for one processor contained by the controller.
"
INDEX { sysExtProcessorID}
::= { wlsxSysExtProcessorTable 1 }
WlsxSysExtProcessorEntry ::=
SEQUENCE {
sysExtProcessorID Integer32,
sysExtProcessorDescr DisplayString,
sysExtProcessorLoad Integer32
}
sysExtProcessorID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Processor Index.
"
::= { wlsxSysExtProcessorEntry 1 }
sysExtProcessorDescr OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Description of the processor.
"
::= { wlsxSysExtProcessorEntry 2 }
sysExtProcessorLoad OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The average, over the last minute, of the percentage of
time that this processor was not idle.
"
::= { wlsxSysExtProcessorEntry 3 }
-- Table contains all the storage devices in the controller and their
-- utilization numbers.
wlsxSysExtStorageTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxSysExtStorageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The table of Storage-devices contained by the controller.
"
::= { wlsxSystemExtGroup 14 }
wlsxSysExtStorageEntry OBJECT-TYPE
SYNTAX WlsxSysExtStorageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
An entry for one long-term storage device contained by the
controller.
"
INDEX { sysExtStorageIndex }
::= { wlsxSysExtStorageTable 1 }
WlsxSysExtStorageEntry ::=
SEQUENCE {
sysExtStorageIndex Integer32,
sysExtStorageType INTEGER,
sysExtStorageSize Integer32,
sysExtStorageUsed Integer32,
sysExtStorageName DisplayString
}
sysExtStorageIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Index into the table.
"
::= { wlsxSysExtStorageEntry 1 }
sysExtStorageType OBJECT-TYPE
SYNTAX INTEGER {
ram(1),
flashMemory(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Type of the storage.
"
::= { wlsxSysExtStorageEntry 2 }
sysExtStorageSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Total size of the storage filesystem in MB.
"
::= { wlsxSysExtStorageEntry 3 }
sysExtStorageUsed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Used Storage in MB.
"
::= { wlsxSysExtStorageEntry 4 }
sysExtStorageName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Name of the storage filesystem.
"
::= { wlsxSysExtStorageEntry 5 }
-- This table describes the memory utilization of the controller
wlsxSysExtMemoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxSysExtMemoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The memory status of the controller
"
::= { wlsxSystemExtGroup 15 }
wlsxSysExtMemoryEntry OBJECT-TYPE
SYNTAX WlsxSysExtMemoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
An entry for one memory region on the controller. Currently,
only the control processor memory is monitored.
"
INDEX { sysExtMemoryIndex }
::= { wlsxSysExtMemoryTable 1 }
WlsxSysExtMemoryEntry ::=
SEQUENCE {
sysExtMemoryIndex Integer32,
sysExtMemorySize Integer32,
sysExtMemoryUsed Integer32,
sysExtMemoryFree Integer32
}
sysExtMemoryIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Index into the table.
"
::= { wlsxSysExtMemoryEntry 1 }
sysExtMemorySize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Total memory in KB.
"
::= { wlsxSysExtMemoryEntry 2 }
sysExtMemoryUsed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Used memory in KB.
"
::= { wlsxSysExtMemoryEntry 3 }
sysExtMemoryFree OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Free memory in KB.
"
::= { wlsxSysExtMemoryEntry 4 }
-- This table lists the different Hardware Modules in the controller.
wlsxSysExtCardTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxSysExtCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The table of Hardware modules in the controller.
"
::= { wlsxSystemExtGroup 16 }
wlsxSysExtCardEntry OBJECT-TYPE
SYNTAX WlsxSysExtCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
An entry for one Hardware Module in the controller.
"
INDEX { sysExtCardSlot }
::= { wlsxSysExtCardTable 1 }
WlsxSysExtCardEntry ::=
SEQUENCE {
sysExtCardSlot Integer32,
sysExtCardType ArubaCardType,
sysExtCardNumOfPorts Integer32,
sysExtCardNumOfFastethernetPorts Integer32,
sysExtCardNumOfGigPorts Integer32,
sysExtCardSerialNo DisplayString,
sysExtCardAssemblyNo DisplayString,
sysExtCardManufacturingDate DisplayString,
sysExtCardHwRevision DisplayString,
sysExtCardFpgaRevision DisplayString,
sysExtCardSwitchChip DisplayString,
sysExtCardStatus ArubaActiveState,
sysExtCardUserSlot Integer32,
sysExtCardServiceTag DisplayString,
sysExtCardPartNumber DisplayString
}
sysExtCardSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Slot in which this card is located, offset by one. For the user-visible
slot number see sysExtCardUserSlot
"
::= { wlsxSysExtCardEntry 1 }
sysExtCardType OBJECT-TYPE
SYNTAX ArubaCardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Type of the Card.
"
::= { wlsxSysExtCardEntry 2 }
sysExtCardNumOfPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Number of data ports on the card.
"
::= { wlsxSysExtCardEntry 3 }
sysExtCardNumOfFastethernetPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Number of Fastethernet ports on the card.
"
::= { wlsxSysExtCardEntry 4 }
sysExtCardNumOfGigPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Number of Gigabit ethernet ports on the card.
"
::= { wlsxSysExtCardEntry 5 }
sysExtCardSerialNo OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Serial number of the card.
"
::= { wlsxSysExtCardEntry 6 }
sysExtCardAssemblyNo OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Assembly Number of the card.
"
::= { wlsxSysExtCardEntry 7 }
sysExtCardManufacturingDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Card manufacturing date.
"
::= { wlsxSysExtCardEntry 8 }
sysExtCardHwRevision OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Hardware revision of the card.
"
::= { wlsxSysExtCardEntry 9 }
sysExtCardFpgaRevision OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Fpga revision number.
"
::= { wlsxSysExtCardEntry 10 }
sysExtCardSwitchChip OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Switching Chip version.
"
::= { wlsxSysExtCardEntry 11 }
sysExtCardStatus OBJECT-TYPE
SYNTAX ArubaActiveState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Status of the card.
"
::= { wlsxSysExtCardEntry 12 }
sysExtCardUserSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
User-visible (zero-based) slot number.
"
::= { wlsxSysExtCardEntry 13 }
sysExtCardServiceTag OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Service Tag of the card.
"
::= { wlsxSysExtCardEntry 14 }
sysExtCardPartNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Service Tag of the card.
"
::= { wlsxSysExtCardEntry 15 }
-- This table lists the Fans in the controller.
wlsxSysExtFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxSysExtFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The table of all supported fans in the controller. Not supported in Aruba 200/800 and 2400 controllers.
"
::= { wlsxSystemExtGroup 17 }
wlsxSysExtFanEntry OBJECT-TYPE
SYNTAX WlsxSysExtFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
An entry for one fan.
"
INDEX { sysExtFanIndex }
::= { wlsxSysExtFanTable 1 }
WlsxSysExtFanEntry ::=
SEQUENCE {
sysExtFanIndex Integer32,
sysExtFanStatus ArubaActiveState
}
sysExtFanIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Index into the table.
"
::= { wlsxSysExtFanEntry 1 }
sysExtFanStatus OBJECT-TYPE
SYNTAX ArubaActiveState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Status of the Fan.
"
::= { wlsxSysExtFanEntry 2 }
-- This table lists the Power supplies in the controller.
wlsxSysExtPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxSysExtPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The table of all supported Power supplies in the controller. Not supported in Aruba 200, 800 and 2400 controllers.
"
::= { wlsxSystemExtGroup 18 }
wlsxSysExtPowerSupplyEntry OBJECT-TYPE
SYNTAX WlsxSysExtPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
An entry for one power supply.
"
INDEX { sysExtPowerSupplyIndex }
::= { wlsxSysExtPowerSupplyTable 1 }
WlsxSysExtPowerSupplyEntry ::=
SEQUENCE {
sysExtPowerSupplyIndex Integer32,
sysExtPowerSupplyStatus ArubaActiveState
}
sysExtPowerSupplyIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Index into the table.
"
::= { wlsxSysExtPowerSupplyEntry 1 }
sysExtPowerSupplyStatus OBJECT-TYPE
SYNTAX ArubaActiveState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Status of the power supply.
"
::= { wlsxSysExtPowerSupplyEntry 2 }
-- Switch List Table contains all the controllers in the domain. This table is
-- valid only, when queried from the master controller.
wlsxSysExtSwitchListTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxSysExtSwitchListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This Table will list all the controllers in the Aruba Domain.
It will be populated only on the master controller. Local controllers
return empty table.
"
::= { wlsxSystemExtGroup 19 }
wlsxSysExtSwitchListEntry OBJECT-TYPE
SYNTAX WlsxSysExtSwitchListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Switch List Entry"
INDEX { sysExtSwitchIPAddress}
::= { wlsxSysExtSwitchListTable 1 }
WlsxSysExtSwitchListEntry ::=
SEQUENCE {
sysExtSwitchIPAddress IpAddress,
sysExtSwitchRole ArubaSwitchRole,
sysExtSwitchLocation DisplayString,
sysExtSwitchSWVersion DisplayString,
sysExtSwitchStatus ArubaActiveState,
sysExtSwitchName DisplayString,
sysExtSwitchSerNo DisplayString
}
sysExtSwitchIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
IP Address of the controller.
"
::= { wlsxSysExtSwitchListEntry 1 }
sysExtSwitchRole OBJECT-TYPE
SYNTAX ArubaSwitchRole
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Role of the controller.
"
::= { wlsxSysExtSwitchListEntry 2 }
sysExtSwitchLocation OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Location of the controller
"
::= { wlsxSysExtSwitchListEntry 3 }
sysExtSwitchSWVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Software version the controller is running.
"
::= { wlsxSysExtSwitchListEntry 4 }
sysExtSwitchStatus OBJECT-TYPE
SYNTAX ArubaActiveState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Status of the controller.
"
::= { wlsxSysExtSwitchListEntry 5 }
sysExtSwitchName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Host name of the controller.
"
::= { wlsxSysExtSwitchListEntry 6 }
sysExtSwitchSerNo OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Serial number of the controller.
"
::= { wlsxSysExtSwitchListEntry 7 }
-- The license table lists all valid licenses installed on the controller
wlsxSysExtSwitchLicenseTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxSysExtLicenseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists all licenses installed on the controller.
"
::= { wlsxSystemExtGroup 20 }
wlsxSysExtLicenseEntry OBJECT-TYPE
SYNTAX WlsxSysExtLicenseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"License Entry"
INDEX { sysExtLicenseIndex }
::= { wlsxSysExtSwitchLicenseTable 1 }
WlsxSysExtLicenseEntry ::=
SEQUENCE {
sysExtLicenseIndex Integer32,
sysExtLicenseKey DisplayString,
sysExtLicenseInstalled DisplayString,
sysExtLicenseExpires DisplayString,
sysExtLicenseFlags DisplayString,
sysExtLicenseService DisplayString
}
sysExtLicenseIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
License ID number
"
::= { wlsxSysExtLicenseEntry 1 }
sysExtLicenseKey OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
License Key
"
::= { wlsxSysExtLicenseEntry 2 }
sysExtLicenseInstalled OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
License installation time
"
::= { wlsxSysExtLicenseEntry 3 }
sysExtLicenseExpires OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
License expiry time
"
::= { wlsxSysExtLicenseEntry 4 }
sysExtLicenseFlags OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
License flags; E - enabled; A - auto-generated;
R - reboot required to activate
"
::= { wlsxSysExtLicenseEntry 5 }
sysExtLicenseService OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The service enabled by this license.
"
::= { wlsxSysExtLicenseEntry 6 }
wlsxSysExtMMSCompatLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Lists the compatibility level of this controller with the MMS
"
::= { wlsxSystemExtGroup 21 }
wlsxSysExtMMSConfigID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
This Object represents the value of the MMS Configuration ID in the controller.
"
::= { wlsxSystemExtGroup 22 }
wlsxSysExtControllerConfigID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
This Object represents the value of the Controller's Configuration ID.
"
::= { wlsxSystemExtGroup 23 }
wlsxSysExtIsMMSConfigUpdateEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This objects indicates whether the controller is configured to accept configuration snapshots from MMS.
"
::= { wlsxSystemExtGroup 24 }
wlsxSysExtSwitchLastReload OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The reason for the last controller reload
"
::= { wlsxSystemExtGroup 25 }
wlsxSysExtLastStatsReset OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Last time switch stats was reset
"
::= { wlsxSystemExtGroup 26 }
wlsxSysExtHwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware version of the switch."
::= { wlsxSystemExtGroup 27 }
wlsxSysExtSwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Software version of the switch."
::= { wlsxSystemExtGroup 28 }
wlsxSysExtSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the switch."
::= { wlsxSystemExtGroup 29 }
wlsxSysExtCpuUsedPercent OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU used percent of the switch"
::= { wlsxSystemExtGroup 30 }
wlsxSysExtMemoryUsedPercent OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The memory used percent of the switch"
::= { wlsxSystemExtGroup 31 }
wlsxSysExtPacketLossPercent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The packet loss count of the switch"
::= { wlsxSystemExtGroup 32 }
wlsxSysExtUserTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the user table was
modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 1 }
wlsxSysExtAPBssidTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the AP BSSID table was
modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 2 }
wlsxSysExtAPRadioTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the Radio table was
modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 3 }
wlsxSysExtAPTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the AP table was
modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 4 }
wlsxSysExtSwitchListTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the Switch list table was
modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 5 }
wlsxSysExtPortTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the port table was
modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 6 }
wlsxSysExtVlanTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the Vlan table was
modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 7 }
wlsxSysExtVlanInterfaceTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the Vlan Interface table
was modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 8 }
wlsxSysExtLicenseTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the license table
was modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 9 }
wlsxSysExtMonAPTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the monitored AP table
was modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 10 }
wlsxSysExtMonStationTableGenNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
This objects denotes the number of times the monitored station table
was modified since reboot.
"
::= { wlsxSystemExtTableGenNumberGroup 11 }
wlsxSysExtPoweredViaPoe OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Switch is powered using POE power."
::= { wlsxSystemExtGroup 33 }
wlsxSysVMHostType OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Host type is KVM/ HyperV/ VMware."
::= { wlsxSystemExtGroup 34 }
wlsxSysExtProcessorModel OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Processor Model Name."
::= { wlsxSystemExtGroup 35 }
wlsxSysExtTotalCpu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of Control path and datapath CPUs
in the controller."
::= { wlsxSystemExtGroup 36 }
wlsxSysExtTotalSocket OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total sockets present in the VM."
::= { wlsxSystemExtGroup 37 }
wlsxAuthFailIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable contains the last SNMP
authorization failure IP address."
::= { wlsxSystemExtGroup 38 }
wlsxSysExtDiskSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Supervisor Card Flash Memory in MB."
::= { wlsxSystemExtGroup 39 }
-- New Switch List Table contains all the controllers in the domain. This table is
-- valid only, when queried from the master controller.
wlsxNSysExtSwitchListTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxNSysExtSwitchListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This new Table will list all the controllers in the Aruba Domain.
It will be populated only on the master controller. Local controllers
return empty table. It is a common table for IPv4 and IPv6 Address of
the controller.
"
::= { wlsxSystemExtGroup 40 }
wlsxNSysExtSwitchListEntry OBJECT-TYPE
SYNTAX WlsxNSysExtSwitchListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"New Switch List Entry"
INDEX { sysExtNSwitchIPAddressType, sysExtNSwitchIPAddress}
::= { wlsxNSysExtSwitchListTable 1 }
WlsxNSysExtSwitchListEntry ::=
SEQUENCE {
sysExtNSwitchIPAddressType Integer32,
sysExtNSwitchIPAddress DisplayString(SIZE(0..45)),
sysExtNSwitchRole ArubaSwitchRole,
sysExtNSwitchLocation DisplayString,
sysExtNSwitchSWVersion DisplayString,
sysExtNSwitchStatus ArubaActiveState,
sysExtNSwitchName DisplayString,
sysExtNSwitchSerNo DisplayString
}
sysExtNSwitchIPAddressType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Type of IP Address of the controller, either IPv4 / IPv6.
"
::= { wlsxNSysExtSwitchListEntry 1 }
sysExtNSwitchIPAddress OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..45))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
IPv4 or IPv6 Address of the controller.
"
::= { wlsxNSysExtSwitchListEntry 2 }
sysExtNSwitchRole OBJECT-TYPE
SYNTAX ArubaSwitchRole
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Role of the controller.
"
::= { wlsxNSysExtSwitchListEntry 3 }
sysExtNSwitchLocation OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Location of the controller
"
::= { wlsxNSysExtSwitchListEntry 4 }
sysExtNSwitchSWVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Software version the controller is running.
"
::= { wlsxNSysExtSwitchListEntry 5 }
sysExtNSwitchStatus OBJECT-TYPE
SYNTAX ArubaActiveState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Status of the controller.
"
::= { wlsxNSysExtSwitchListEntry 6 }
sysExtNSwitchName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Host name of the controller.
"
::= { wlsxNSysExtSwitchListEntry 7 }
sysExtNSwitchSerNo OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Serial number of the controller.
"
::= { wlsxNSysExtSwitchListEntry 8 }
END
|