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
|
LINKSYS-Physicaldescription-MIB DEFINITIONS ::= BEGIN
-- Version: 7.46
-- Date: 15-Jan-2007
--
-- 30-Jan-2004 Add rlPhdUnitGenParamTable
-- 30-Jan-2004 Add rlPhdUnitEnvParamTable
-- 24-Feb-2004 Add rlPhdStackOrderTopUnit
-- 24-Feb-2004 Add rlPhdStackOrderBottomUnit
-- 24-Feb-2004 Add rlPhdStackOrderPermutation
-- 21-Apr-2005 Add rlPhdPortsTable switch description between:
-- rlPhdPortsModuleNumber && rlPhdPortsStackUnit due to EWS need
-- 27-Apr-2005 Add rlStackLinkChange trap.
-- 16-May-2005 Add rlPhdNumberOfPoeUnits
-- 02-Jun-2005 Add field to rlPhDUnitEnvParamTable: rlPhdUnitEnvParamUpTime
-- 25-Jul-2005 Add rlPhdPhyLedTimeout and rlPhdPhyLedStackUnit
-- 03-Aug-2005 Remove boundary for unit number field, checked by box
-- this is done coz different products use different stack size
-- 05-Sep-2005 Add rlCascadeTable
-- 31-Oct-2005 Add rlCascadeAfterResetTable
-- 14-Nov-2005 Change rlPhdUnitGenParamSerialNum to read-write
-- 16-May-2006 Add field rlCascadeUnitId to rlCascadeEntry
-- 14-Jan-2007 rlPhdModuleType was moved to a separated text file
-- 15-Jan-2007 Devided file appolo.txt to a few files
-- Renamed file appolo.txt to ralan-mib.mib
-- 23-Jul-2012 IdanS: Add rlPhdUnitGenParamRegistrationDone and rlPhdUnitGenParamRegistrationSuppressed to RlPhdUnitGenParamEntry
-- 09-Oct-2012 yahal: Add rlPhdUnitEnvParamMonitorAutoRecoveryEnable & rlPhdUnitEnvParamMonitorTemperatureStatus & rlPhdUnitEnvParamMonitorTemperatureStatus
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, TimeTicks,
NOTIFICATION-TYPE FROM SNMPv2-SMI
DisplayString, PhysAddress, RowStatus, TruthValue FROM SNMPv2-TC
JackType FROM MAU-MIB
rnd, rndNotifications FROM LINKSYS-MIB
RlEnvMonState FROM LINKSYS-HWENVIROMENT
EntitySensorStatus, EntitySensorValue FROM ENTITY-SENSOR-MIB
InterfaceIndexOrZero,ifIndex,InterfaceIndex FROM IF-MIB
rndErrorDesc, rndErrorSeverity FROM LINKSYS-DEVICEPARAMS-MIB;
rlPhysicalDescription MODULE-IDENTITY
LAST-UPDATED "200602120000Z"
ORGANIZATION "Linksys LLC."
CONTACT-INFO
"www.linksys.com/business/support"
DESCRIPTION
"The private MIB module definition for physical
device configuration."
REVISION "200602120000Z"
DESCRIPTION
"Removed TRAP-TYPE from IMPORTS."
REVISION "200310180000Z"
DESCRIPTION
"Initial version of this MIB."
::= { rnd 53 }
rlPhdMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 3.
1: original version
2: a. new tables
rlPhdModuleHotSwapTable
rlPhdStackOrderTable
b. new scalars
rlPhdStackReorder
rlPhdNumberOfUnits
rlPhdMaxNumberOfUnits
3: a. new field rlPhdModuleRole of rlPhdModuleTable
b. new scalars
rlPhdForceMasterUnit
4: a. new fields rlPhdModuleConnect1 and rlPhdModuleConnect2
of rlPhdModuleTable.
5: a. Prefix rlPhD were replaced by prefix rlPhd
b. fields rlPhdModuleConnect1 and rlPhdModuleConnect2 are
moved from rlPhdModuleTable to rlPhdStackTable.
c. new fiels rlPhdStackSofrwareVer, rlPhdStackProductID and
rlPhdStackMacAddr of rlPhdStackTable.
d. new scalars
rlPhdStackReloadUnit
e. new scalars
rlPhdStackOrderTopUnit
rlPhdStackOrderBottomUnit
rlPhdStackOrderPermutation"
::= { rlPhysicalDescription 1 }
rlPhdModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPhdModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For each module (board) there is an entry describing it in this
module"
::= { rlPhysicalDescription 2 }
rlPhdModuleEntry OBJECT-TYPE
SYNTAX RlPhdModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A entry of this table specifies a module (board)"
INDEX { rlPhdModuleStackUnit, rlPhdModuleIndex}
::= { rlPhdModuleTable 1 }
RlPhdModuleEntry ::= SEQUENCE {
rlPhdModuleStackUnit INTEGER,
rlPhdModuleIndex INTEGER,
rlPhdModuleType INTEGER,
rlPhdModuleStartingPort INTEGER,
rlPhdModuleNumberOfPorts INTEGER,
rlPhdModuleRow INTEGER,
rlPhdModuleColumn INTEGER,
rlPhdModuleRole INTEGER
}
rlPhdModuleStackUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the stack unit"
::= { rlPhdModuleEntry 1 }
rlPhdModuleIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the module in its stack unit"
::= { rlPhdModuleEntry 2 }
rlPhdModuleType OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The index for each module type"
::= { rlPhdModuleEntry 3 }
rlPhdModuleStartingPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimal number of the port residing on this module."
::= { rlPhdModuleEntry 4 }
rlPhdModuleNumberOfPorts OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ports residing on this module."
::= { rlPhdModuleEntry 5}
rlPhdModuleRow OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"On which row (the uppermost being numbered 1 and the highest row
number asigned to the lowest row) this module resides within the
chassis of its stack unit."
::= { rlPhdModuleEntry 6 }
rlPhdModuleColumn OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"On which column (the leftmost being numbered 1 and the highest column
number asigned to the rightmost column) this module resides within the
chassis of its stack unit."
::= { rlPhdModuleEntry 7 }
rlPhdModuleRole OBJECT-TYPE
SYNTAX INTEGER {
standalone(1),
master(2),
backup(3),
slave(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The module role in the stack."
DEFVAL { standalone }
::= { rlPhdModuleEntry 8 }
rlPhdPortsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPhdPortsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Lists the physical or physical-related attributes of ports"
::= { rlPhysicalDescription 3 }
rlPhdPortsEntry OBJECT-TYPE
SYNTAX RlPhdPortsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For each port, a entry describing attributes which are either
physical or are derived from the features of the device hardware"
INDEX { rlPhdPortsIfIndex }
::= { rlPhdPortsTable 1 }
RlPhdPortsEntry ::= SEQUENCE {
rlPhdPortsIfIndex INTEGER,
rlPhdPortsIfIndexName DisplayString(SIZE(1..20)),
rlPhdPortsMediaType INTEGER,
rlPhdPortsStackUnit INTEGER,
rlPhdPortsModuleNumber INTEGER,
rlPhdPortsRow INTEGER,
rlPhdPortsColumn INTEGER,
rlPhdConnectorType JackType,
rlPhdPortHaul INTEGER
}
rlPhdPortsIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The L2 interface number associated with this port."
::= { rlPhdPortsEntry 1 }
rlPhdPortsIfIndexName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The L2 interface number associated with this port, in string format
based on the overall hardware architecture of the device (i.e., for
monolithic devices just numbers, devices composed of modules (boards,
cards) or stackable devices composed of monolithic units in form
<module /stack unit number> - <port number on current module /stack
unit number>, stackable devices in which each unit is composed of
modules
<stack unit number> - <module number> - <port number>"
::= { rlPhdPortsEntry 2 }
rlPhdPortsMediaType OBJECT-TYPE
SYNTAX INTEGER {copper(1), optic-fiber(2), combo(3)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The media type of this port."
::= { rlPhdPortsEntry 3 }
rlPhdPortsStackUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the slot to which this port belongs."
::= { rlPhdPortsEntry 4 }
rlPhdPortsModuleNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the stack unit to which this port resides in."
::= { rlPhdPortsEntry 5 }
rlPhdPortsRow OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"On which row (the uppermost being numbered 1 and the highest row
number asigned to the lowest row) this port resides within its
module."
::= { rlPhdPortsEntry 6 }
rlPhdPortsColumn OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"On which column (the leftmost being numbered 1 and the highest column
number asigned to the rightmost column) this this port resides within its
module."
::= { rlPhdPortsEntry 7 }
rlPhdConnectorType OBJECT-TYPE
SYNTAX JackType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of connector."
::= { rlPhdPortsEntry 8 }
rlPhdPortHaul OBJECT-TYPE
SYNTAX INTEGER {
not-relevant(1),
short(2),
long(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Distance supported by this port."
::= { rlPhdPortsEntry 9 }
rlPhdStackTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPhdStackEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For each stack unit there is an entry describing it in this table"
::= { rlPhysicalDescription 4 }
rlPhdStackEntry OBJECT-TYPE
SYNTAX RlPhdStackEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A entry of this table specifies a stack unit"
INDEX { rlPhdStackUnit }
::= { rlPhdStackTable 1 }
RlPhdStackEntry ::= SEQUENCE {
rlPhdStackUnit INTEGER,
rlPhdStackType INTEGER,
rlPhdStackConnect1 INTEGER,
rlPhdStackConnect2 INTEGER,
rlPhdStackSofrwareVer DisplayString,
rlPhdStackProductID DisplayString,
rlPhdStackMacAddr PhysAddress
}
rlPhdStackUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The stack unit described by this entry."
::= { rlPhdStackEntry 1 }
rlPhdStackType OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the stack unit described by this entry:
1 - box 3202
2 - box LG
3 - bcm
4 - prestera"
::= { rlPhdStackEntry 2 }
rlPhdStackConnect1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit number connected to the Hyper GLink left side connection -
0 means not connected; other integer indicates the unit number."
DEFVAL { 0 }
::= { rlPhdStackEntry 3 }
rlPhdStackConnect2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit number connected to the Hyper GLink right side connection -
0 means not connected; other integer indicates the unit number."
DEFVAL { 0 }
::= { rlPhdStackEntry 4 }
rlPhdStackSofrwareVer OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Software version of the unit."
::= { rlPhdStackEntry 5 }
rlPhdStackProductID OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Product ID of the unit."
::= { rlPhdStackEntry 6 }
rlPhdStackMacAddr OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical (MAC) address of the unit."
::= { rlPhdStackEntry 7 }
rlPhdModuleHotSwapTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPhdModuleHotSwapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For each module (board) there is an entry describing its Hot Swap
status"
::= { rlPhysicalDescription 5 }
rlPhdModuleHotSwapEntry OBJECT-TYPE
SYNTAX RlPhdModuleHotSwapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A entry of this table specifies a module (board) Hot Swap
status"
INDEX { rlPhdModuleStackUnit, rlPhdModuleIndex}
::= { rlPhdModuleHotSwapTable 1 }
RlPhdModuleHotSwapEntry ::= SEQUENCE {
rlPhdModuleHotSwapAdminStatus INTEGER,
rlPhdModuleHotSwapOperStatus INTEGER
}
rlPhdModuleHotSwapAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the module. The off(1) state indicates
that the module is not used and its rlPhdModuleHotSwapOperStatus
is always off(2).
The on{1) state indicates that the module may be used and its
rlPhdModuleHotSwapOperStatus will be on(1) if it presents and
off(2) if it does not present."
DEFVAL { on }
::= { rlPhdModuleHotSwapEntry 1 }
rlPhdModuleHotSwapOperStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Hot Swap state of the module.
If rlPhdModuleHotSwapAdminStatus is down(2) then
rlPhdModuleHotSwapOperStatus should be down(2). If
rlPhdModuleHotSwapAdminStatus is changed to up(1) then
rlPhdModuleHotSwapOperStatus should change to
up(1) if the module presents; it should remain in the down(2) state if
and only if the module does not present."
::= { rlPhdModuleHotSwapEntry 2 }
rlPhdStackOrderTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPhdStackOrderEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table enables the user to configure the order
of the stack units as displayed on his GUI.
The order of the entries in this table corresponds
to the last configured order. If the stack units order was
never configured, the order will be the same as in the rlPhdStackTable."
::= { rlPhysicalDescription 6 }
rlPhdStackOrderEntry OBJECT-TYPE
SYNTAX RlPhdStackOrderEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A entry of this table specifies a stack unit in the position desired by the user"
INDEX { rlPhdStackOrderCurrentUnitPosition }
::= { rlPhdStackOrderTable 1 }
RlPhdStackOrderEntry ::= SEQUENCE {
rlPhdStackOrderCurrentUnitPosition INTEGER,
rlPhdStackOrderDesiredUnitPosition INTEGER,
rlPhdStackOrderUnitIndex INTEGER,
rlPhdStackOrderUnitType INTEGER
}
rlPhdStackOrderCurrentUnitPosition OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The current stack unit position."
::= { rlPhdStackOrderEntry 1 }
rlPhdStackOrderDesiredUnitPosition OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired stack unit position. Note that setting this MIB
object will take effect only after setting the rlPhdStackReorder MIB
object below. After setting this MIB object and until a further change
of at least one instance of the rlPhdStackOrderDesiredUnitPosition object,
the values of the rlPhdStackOrderCurrentUnitPosition objectinstance and
the corresponding rlPhdStackOrderDesiredUnitPosition object instance
will be the same."
::= { rlPhdStackOrderEntry 2 }
rlPhdStackOrderUnitIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the original unit index, i.e. has the same value as rlPhdStackUnit
above."
::= { rlPhdStackOrderEntry 3 }
rlPhdStackOrderUnitType OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the stack unit described by this entry. It has the same value
as rlPhdStackType above. This information is duplicated here only for easier
retrieval by the device manager."
::= { rlPhdStackOrderEntry 4 }
rlPhdStackReorder OBJECT-TYPE
SYNTAX INTEGER {reorder(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this MIB object will cause the settings of the
rlPhdStackOrderDesiredUnitPosition MIB object instances to take effect.
After setting this MIB object and until a further change
of at least one instance of the rlPhdStackOrderDesiredUnitPosition object,
the values of the rlPhdStackOrderCurrentUnitPosition objectinstance and
the corresponding rlPhdStackOrderDesiredUnitPosition object instance
will be the same."
::= { rlPhysicalDescription 7 }
rlPhdNumberOfUnits OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shows the current number of units in the stack."
::= { rlPhysicalDescription 8 }
rlPhdMaxNumberOfUnits OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shows the maximum number of units in the stack."
::= { rlPhysicalDescription 9 }
rlPhdForceMasterUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Force unit to be master."
::= { rlPhysicalDescription 10 }
-- The following scalar isn't suported and will be removed
rlPhdStackFixedUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determine which unit will be on bottom/top of list
on Show-List command(see ."
::= { rlPhysicalDescription 11 }
-- The following scalar isn't suported and will be removed
rlPhdStackFixedUnitLocation OBJECT-TYPE
SYNTAX INTEGER{
bottom(1),
top(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determine the bottom/top object in the stack table."
::= { rlPhysicalDescription 12 }
rlPhdStackReloadUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset a specific unit."
::= { rlPhysicalDescription 13 }
rlPhdUnitGenParamTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPhdUnitGenParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For each module (board) there is an entry describing it in this
module"
::= { rlPhysicalDescription 14 }
rlPhdUnitGenParamEntry OBJECT-TYPE
SYNTAX RlPhdUnitGenParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A entry of this table specifies a module (board)"
INDEX { rlPhdUnitGenParamStackUnit}
::= { rlPhdUnitGenParamTable 1 }
RlPhdUnitGenParamEntry ::= SEQUENCE {
rlPhdUnitGenParamStackUnit INTEGER,
rlPhdUnitGenParamSoftwareVersion DisplayString,
rlPhdUnitGenParamFirmwareVersion DisplayString,
rlPhdUnitGenParamHardwareVersion DisplayString,
rlPhdUnitGenParamSerialNum DisplayString,
rlPhdUnitGenParamAssetTag DisplayString,
rlPhdUnitGenParamServiceTag DisplayString,
rlPhdUnitGenParamSoftwareDate DisplayString,
rlPhdUnitGenParamFirmwareDate DisplayString,
rlPhdUnitGenParamManufacturer DisplayString,
rlPhdUnitGenParamModelName DisplayString,
rlPhdUnitGenParamMd5ChksumBoot DisplayString,
rlPhdUnitGenParamMd5ChksumImage1 DisplayString,
rlPhdUnitGenParamMd5ChksumImage2 DisplayString,
rlPhdUnitGenParamRegistrationDone TruthValue,
rlPhdUnitGenParamRegistrationSuppressed TruthValue
}
rlPhdUnitGenParamStackUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The index of the stack unit to which this conceptual row corresponds."
::= { rlPhdUnitGenParamEntry 1 }
rlPhdUnitGenParamSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Serial number of the product."
::= { rlPhdUnitGenParamEntry 2 }
rlPhdUnitGenParamFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Serial number of the product."
::= { rlPhdUnitGenParamEntry 3 }
rlPhdUnitGenParamHardwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Serial number of the product."
::= { rlPhdUnitGenParamEntry 4 }
rlPhdUnitGenParamSerialNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Serial number of the product."
::= { rlPhdUnitGenParamEntry 5 }
rlPhdUnitGenParamAssetTag OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Serial number of the product."
::= { rlPhdUnitGenParamEntry 6 }
rlPhdUnitGenParamServiceTag OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Asset tag of the product."
::= { rlPhdUnitGenParamEntry 7 }
rlPhdUnitGenParamSoftwareDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Date of product's software."
::= { rlPhdUnitGenParamEntry 8 }
rlPhdUnitGenParamFirmwareDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Date of product's firmware."
::= { rlPhdUnitGenParamEntry 9 }
rlPhdUnitGenParamManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Product's Manufacturer."
::= { rlPhdUnitGenParamEntry 10 }
rlPhdUnitGenParamModelName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Model Name."
::= { rlPhdUnitGenParamEntry 11 }
rlPhdUnitGenParamMd5ChksumBoot OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MD5 Checksum for Boot"
::= { rlPhdUnitGenParamEntry 12 }
rlPhdUnitGenParamMd5ChksumImage1 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MD5 Checksum for Image 1"
::= { rlPhdUnitGenParamEntry 13 }
rlPhdUnitGenParamMd5ChksumImage2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MD5 Checksum for Image 2"
::= { rlPhdUnitGenParamEntry 14 }
rlPhdUnitGenParamRegistrationDone OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Registration Done."
::= { rlPhdUnitGenParamEntry 15 }
rlPhdUnitGenParamRegistrationSuppressed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Registration Suppressed."
::= { rlPhdUnitGenParamEntry 16 }
rlPhdUnitEnvParamTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPhdUnitEnvParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For each module (board) there is an entry describing it in this
module"
::= { rlPhysicalDescription 15 }
rlPhdUnitEnvParamEntry OBJECT-TYPE
SYNTAX RlPhdUnitEnvParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A entry of this table specifies a module (board)"
INDEX { rlPhdUnitEnvParamStackUnit}
::= { rlPhdUnitEnvParamTable 1 }
RlPhdUnitEnvParamEntry ::= SEQUENCE {
rlPhdUnitEnvParamStackUnit INTEGER,
rlPhdUnitEnvParamMainPSStatus RlEnvMonState,
rlPhdUnitEnvParamRedundantPSStatus RlEnvMonState,
rlPhdUnitEnvParamFan1Status RlEnvMonState,
rlPhdUnitEnvParamFan2Status RlEnvMonState,
rlPhdUnitEnvParamFan3Status RlEnvMonState,
rlPhdUnitEnvParamFan4Status RlEnvMonState,
rlPhdUnitEnvParamFan5Status RlEnvMonState,
rlPhdUnitEnvParamTempSensorValue EntitySensorValue,
rlPhdUnitEnvParamTempSensorStatus EntitySensorStatus,
rlPhdUnitEnvParamUpTime TimeTicks,
rlPhdUnitEnvParamMonitorAutoRecoveryEnable TruthValue,
rlPhdUnitEnvParamMonitorTemperatureStatus INTEGER,
rlPhdUnitEnvParamMonitorOperStatus TruthValue
}
rlPhdUnitEnvParamStackUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The index of the stack unit to which this conceptual row corresponds.
Note that the index will be the same index as the index
of a 'chassis' physical entity in the entity MIB of the product."
::= { rlPhdUnitEnvParamEntry 1 }
rlPhdUnitEnvParamMainPSStatus OBJECT-TYPE
SYNTAX RlEnvMonState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mandatory state of the main PS being instrumented."
::= { rlPhdUnitEnvParamEntry 2 }
rlPhdUnitEnvParamRedundantPSStatus OBJECT-TYPE
SYNTAX RlEnvMonState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mandatory state of the redundant PS being instrumented."
::= { rlPhdUnitEnvParamEntry 3 }
rlPhdUnitEnvParamFan1Status OBJECT-TYPE
SYNTAX RlEnvMonState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mandatory state of the FAN 1 being instrumented."
::= { rlPhdUnitEnvParamEntry 4 }
rlPhdUnitEnvParamFan2Status OBJECT-TYPE
SYNTAX RlEnvMonState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mandatory state of the FAN 2 being instrumented."
::= { rlPhdUnitEnvParamEntry 5 }
rlPhdUnitEnvParamFan3Status OBJECT-TYPE
SYNTAX RlEnvMonState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mandatory state of the FAN 3 being instrumented."
::= { rlPhdUnitEnvParamEntry 6 }
rlPhdUnitEnvParamFan4Status OBJECT-TYPE
SYNTAX RlEnvMonState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mandatory state of the FAN 4 being instrumented."
::= { rlPhdUnitEnvParamEntry 7 }
rlPhdUnitEnvParamFan5Status OBJECT-TYPE
SYNTAX RlEnvMonState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mandatory state of the FAN 5 being instrumented."
::= { rlPhdUnitEnvParamEntry 8 }
rlPhdUnitEnvParamTempSensorValue OBJECT-TYPE
SYNTAX EntitySensorValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current value for the Sensor being instrumented."
::= { rlPhdUnitEnvParamEntry 9 }
rlPhdUnitEnvParamTempSensorStatus OBJECT-TYPE
SYNTAX EntitySensorStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status value for the Sensor being instrumented."
::= { rlPhdUnitEnvParamEntry 10 }
rlPhdUnitEnvParamUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Up time of the unit in 100th of second (sec/100)."
::= { rlPhdUnitEnvParamEntry 11 }
rlPhdUnitEnvParamMonitorAutoRecoveryEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Disable environment automatic recovery option"
::= { rlPhdUnitEnvParamEntry 12 }
rlPhdUnitEnvParamMonitorTemperatureStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
overTemperatureThreshold(2),
overCriticalTemperatureThreshold(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Display environment monitoring chassis temperature status"
::= { rlPhdUnitEnvParamEntry 13 }
rlPhdUnitEnvParamMonitorOperStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Display environment automatic recovery current status (active/not active)"
::= { rlPhdUnitEnvParamEntry 14 }
rlPhdStackOrderTopUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar mib holds the Top unit for the stack order command"
::= { rlPhysicalDescription 16 }
rlPhdStackOrderBottomUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar mib holds the Bottom unit for the stack order command"
::= { rlPhysicalDescription 17 }
rlPhdStackOrderPermutation OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar mib holds stack permutation"
::= { rlPhysicalDescription 18 }
rlPhdNumberOfPoeUnits OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shows the current number of poe units in the stack."
::= { rlPhysicalDescription 19 }
rlPhdPoeTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPhdPoeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For each module (board) there is an entry describing it in this
module"
::= { rlPhysicalDescription 20 }
rlPhdPoeEntry OBJECT-TYPE
SYNTAX RlPhdPoeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A entry of this table specifies a module (board)"
INDEX { rlPhdPoeStackUnit }
::= { rlPhdPoeTable 1 }
RlPhdPoeEntry ::= SEQUENCE {
rlPhdPoeStackUnit INTEGER,
rlPhdPoePresent INTEGER
}
rlPhdPoeStackUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The stack unit to which this module belongs."
::= { rlPhdPoeEntry 1 }
rlPhdPoePresent OBJECT-TYPE
SYNTAX INTEGER {
no(1),
yes(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the PoE module. The no(1) state indicates
that the PoE module is not present. The yes{2) state indicates that the
PoE module is present."
::= { rlPhdPoeEntry 2 }
-- The light unit scalars
rlPhdPhyLedStackUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar mib holds the unit number for the stack light command"
::= { rlPhysicalDescription 21 }
rlPhdPhyLedTimeout OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar mib holds the timeout for the stack light command.
May be in the range 2..60 sec. (default - 5 sec.), if the timeout = 0
- all units return to normal state."
::= { rlPhysicalDescription 22 }
rlCascadeTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCascadeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For each cascaded port for stacking unit there is an entry describing it in this table"
::= { rlPhysicalDescription 23 }
rlCascadeEntry OBJECT-TYPE
SYNTAX RlCascadeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of this table specifies a cascaded link information in a unit"
INDEX { ifIndex }
::= { rlCascadeTable 1 }
RlCascadeEntry ::= SEQUENCE {
rlCascadeNeighborIfIndex InterfaceIndexOrZero,
rlCascadeNeighborUnit INTEGER,
rlCascadeTrunkId INTEGER,
rlCascadeUnitId INTEGER
}
rlCascadeNeighborIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ifIndex of a stacking port in the neighbor unit -
0 means not connected; other integer indicates the IfIndex."
::= { rlCascadeEntry 1 }
rlCascadeNeighborUnit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit number of the neighbor unit -
0 means not connected; other integer indicates the unit number."
::= { rlCascadeEntry 2 }
rlCascadeTrunkId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The id of the trunk, the stacking port is member,
zero if the port is not member of trunk."
::= { rlCascadeEntry 3 }
rlCascadeUnitId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit number matching the current ifIndex"
::= { rlCascadeEntry 4 }
rlCascadeAfterResetTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlCascadeAfterResetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For each cascaded port for stacking unit there is an entry describing it in this table after reset"
::= { rlPhysicalDescription 24 }
rlCascadeAfterResetEntry OBJECT-TYPE
SYNTAX RlCascadeAfterResetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A entry of this table specifies a cascaded port information in a unit after reset"
INDEX { rlCascadeIfIndexAfterReset }
::= { rlCascadeAfterResetTable 1 }
RlCascadeAfterResetEntry ::= SEQUENCE {
rlCascadeIfIndexAfterReset InterfaceIndex,
rlCascadeTrunkIdAfterReset INTEGER,
rlCascadeRowStatus RowStatus
}
rlCascadeIfIndexAfterReset OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ifIndex of a stacking port after reset."
::= { rlCascadeAfterResetEntry 1 }
rlCascadeTrunkIdAfterReset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Id of the trunk, the stacking port will be member after reset,
zero if the port is not member of trunk."
::= { rlCascadeAfterResetEntry 2 }
rlCascadeRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this entry."
::= { rlCascadeAfterResetEntry 3 }
-- Stack MIB Trap Definitions
rlStackUnitRemoved NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Trap indicating that a unit was removed from the stack."
::= { rndNotifications 186 }
rlStackConfigChangedRingChain NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Trap indicating that the configuration of the stack has changed.
- from ring to chain
- from chain to ring."
::= { rndNotifications 187 }
rlStackBackupUnitRemoved NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Trap indicating that the backup unit was removed from the stack."
::= { rndNotifications 188 }
rlStackMasterSwitchover NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Trap indicating that a new master was elected.
The old maste is the backup now. "
::= { rndNotifications 189 }
rlStackUnitDifferentSwVersion NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Trap indicating that the new unit added to the stack has
different software version than the master."
::= { rndNotifications 190 }
rlStackDuplicateUnitNotJoin NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Trap indicating that a new unit with duplicated unit id was
added to the stack - but it will not join the stack."
::= { rndNotifications 191 }
rlStackLinkChange NOTIFICATION-TYPE
OBJECTS { rndErrorDesc, rndErrorSeverity }
STATUS current
DESCRIPTION
"Trap indicating that Link has change in one of the Stacking Ports."
::= { rndNotifications 195 }
END
|