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
|
ALPHA-RESOURCE-MIB DEFINITIONS ::= BEGIN
--==========================================================================
--
-- Alpha Technologies Ltd.
-- Copyright 2019
--
--==========================================================================
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, enterprises,
Unsigned32, Integer32
FROM SNMPv2-SMI -- [RFC2578]
TEXTUAL-CONVENTION
FROM SNMPv2-TC -- [RFC2579]
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF;
alpha MODULE-IDENTITY
LAST-UPDATED "201904120000Z"
ORGANIZATION "Alpha Technologies Ltd."
CONTACT-INFO
"Alpha Technologies Ltd.
7700 Riverfront Gate
Burnaby, BC V5J 5M4
Canada
Tel: 1-604-436-5900
Fax: 1-604-436-1233"
DESCRIPTION
"This MIB defines the information block(s) available in system controllers."
REVISION "201904120000Z" -- April 12, 2019
DESCRIPTION
"Added alert table and conformance group.
Tested with SimpleWeb: http://www.simpleweb.org
Passed highest level of compliance. (level 6)
"
REVISION "201611150000Z" -- November 15, 2016
DESCRIPTION
"Added conformance group for alarms to follow MIB structure conformance rules. Tested with
SimpleWeb: http://www.simpleweb.org
Passed highest level of compliance. (level 6)
"
REVISION "201510190000Z" -- October 19, 2015
DESCRIPTION
"
Added alarm table(s) to allow active polling of alarm states available in the Cordex HP.
"
REVISION "201507280000Z" -- July 28, 2015
DESCRIPTION
"
Updated to follow MIB structure conformance rules. Tested with
SimpleWeb: http://www.simpleweb.org
Passed highest level of compliance. (level 6)
"
REVISION "201506230000Z" -- June 23, 2015
DESCRIPTION
"General version, Cordex HP Controller"
::= { enterprises 7309 }
-- Textual convention
ScaledNumber ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-3"
STATUS current
DESCRIPTION
"
Fixed point, 3 decimal places.
"
SYNTAX Integer32
controller OBJECT IDENTIFIER ::= { alpha 5 }
controllerInfo OBJECT IDENTIFIER ::= { controller 1 }
resource OBJECT IDENTIFIER ::= { controller 2 }
simple OBJECT IDENTIFIER ::= { controller 3 }
-- Well known data points for controller level information.
-----------------------------------------------------------
controllerInfoName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"User configurable text name of the Controller."
::= { controllerInfo 1 }
controllerInfoDescription OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"User configurable description of the Controller."
::= { controllerInfo 2 }
controllerInfoSoftwareVersion OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Software version of the Controller application."
::= { controllerInfo 3 }
controllerInfoOperatingSystemVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operating system version number."
::= { controllerInfo 4 }
controllerInfoHardwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware version number."
::= { controllerInfo 5 }
-- Table for all general controller information. Table Identifier starts at 100.
controllerExtInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF ControllerExtInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Controller specific information table.
"
::= { controllerInfo 100 }
controllerExtInfoEntry OBJECT-TYPE
SYNTAX ControllerExtInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Entries appear in this table for each possible alarm state.
This table MUST be persistent across system reboots.
"
INDEX { controllerExtInfoIndex }
::= { controllerExtInfoTable 1 }
ControllerExtInfoEntry ::= SEQUENCE {
controllerExtInfoIndex Unsigned32,
controllerExtInfoName OCTET STRING,
controllerExtInfoStringValue OCTET STRING,
controllerExtInfoUnit OCTET STRING,
controllerExtInfoNumberValue ScaledNumber
}
controllerExtInfoIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Incremental integer value for each instance of the .
"
::= { controllerExtInfoEntry 1 }
controllerExtInfoName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Name of the data value presented in the instance of the entry.
"
::= { controllerExtInfoEntry 2 }
controllerExtInfoStringValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
String value of the data field presented by the controller info entry.
"
::= { controllerExtInfoEntry 3 }
controllerExtInfoUnit OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Unit name of the numeric value of the controller info entry.
"
::= { controllerExtInfoEntry 4 }
controllerExtInfoNumberValue OBJECT-TYPE
SYNTAX ScaledNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Number value of the data field presented by the controller info entry.
"
::= { controllerExtInfoEntry 5 }
-- Resource
-----------
-- Component Table
componentList OBJECT IDENTIFIER ::= { resource 1 }
componentListCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The number of available objects in componentList.
"
::= { componentList 1 }
componentListTable OBJECT-TYPE
SYNTAX SEQUENCE OF ComponentListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Object componentList describes the following:
Systems ( DC System, AC System, Converter System, etc. )
Devices ( ADIO, Rectifier, Converter, Inverter, etc. )
"
::= { componentList 2 }
componentListEntry OBJECT-TYPE
SYNTAX ComponentListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Entry to the component list describing the available systems and devices
within the Cordex controller.
Indexing:
1. Component type - please refer to componentListType
2. Snmp ID - please refer to componentListReference
Configurable ID allow for component monitoring on a specific index if the
method of monitoring is locked on the index value.
"
INDEX { componentListType, componentListReference }
::= { componentListTable 1 }
ComponentListEntry ::= SEQUENCE {
componentListReference Unsigned32,
componentListStaticName OCTET STRING,
componentListConfiguredName OCTET STRING,
componentListType Unsigned32,
componentListModelNumber OCTET STRING,
componentListSerialNumber OCTET STRING,
componentListSystemPointer OBJECT IDENTIFIER
}
componentListReference OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Indentification number assigned to the component."
::= { componentListEntry 1 }
componentListStaticName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Non-configurable name permanently assigned to the component. Filtering on this data
value is possible and recommended due to its static nature.
"
::= { componentListEntry 2 }
componentListConfiguredName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
User configurable name of the component. Filtering on this data value is not
recommended.
"
::= { componentListEntry 3 }
componentListType OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The type of the component based on power system terminology.
1 - Controller
2 - DC System
3 - ADIO
4 - Rectifier
5 - Converter
6 - Inverter
7 - BCMC
8 - T2S
9 - AC Input Bus
10 - Battery String
11 - Disconnect
12 - Load
13 - Shunt
14 - SNMP Destinations
15 - CAN Bus
See SNMP Integrators Guide for complete list www.alpha.ca
"
::= { componentListEntry 4 }
componentListModelNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Component model number where applicable. This is available on component entries
which describes hardware modules.
"
::= { componentListEntry 5 }
componentListSerialNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Serial number of the device only if the component is of physical device type.
"
::= { componentListEntry 6 }
componentListSystemPointer OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Table entry reference to the component table of the system component that the
described item belongs to.
Example: A rectifier component will have a reference to the Rectifier System that it
belongs to.
"
::= { componentListEntry 7 }
-- Data List
dataList OBJECT IDENTIFIER ::= { resource 2 }
dataListCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of defined data fields available for query."
::= { dataList 1 }
dataListTable OBJECT-TYPE
SYNTAX SEQUENCE OF DataListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Table of data fields available for query.
"
::= { dataList 2 }
dataListEntry OBJECT-TYPE
SYNTAX DataListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Data field entry of available fields.
Indexes:
1. componentListType - indicates which component can provide the field of
interest.
2. dataListReference - the ID permanently assigned to the field.
"
INDEX { componentListType, dataListReference }
::= { dataListTable 1 }
DataListEntry ::= SEQUENCE {
dataListReference Unsigned32,
dataListName OCTET STRING,
dataListType Unsigned32,
dataListUnit OCTET STRING
}
dataListReference OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Non-configurable ID permanently assigned to the field entry.
"
::= { dataListEntry 1 }
dataListName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Non-configurable string name of the field represented in the entry.
"
::= { dataListEntry 2 }
dataListType OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Canonical data type of the field entry.
0 - None
1 - Numeric
2 - Boolean
3 - Time
4 - String
5 - Choice / Selected options
"
::= { dataListEntry 3 }
dataListUnit OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Unit type of the value represented by the entry.
"
::= { dataListEntry 4 }
-- Data Entry
data OBJECT IDENTIFIER ::= { resource 3 }
dataCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of defined data points available for query."
::= { data 1 }
dataTable OBJECT-TYPE
SYNTAX SEQUENCE OF DataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of data values associated to live data availabe from the Cordex HP controller."
::= { data 2 }
dataEntry OBJECT-TYPE
SYNTAX DataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Conceptual row of data value for the referencing data field type and component that it belongs to."
INDEX { componentListType, dataListReference, componentListReference }
::= { dataTable 1 }
DataEntry ::= SEQUENCE {
dataReference Unsigned32,
dataNumberValue ScaledNumber,
dataStringValue OCTET STRING
}
dataReference OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Non-configurable ID permanently assigned to the field entry.
"
::= { dataEntry 1 }
dataNumberValue OBJECT-TYPE
SYNTAX ScaledNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Numeric value of the data field.
"
::= { dataEntry 2 }
dataStringValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
String value of the data field.
"
::= { dataEntry 3 }
-- Configuration
----------------
configurationList OBJECT IDENTIFIER ::= { resource 4 }
configurationListCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of defined configuration fields available for query."
::= { configurationList 1 }
configurationListTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConfigurationListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Table of configuration entries.
"
::= { configurationList 2 }
configurationListEntry OBJECT-TYPE
SYNTAX ConfigurationListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Configuration field entries available for GET and SET.
"
INDEX { componentListType, configurationListReference }
::= { configurationListTable 1 }
ConfigurationListEntry ::= SEQUENCE {
configurationListReference Unsigned32,
configurationListName OCTET STRING,
configurationListType Integer32,
configurationListUnit OCTET STRING
}
configurationListReference OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
A numerical ID value permanently assigned to the configuration field.
"
::= { configurationListEntry 1 }
configurationListName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
A non-configurable string name of the configuration field.
"
::= { configurationListEntry 2 }
configurationListType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Conanical data type of the configuration field.
0 - Unknown
1 - Numeric
2 - Boolean
3 - Time
4 - String
5 - Choice / Selected Options
"
::= { configurationListEntry 3 }
configurationListUnit OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Unit of the numeric value of the configuration field.
"
::= { configurationListEntry 4 }
-- Configuration Fields
configuration OBJECT IDENTIFIER ::= { resource 5 }
configurationCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The number of defined configuration points available for query.
"
::= { configuration 1 }
configurationTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConfigurationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Table of configuration entries.
"
::= { configuration 2 }
configurationEntry OBJECT-TYPE
SYNTAX ConfigurationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Configuration field entry.
"
INDEX { componentListType, configurationListReference, componentListReference }
::= { configurationTable 1 }
ConfigurationEntry ::= SEQUENCE {
configurationReference Unsigned32,
configurationNumberValue ScaledNumber,
configurationStringValue OCTET STRING
}
configurationReference OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Non-configurable ID permanently assigned to the field entry.
"
::= { configurationEntry 1 }
configurationNumberValue OBJECT-TYPE
SYNTAX ScaledNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Numbered value of the configuration referenced by the Configuration Type and the Component Reference.
"
::= { configurationEntry 2 }
configurationStringValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
String value of the configuration referenced by the Configuration Type and the Component Reference.
"
::= { configurationEntry 3 }
-- Commands
-----------
commandList OBJECT IDENTIFIER ::= { resource 6 }
commandListCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of defined data points available for query."
::= { commandList 1 }
commandListTable OBJECT-TYPE
SYNTAX SEQUENCE OF CommandListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Table of commands available from the Cordex HP Controller.
"
::= { commandList 2 }
commandListEntry OBJECT-TYPE
SYNTAX CommandListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Conceptual row of a command item in the Command List Table.
"
INDEX { componentListType, commandListReference }
::= { commandListTable 1 }
CommandListEntry ::= SEQUENCE {
commandListReference Unsigned32,
commandListName OCTET STRING
}
commandListReference OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Reference value to identify available commands published by the Cordex HP Controller.
"
::= { commandListEntry 1 }
commandListName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Name of the command.
"
::= { commandListEntry 2 }
command OBJECT IDENTIFIER ::= { resource 7 }
commandCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of defined command points available for query."
::= { command 1 }
commandTable OBJECT-TYPE
SYNTAX SEQUENCE OF CommandEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Table of command fields that are available in the Cordex HP Controller.
"
::= { command 2 }
commandEntry OBJECT-TYPE
SYNTAX CommandEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Conceptual row of the Command Table.
"
INDEX { componentListType, commandListReference, componentListReference }
::= { commandTable 1 }
CommandEntry ::= SEQUENCE {
commandReference Unsigned32,
commandTrigger Integer32
}
commandReference OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Non-configurable ID permanently assigned to the field entry.
"
::= { commandEntry 1 }
commandTrigger OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Command field that is the trigger to send command referenced by the Command Type and the Component that it belongs to.
"
::= { commandEntry 2 }
-- Alarms
-----------
alarmType OBJECT IDENTIFIER ::= { resource 8 }
alarmTypeCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of defined alarm points available for query."
::= { alarmType 1 }
alarmTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlarmTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Table of alarms available from the Cordex HP Controller.
"
::= { alarmType 2 }
alarmTypeEntry OBJECT-TYPE
SYNTAX AlarmTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Conceptual row of a alarm item in the Alarm List Table.
"
INDEX { componentListType, alarmTypeReference }
::= { alarmTypeTable 1 }
AlarmTypeEntry ::= SEQUENCE {
alarmTypeReference Unsigned32,
alarmTypeName OCTET STRING
}
alarmTypeReference OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Reference value to identify available alarms published by the Cordex HP Controller.
"
::= { alarmTypeEntry 1 }
alarmTypeName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Name of the alarm.
"
::= { alarmTypeEntry 2 }
alarm OBJECT IDENTIFIER ::= { resource 9 }
alarmCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of defined alarm points available for query."
::= { alarm 1 }
alarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Table of alarm fields that are available in the Cordex HP Controller.
"
::= { alarm 2 }
alarmEntry OBJECT-TYPE
SYNTAX AlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Conceptual row of the Alarm Table.
"
INDEX { componentListType, alarmTypeReference, componentListReference }
::= { alarmTable 1 }
AlarmEntry ::= SEQUENCE {
alarmState Unsigned32
}
alarmState OBJECT-TYPE
SYNTAX Unsigned32 (1..128)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Integer representation of the state of the alarm and its priority level.
0 - Normal
1 - Warning
2 - Minor
3 - Major
4 - Critical
"
::= { alarmEntry 1 }
alert OBJECT IDENTIFIER ::= { resource 10 }
alertCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of defined alert points available for query. Alerts
are indications of the state of modules. Alerts are not configurable
and do not send notifications"
::= { alert 1 }
alertTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlertEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Table of active module alerts fields.
"
::= { alert 2 }
alertEntry OBJECT-TYPE
SYNTAX AlertEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Conceptual row of the Alert Table.
"
INDEX { componentListType }
::= { alertTable 1 }
AlertEntry ::= SEQUENCE {
alertTypeName OCTET STRING,
alertState Unsigned32
}
alertTypeName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
the name of the alert
"
::= { alertEntry 1 }
-- Conformance
resourceConformance OBJECT IDENTIFIER ::= { resource 100 }
resourceCompliances OBJECT IDENTIFIER ::= { resourceConformance 1 }
resourceCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for systems supporting the Alpha Resource MIB."
MODULE -- this module
MANDATORY-GROUPS {
alphaControllerGroup,
alphaComponentGroup,
alphaDataTypeGroup,
alphaDataGroup
}
GROUP alphaConfigurationTypeGroup
DESCRIPTION
"
This group is optional. (in development)
"
GROUP alphaConfigurationGroup
DESCRIPTION
"
This group is optional. (in development)
"
GROUP alphaCommandTypeGroup
DESCRIPTION
"
This group is optional. (in development)
"
GROUP alphaCommandGroup
DESCRIPTION
"
This group is optional. (in development)
"
GROUP alphaAlarmGroup
DESCRIPTION
"
This group is optional. (in development)
"
GROUP alphaAlertGroup
DESCRIPTION
"
This group is optional. (in development)
"
::= { resourceCompliances 1 }
resourceGroups OBJECT IDENTIFIER ::= { resourceCompliances 2 }
alphaControllerGroup OBJECT-GROUP
OBJECTS {
controllerInfoName,
controllerInfoDescription,
controllerInfoSoftwareVersion,
controllerInfoOperatingSystemVersion,
controllerInfoHardwareVersion,
controllerExtInfoName,
controllerExtInfoStringValue,
controllerExtInfoUnit,
controllerExtInfoNumberValue
}
STATUS current
DESCRIPTION
"Alpha controller data list group."
::= { resourceGroups 1 }
alphaComponentGroup OBJECT-GROUP
OBJECTS {
componentListCount,
componentListStaticName,
componentListConfiguredName,
componentListModelNumber,
componentListSerialNumber,
componentListSystemPointer
}
STATUS current
DESCRIPTION
"Component data list group."
::= { resourceGroups 2 }
alphaDataTypeGroup OBJECT-GROUP
OBJECTS {
dataListCount,
dataListName,
dataListUnit
}
STATUS current
DESCRIPTION
"Data type list group."
::= { resourceGroups 3 }
alphaDataGroup OBJECT-GROUP
OBJECTS {
dataCount,
dataNumberValue,
dataStringValue
}
STATUS current
DESCRIPTION
"Data list group."
::= { resourceGroups 4 }
alphaConfigurationTypeGroup OBJECT-GROUP
OBJECTS {
configurationListCount,
configurationListName,
configurationListType,
configurationListUnit
}
STATUS current
DESCRIPTION
"Configuration type list group."
::= { resourceGroups 5 }
alphaConfigurationGroup OBJECT-GROUP
OBJECTS {
configurationCount,
configurationStringValue,
configurationNumberValue
}
STATUS current
DESCRIPTION
"Configuration list group."
::= { resourceGroups 6}
alphaCommandTypeGroup OBJECT-GROUP
OBJECTS {
commandListCount,
commandListName
}
STATUS current
DESCRIPTION
"Command type list group."
::= { resourceGroups 7}
alphaCommandGroup OBJECT-GROUP
OBJECTS {
commandCount,
commandTrigger
}
STATUS current
DESCRIPTION
"Command list group."
::= { resourceGroups 8}
alphaAlarmGroup OBJECT-GROUP
OBJECTS {
alarmTypeCount,
alarmTypeName,
alarmCount,
alarmState
}
STATUS current
DESCRIPTION
"Alarm list group."
::= { resourceGroups 9}
alphaAlertGroup OBJECT-GROUP
OBJECTS {
alertCount,
alertTypeName
}
STATUS current
DESCRIPTION
"Alert type list group."
::= { resourceGroups 10}
END
|