This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
ALLIEDTELESYN-MIB
6044 lines (5396 loc) · 235 KB
/
ALLIEDTELESYN-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ALLIEDTELESYN-MIB
-- ATRouter Private MIB Version 1.35 24/May/2005
DEFINITIONS ::= BEGIN
IMPORTS
enterprises, IpAddress, Counter
FROM RFC1155-SMI
DisplayString, ifIndex
FROM RFC1213-MIB
TRAP-TYPE
FROM RFC-1215
OBJECT-TYPE
FROM RFC-1212;
-- Textual convention for an interface index type which may not reference an actual member of ifTable, in which case the value
-- zero should be used.
InterfaceIndexOrZero ::= INTEGER (0..2147483647)
-- define the top of the alliedTelesyn MIB.
alliedTelesyn OBJECT IDENTIFIER ::= { enterprises 207 }
products OBJECT IDENTIFIER ::= { alliedTelesyn 1 }
mibObject OBJECT IDENTIFIER ::= { alliedTelesyn 8 }
bridgeRouter OBJECT IDENTIFIER ::= { products 1 }
centreCOM-AR300Router OBJECT IDENTIFIER ::= { bridgeRouter 8 }
centreCOM-AR720Router OBJECT IDENTIFIER ::= { bridgeRouter 11 }
centreCOM-AR300LRouter OBJECT IDENTIFIER ::= { bridgeRouter 12 }
centreCOM-AR310Router OBJECT IDENTIFIER ::= { bridgeRouter 13 }
centreCOM-AR300LURouter OBJECT IDENTIFIER ::= { bridgeRouter 14 }
centreCOM-AR300URouter OBJECT IDENTIFIER ::= { bridgeRouter 15 }
centreCOM-AR310URouter OBJECT IDENTIFIER ::= { bridgeRouter 16 }
centreCOM-AR350Router OBJECT IDENTIFIER ::= { bridgeRouter 17 }
centreCOM-AR370Router OBJECT IDENTIFIER ::= { bridgeRouter 18 }
centreCOM-AR330Router OBJECT IDENTIFIER ::= { bridgeRouter 19 }
centreCOM-AR395Router OBJECT IDENTIFIER ::= { bridgeRouter 20 }
centreCOM-AR390Router OBJECT IDENTIFIER ::= { bridgeRouter 21 }
centreCOM-AR370URouter OBJECT IDENTIFIER ::= { bridgeRouter 22 }
centreCOM-AR740Router OBJECT IDENTIFIER ::= { bridgeRouter 23 }
centreCOM-AR140SRouter OBJECT IDENTIFIER ::= { bridgeRouter 24 }
centreCOM-AR140URouter OBJECT IDENTIFIER ::= { bridgeRouter 25 }
centreCOM-AR320Router OBJECT IDENTIFIER ::= { bridgeRouter 26 }
centreCOM-AR130SRouter OBJECT IDENTIFIER ::= { bridgeRouter 27 }
centreCOM-AR130URouter OBJECT IDENTIFIER ::= { bridgeRouter 28 }
centreCOM-AR160Router OBJECT IDENTIFIER ::= { bridgeRouter 29 }
at-AR740RouterDC OBJECT IDENTIFIER ::= { bridgeRouter 43 }
centreCOM-AR120Router OBJECT IDENTIFIER ::= { bridgeRouter 44 }
at-AR410Router OBJECT IDENTIFIER ::= { bridgeRouter 47 }
at-AR725Router OBJECT IDENTIFIER ::= { bridgeRouter 48 }
at-AR745Router OBJECT IDENTIFIER ::= { bridgeRouter 49 }
at-AR410v2Router OBJECT IDENTIFIER ::= { bridgeRouter 50 }
at-AR410v3Router OBJECT IDENTIFIER ::= { bridgeRouter 51 }
at-AR725RouterDC OBJECT IDENTIFIER ::= { bridgeRouter 52 }
at-AR745RouterDC OBJECT IDENTIFIER ::= { bridgeRouter 53 }
at-AR450Router OBJECT IDENTIFIER ::= { bridgeRouter 54 }
at-AR450DualRouter OBJECT IDENTIFIER ::= { bridgeRouter 55 }
at-AR440Router OBJECT IDENTIFIER ::= { bridgeRouter 59 }
at-AR441Router OBJECT IDENTIFIER ::= { bridgeRouter 60 }
at-AR442Router OBJECT IDENTIFIER ::= { bridgeRouter 61 }
at-AR443Router OBJECT IDENTIFIER ::= { bridgeRouter 62 }
at-AR444Router OBJECT IDENTIFIER ::= { bridgeRouter 63 }
at-AR420Router OBJECT IDENTIFIER ::= { bridgeRouter 64 }
at-AR550Router OBJECT IDENTIFIER ::= { bridgeRouter 73 }
at-AR551Router OBJECT IDENTIFIER ::= { bridgeRouter 74 }
at-AR552Router OBJECT IDENTIFIER ::= { bridgeRouter 75 }
routerSwitch OBJECT IDENTIFIER ::= { products 14 }
at-Rapier24 OBJECT IDENTIFIER ::= { routerSwitch 1 }
at-Rapier16fSC OBJECT IDENTIFIER ::= { routerSwitch 2 }
at-Rapier16fVF OBJECT IDENTIFIER ::= { routerSwitch 3 } -- deprecated
at-Rapier16fMT OBJECT IDENTIFIER ::= { routerSwitch 4 }
at-Rapier48 OBJECT IDENTIFIER ::= { routerSwitch 5 }
at-Rapier8t8fSC OBJECT IDENTIFIER ::= { routerSwitch 6 }
at-Rapier8t8fSCi OBJECT IDENTIFIER ::= { routerSwitch 7 }
at-Rapier8t8fMT OBJECT IDENTIFIER ::= { routerSwitch 8 }
at-Rapier8t8fMTi OBJECT IDENTIFIER ::= { routerSwitch 9 }
at-Rapier8fSC OBJECT IDENTIFIER ::= { routerSwitch 10 }
at-Rapier8fSCi OBJECT IDENTIFIER ::= { routerSwitch 11 }
at-Rapier8fMT OBJECT IDENTIFIER ::= { routerSwitch 12 }
at-Rapier8fMTi OBJECT IDENTIFIER ::= { routerSwitch 13 }
at-Rapier16fMTi OBJECT IDENTIFIER ::= { routerSwitch 14 }
at-RapierG6 OBJECT IDENTIFIER ::= { routerSwitch 15 }
at-RapierG6SX OBJECT IDENTIFIER ::= { routerSwitch 16 }
at-RapierG6LX OBJECT IDENTIFIER ::= { routerSwitch 17 }
at-RapierG6MT OBJECT IDENTIFIER ::= { routerSwitch 18 }
at-Rapier16fSCi OBJECT IDENTIFIER ::= { routerSwitch 19 }
at-Rapier24i OBJECT IDENTIFIER ::= { routerSwitch 20 }
at-Rapier48i OBJECT IDENTIFIER ::= { routerSwitch 21 }
at-Switchblade4AC OBJECT IDENTIFIER ::= { routerSwitch 22 }
at-Switchblade4DC OBJECT IDENTIFIER ::= { routerSwitch 23 }
at-Switchblade8AC OBJECT IDENTIFIER ::= { routerSwitch 24 }
at-Switchblade8DC OBJECT IDENTIFIER ::= { routerSwitch 25 }
at-9816GF OBJECT IDENTIFIER ::= { routerSwitch 26 }
at-9812TF OBJECT IDENTIFIER ::= { routerSwitch 27 }
at-9816GB OBJECT IDENTIFIER ::= { routerSwitch 28 }
at-9812T OBJECT IDENTIFIER ::= { routerSwitch 29 }
at-8724XL OBJECT IDENTIFIER ::= { routerSwitch 30 }
at-8748XL OBJECT IDENTIFIER ::= { routerSwitch 31 }
at-8724XLDC OBJECT IDENTIFIER ::= { routerSwitch 32 }
at-8748XLDC OBJECT IDENTIFIER ::= { routerSwitch 33 }
at-9816GB-DC OBJECT IDENTIFIER ::= { routerSwitch 34 }
at-9812T-DC OBJECT IDENTIFIER ::= { routerSwitch 35 }
at-8824 OBJECT IDENTIFIER ::= { routerSwitch 36 }
at-8848 OBJECT IDENTIFIER ::= { routerSwitch 37 }
at-8824-DC OBJECT IDENTIFIER ::= { routerSwitch 38 }
at-8848-DC OBJECT IDENTIFIER ::= { routerSwitch 39 }
at-8624XL-80 OBJECT IDENTIFIER ::= { routerSwitch 41 }
at-8724XL-80 OBJECT IDENTIFIER ::= { routerSwitch 42 }
at-8748XL-80 OBJECT IDENTIFIER ::= { routerSwitch 43 }
at-8948EX OBJECT IDENTIFIER ::= { routerSwitch 44 }
at-8948MX OBJECT IDENTIFIER ::= { routerSwitch 45 }
at-8624T2M OBJECT IDENTIFIER ::= { routerSwitch 46 }
at-Rapier24i-DC-NEBS OBJECT IDENTIFIER ::= { routerSwitch 47 }
at-8724XL-DC-NEBS OBJECT IDENTIFIER ::= { routerSwitch 48 }
at-9924T OBJECT IDENTIFIER ::= { routerSwitch 49 }
at-9924SP OBJECT IDENTIFIER ::= { routerSwitch 50 }
at-9924T-4SP OBJECT IDENTIFIER ::= { routerSwitch 51 }
at-9924TEMC OBJECT IDENTIFIER ::= { routerSwitch 53 }
at-8724MLB OBJECT IDENTIFIER ::= { routerSwitch 55 }
at-8624POE OBJECT IDENTIFIER ::= { routerSwitch 56 }
at-86482SP OBJECT IDENTIFIER ::= { routerSwitch 58 }
brouterMib OBJECT IDENTIFIER ::= { mibObject 4 }
atRouter OBJECT IDENTIFIER ::= { brouterMib 4 }
-- groups in ATROUTER
objects OBJECT IDENTIFIER ::= { atRouter 1 }
traps OBJECT IDENTIFIER ::= { atRouter 2 }
sysinfo OBJECT IDENTIFIER ::= { atRouter 3 }
modules OBJECT IDENTIFIER ::= { atRouter 4 }
arInterfaces OBJECT IDENTIFIER ::= { atRouter 5 }
protocols OBJECT IDENTIFIER ::= { atRouter 6 }
-- objects for AT router
boards OBJECT IDENTIFIER ::= { objects 1 }
-- each AT router or L3 switch is made up of a number of boards. each board has its own
-- object ID, given here.
pprIcmAr023 OBJECT IDENTIFIER ::= { boards 39 }
pprIcmAr021s OBJECT IDENTIFIER ::= { boards 40 }
pprIcmAr022 OBJECT IDENTIFIER ::= { boards 41 }
pprIcmAr025 OBJECT IDENTIFIER ::= { boards 45 }
pprIcmAr024 OBJECT IDENTIFIER ::= { boards 46 }
pprAr300 OBJECT IDENTIFIER ::= { boards 49 }
pprAr300L OBJECT IDENTIFIER ::= { boards 52 }
pprAr310 OBJECT IDENTIFIER ::= { boards 53 }
pprAr120 OBJECT IDENTIFIER ::= { boards 54 }
pprAr300Lu OBJECT IDENTIFIER ::= { boards 55 }
pprAr300u OBJECT IDENTIFIER ::= { boards 56 }
pprAr310u OBJECT IDENTIFIER ::= { boards 57 }
pprAr350 OBJECT IDENTIFIER ::= { boards 58 }
pprIcmAr021u OBJECT IDENTIFIER ::= { boards 59 }
pprAr720 OBJECT IDENTIFIER ::= { boards 63 }
pprAr010 OBJECT IDENTIFIER ::= { boards 67 }
pprAr012 OBJECT IDENTIFIER ::= { boards 68 }
pprAr011 OBJECT IDENTIFIER ::= { boards 69 }
pprAr370 OBJECT IDENTIFIER ::= { boards 70 }
pprAr330 OBJECT IDENTIFIER ::= { boards 71 }
pprAr395 OBJECT IDENTIFIER ::= { boards 72 }
pprAr390 OBJECT IDENTIFIER ::= { boards 73 }
pprAr370u OBJECT IDENTIFIER ::= { boards 75 }
pprIcmAr020 OBJECT IDENTIFIER ::= { boards 76 }
pprAr740 OBJECT IDENTIFIER ::= { boards 79 }
pprAr140s OBJECT IDENTIFIER ::= { boards 80 }
pprAr140u OBJECT IDENTIFIER ::= { boards 81 }
pprAr160su OBJECT IDENTIFIER ::= { boards 82 }
pprAr320 OBJECT IDENTIFIER ::= { boards 83 }
pprAr130s OBJECT IDENTIFIER ::= { boards 85 }
pprAr130u OBJECT IDENTIFIER ::= { boards 86 }
pprRapier24 OBJECT IDENTIFIER ::= { boards 87 }
pprNsm0404Pic OBJECT IDENTIFIER ::= { boards 88 }
pprA35SXSC OBJECT IDENTIFIER ::= { boards 89 }
pprA35LXSC OBJECT IDENTIFIER ::= { boards 90 }
pprA36MTRJ OBJECT IDENTIFIER ::= { boards 91 }
pprA37VF45 OBJECT IDENTIFIER ::= { boards 92 }
pprA38LC OBJECT IDENTIFIER ::= { boards 93 }
pprA39Tx OBJECT IDENTIFIER ::= { boards 94 }
pprAr740DC OBJECT IDENTIFIER ::= { boards 95 }
pprNsm0418BRI OBJECT IDENTIFIER ::= { boards 96 }
pprRapier16fSC OBJECT IDENTIFIER ::= { boards 97 }
ppr8624xl80 OBJECT IDENTIFIER ::= { boards 98 }
pprRapier16fMT OBJECT IDENTIFIER ::= { boards 99 }
pprRapier16fMTi OBJECT IDENTIFIER ::= { boards 100 }
pprRapier8t8fSC OBJECT IDENTIFIER ::= { boards 101 }
pprRapier8t8fSCi OBJECT IDENTIFIER ::= { boards 102 }
pprRapier8t8fMT OBJECT IDENTIFIER ::= { boards 103 }
pprRapier8t8fMTi OBJECT IDENTIFIER ::= { boards 104 }
pprRapier8fSC OBJECT IDENTIFIER ::= { boards 105 }
pprRapier8fSCi OBJECT IDENTIFIER ::= { boards 106 }
pprRapier8fMT OBJECT IDENTIFIER ::= { boards 107 }
pprRapier8fMTi OBJECT IDENTIFIER ::= { boards 108 }
pprRapierG6 OBJECT IDENTIFIER ::= { boards 110 }
pprRapierG6SX OBJECT IDENTIFIER ::= { boards 111 }
pprRapierG6LX OBJECT IDENTIFIER ::= { boards 112 }
pprRapierG6MT OBJECT IDENTIFIER ::= { boards 113 }
pprRapier16fSCi OBJECT IDENTIFIER ::= { boards 114 }
pprRapier24i OBJECT IDENTIFIER ::= { boards 115 }
pprAr824 OBJECT IDENTIFIER ::= { boards 116 }
pprAr816fSC OBJECT IDENTIFIER ::= { boards 117 }
pprAr816fSCi OBJECT IDENTIFIER ::= { boards 118 }
pprAr816fMT OBJECT IDENTIFIER ::= { boards 119 }
pprAr816fMTi OBJECT IDENTIFIER ::= { boards 120 }
pprAr88t8fSC OBJECT IDENTIFIER ::= { boards 121 }
pprAr88t8fSCi OBJECT IDENTIFIER ::= { boards 122 }
pprAr88t8fMT OBJECT IDENTIFIER ::= { boards 123 }
pprAr88t8fMTi OBJECT IDENTIFIER ::= { boards 124 }
pprAr88fSC OBJECT IDENTIFIER ::= { boards 125 }
pprAr88fSCi OBJECT IDENTIFIER ::= { boards 126 }
pprAr88fMT OBJECT IDENTIFIER ::= { boards 127 }
pprAr88fMTi OBJECT IDENTIFIER ::= { boards 128 }
pprAr824i OBJECT IDENTIFIER ::= { boards 129 }
pprAt8724XL OBJECT IDENTIFIER ::= { boards 130 }
pprAt8748XL OBJECT IDENTIFIER ::= { boards 131 }
pprAt8724XLDC OBJECT IDENTIFIER ::= { boards 132 }
pprAt8748XLDC OBJECT IDENTIFIER ::= { boards 133 }
pprAt8824 OBJECT IDENTIFIER ::= { boards 134 }
pprAt8824DC OBJECT IDENTIFIER ::= { boards 135 }
ppr8724XLDC OBJECT IDENTIFIER ::= { boards 141 }
ppr8748XLDC OBJECT IDENTIFIER ::= { boards 142 }
pprRapier24iDC-NEBS OBJECT IDENTIFIER ::= { boards 144 }
pprAt8724XLDC-NEBS OBJECT IDENTIFIER ::= { boards 146 }
pprAt8848DC OBJECT IDENTIFIER ::= { boards 147 }
pprRapier48 OBJECT IDENTIFIER ::= { boards 148 }
pprAt8848 OBJECT IDENTIFIER ::= { boards 149 }
pprRapier48i OBJECT IDENTIFIER ::= { boards 150 }
pprNsm0424BRI OBJECT IDENTIFIER ::= { boards 151 }
pprIcmAR026 OBJECT IDENTIFIER ::= { boards 153 }
ppr9816GF OBJECT IDENTIFIER ::= { boards 157 }
ppr9812TF OBJECT IDENTIFIER ::= { boards 158 }
pprSbChassis4AC OBJECT IDENTIFIER ::= { boards 159 }
pprSbChassis4DC OBJECT IDENTIFIER ::= { boards 160 }
pprSbChassis8AC OBJECT IDENTIFIER ::= { boards 161 }
pprSbChassis8DC OBJECT IDENTIFIER ::= { boards 162 }
pprSbChassis16AC OBJECT IDENTIFIER ::= { boards 163 }
pprSbChassis16DC OBJECT IDENTIFIER ::= { boards 164 }
pprSbControl OBJECT IDENTIFIER ::= { boards 165 }
pprSbControlDTM OBJECT IDENTIFIER ::= { boards 166 }
pprSb48t OBJECT IDENTIFIER ::= { boards 167 }
pprSb96t OBJECT IDENTIFIER ::= { boards 168 }
pprSb32fSC OBJECT IDENTIFIER ::= { boards 169 }
pprSb32fMT OBJECT IDENTIFIER ::= { boards 170 }
pprSb8fRJ OBJECT IDENTIFIER ::= { boards 172 }
pprSb8fSXSC OBJECT IDENTIFIER ::= { boards 173 }
pprSb8fSXMT OBJECT IDENTIFIER ::= { boards 174 }
pprSb8fLXSC OBJECT IDENTIFIER ::= { boards 175 }
pprSb8fLXMT OBJECT IDENTIFIER ::= { boards 176 }
pprAr410 OBJECT IDENTIFIER ::= { boards 177 }
pprA40SC OBJECT IDENTIFIER ::= { boards 178 }
pprA40MTRJ OBJECT IDENTIFIER ::= { boards 179 }
pprA41SC OBJECT IDENTIFIER ::= { boards 180 }
pprA41MTRJ OBJECT IDENTIFIER ::= { boards 181 }
pprAr725 OBJECT IDENTIFIER ::= { boards 182 }
pprAr745 OBJECT IDENTIFIER ::= { boards 183 }
pprSb8GBIC OBJECT IDENTIFIER ::= { boards 184 }
pprA42GBIC OBJECT IDENTIFIER ::= { boards 185 }
ppr9816GB OBJECT IDENTIFIER ::= { boards 186 }
ppr9812T OBJECT IDENTIFIER ::= { boards 187 }
pprNsm048DS3 OBJECT IDENTIFIER ::= { boards 188 }
pprAr450 OBJECT IDENTIFIER ::= { boards 191 }
pprAr450Dual OBJECT IDENTIFIER ::= { boards 192 }
pprSbExpander OBJECT IDENTIFIER ::= { boards 193 }
pprAr725DC OBJECT IDENTIFIER ::= { boards 194 }
pprAr745DC OBJECT IDENTIFIER ::= { boards 195 }
pprAr410v2 OBJECT IDENTIFIER ::= { boards 196 }
pprAr410v3 OBJECT IDENTIFIER ::= { boards 197 }
pprIcmAr027 OBJECT IDENTIFIER ::= { boards 198 }
ppr8948EX OBJECT IDENTIFIER ::= { boards 202 }
ppr8948MX OBJECT IDENTIFIER ::= { boards 203 }
ppr9816GBDC OBJECT IDENTIFIER ::= { boards 204 }
ppr9812TDC OBJECT IDENTIFIER ::= { boards 205 }
pprIcmAr021v2s OBJECT IDENTIFIER ::= { boards 206 }
pprA50 OBJECT IDENTIFIER ::= { boards 207 }
pprA51 OBJECT IDENTIFIER ::= { boards 208 }
pprA52 OBJECT IDENTIFIER ::= { boards 209 }
pprA53 OBJECT IDENTIFIER ::= { boards 210 }
pprFanA01 OBJECT IDENTIFIER ::= { boards 212 }
pprAtPwr01AC OBJECT IDENTIFIER ::= { boards 213 }
pprAtPwr01DC OBJECT IDENTIFIER ::= { boards 214 }
pprAtFan01 OBJECT IDENTIFIER ::= { boards 215 }
pprSb24RJ OBJECT IDENTIFIER ::= { boards 216 }
pprSb1XFP OBJECT IDENTIFIER ::= { boards 217 }
ppr9924T OBJECT IDENTIFIER ::= { boards 218 }
ppr9924SP OBJECT IDENTIFIER ::= { boards 219 }
ppr9924TEMC OBJECT IDENTIFIER ::= { boards 220 }
ppr9924T4SP OBJECT IDENTIFIER ::= { boards 221 }
pprAR440 OBJECT IDENTIFIER ::= { boards 227 }
pprAR441 OBJECT IDENTIFIER ::= { boards 228 }
pprAR442 OBJECT IDENTIFIER ::= { boards 229 }
pprAR443 OBJECT IDENTIFIER ::= { boards 230 }
pprAR444 OBJECT IDENTIFIER ::= { boards 231 }
pprAR420 OBJECT IDENTIFIER ::= { boards 232 }
pprAt8624T2M OBJECT IDENTIFIER ::= { boards 239 }
pprA46Tx OBJECT IDENTIFIER ::= { boards 240 }
pprAR550 OBJECT IDENTIFIER ::= { boards 241 }
pprAR551 OBJECT IDENTIFIER ::= { boards 242 }
pprAR552 OBJECT IDENTIFIER ::= { boards 243 }
pprC8724MLB OBJECT IDENTIFIER ::= { boards 248 }
pprAt86482SP OBJECT IDENTIFIER ::= { boards 252 }
pprAt8624POE OBJECT IDENTIFIER ::= { boards 253 }
pprAtPwr01RAC OBJECT IDENTIFIER ::= { boards 254 }
pprAtFan01R OBJECT IDENTIFIER ::= { boards 255 }
pprAtPwr02AC OBJECT IDENTIFIER ::= { boards 264 }
pprAtPwr02RAC OBJECT IDENTIFIER ::= { boards 265 }
pprSb24SFP OBJECT IDENTIFIER ::= { boards 269 }
release OBJECT IDENTIFIER ::= { objects 2 }
iftypes OBJECT IDENTIFIER ::= { objects 3 }
ifaceEth OBJECT IDENTIFIER ::= { iftypes 1 }
ifaceSyn OBJECT IDENTIFIER ::= { iftypes 2 }
ifaceAsyn OBJECT IDENTIFIER ::= { iftypes 3 }
ifaceBri OBJECT IDENTIFIER ::= { iftypes 4 }
ifacePri OBJECT IDENTIFIER ::= { iftypes 5 }
ifacePots OBJECT IDENTIFIER ::= { iftypes 6 }
ifaceGBIC OBJECT IDENTIFIER ::= { iftypes 7 }
chips OBJECT IDENTIFIER ::= { objects 4 }
chip68020Cpu OBJECT IDENTIFIER ::= { chips 1 }
chip68340Cpu OBJECT IDENTIFIER ::= { chips 2 }
chip68302Cpu OBJECT IDENTIFIER ::= { chips 3 }
chip68360Cpu OBJECT IDENTIFIER ::= { chips 4 }
chip860TCpu OBJECT IDENTIFIER ::= { chips 5 }
chipRtc1 OBJECT IDENTIFIER ::= { chips 21 }
chipRtc2 OBJECT IDENTIFIER ::= { chips 22 }
chipRtc3 OBJECT IDENTIFIER ::= { chips 23 }
chipRtc4 OBJECT IDENTIFIER ::= { chips 24 }
chipRam1mb OBJECT IDENTIFIER ::= { chips 31 }
chipRam2mb OBJECT IDENTIFIER ::= { chips 32 }
chipRam3mb OBJECT IDENTIFIER ::= { chips 33 }
chipRam4mb OBJECT IDENTIFIER ::= { chips 34 }
chipRam6mb OBJECT IDENTIFIER ::= { chips 36 }
chipRam8mb OBJECT IDENTIFIER ::= { chips 38 }
chipRam12mb OBJECT IDENTIFIER ::= { chips 42 }
chipRam16mb OBJECT IDENTIFIER ::= { chips 46 }
chipRam20mb OBJECT IDENTIFIER ::= { chips 50 }
chipRam32mb OBJECT IDENTIFIER ::= { chips 62 }
chipFlash1mb OBJECT IDENTIFIER ::= { chips 71 }
chipFlash2mb OBJECT IDENTIFIER ::= { chips 72 }
chipFlash3mb OBJECT IDENTIFIER ::= { chips 73 }
chipFlash4mb OBJECT IDENTIFIER ::= { chips 74 }
chipFlash6mb OBJECT IDENTIFIER ::= { chips 76 }
chipFlash8mb OBJECT IDENTIFIER ::= { chips 78 }
chipPem OBJECT IDENTIFIER ::= { chips 120 }
-- System information (sysinfo groups)
-- This part of the MIB contains generic system information. Currently defined groups and variables include:
-- { sysinfo 1 } fanAndPs
-- { sysinfo 2 } restart
-- { sysinfo 3 } cpu
-- { sysinfo 4 } sysTemperature
-- { sysinfo 5 } atrContactDetails
-- { sysinfo 6 } bbrNvs
-- { sysinfo 9 } hostId
-- fanAndPs - this group contains information about the Fan, Power Supply and
-- Temperature status of the router.
fanAndPs OBJECT IDENTIFIER ::= { sysinfo 1 }
fanAndPsRpsConnectionStatus OBJECT-TYPE
SYNTAX INTEGER {
non-supported(0),
connected(1),
not-connected(2),
not-monitoring(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the Redundant Power Supply (RPS) connection,
ie, whether an RPS is actually connected or not, regardless
of whether the RPS is on or not. not-supported means that an
RPS is not supported in this hardware platform, connected
means that the RPS is connected, not-connected means that the
RPS is not connected, and not-monitoring means that the status
of the RPS is not being monitored presently. RPS monitoring can
be turned on via the variable fanAndPsRpsMonitoringStatus, or
by the command SET SYSTEM RPSMONITOR=ON."
::= { fanAndPs 1 }
fanAndPsMainPSUStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2),
faulty(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the main Power Supply. on means that the power supply is present
and fully operational. off means that the power supply is totally off (and
obviously only applies to systems with a redundant power supply). faulty means
that the main power supply is delivering power but that a component of the
power supply is faulty. This applies to systems like SwitchBlade which have 3
power supplies but do not provide individual power supply monitoring. Also,
in the case of SwitchBlade, power supply status includes the status of the fans
in the power supply."
::= { fanAndPs 2 }
fanAndPsRedundantPSUStatus OBJECT-TYPE
SYNTAX INTEGER {
non-supported(0),
on(1),
off(2),
not-monitoring(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the redundant Power Supply. non-supported means
this device does not support redundant power supplies, on
means that the redundant power supply is connected and able
to supply system power if required, off means that the
redundant power supply is either not connected or is connected
and is not able to supply system power if required, and
not-monitoring means that the status of the RPS is not being
monitored presently. RPS monitoring can be turned on via the
variable fanAndPsRpsMonitoringStatus, or by the command
SET SYSTEM RPSMONITOR=ON."
::= { fanAndPs 3 }
fanAndPsRpsMonitoringStatus OBJECT-TYPE
SYNTAX INTEGER {
non-supported(0),
on(1),
off(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current status of redundant power supply monitoring. The
monitoring of the redundant power supply and its fan must be
enabled by command or by setting this variable to on. The value
non-supported means that this device does not support redundant
power supplies. Only the values on or off may be written to this
variable. If this variables reads as non-supported, an attempt to
write to this variable will result in a bad value error."
::= { fanAndPs 4 }
fanAndPsMainFanStatus OBJECT-TYPE
SYNTAX INTEGER {
non-supported(0),
ok(1),
not-ok(2),
warning(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the main Power Supply fan. non-supported means that this
device does not support monitoring on the main power supply fan, or that
there is no main power supply fan. The warning means the fan's speed is
outside 30% of the expected speed."
::= { fanAndPs 5 }
fanAndPsRedundantFanStatus OBJECT-TYPE
SYNTAX INTEGER {
non-supported(0),
ok(1),
not-ok(2),
not-monitoring(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the redundant Power Supply Fan. non-supported means
this device does not support redundant power supplies, ok
means that the redundant power supply fan is running, not-ok means
that the redundant power supply fan is not running, and
not-monitoring means that the status of the RPS is not being
monitored presently. RPS monitoring can be turned on via the
variable fanAndPsRpsMonitoringStatus, or by the command
SET SYSTEM RPSMONITOR=ON."
::= { fanAndPs 6 }
fanAndPsTemperatureStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
not-ok(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of temperature in this device. ok means that the
device is not capable of monitoring temperature or that the
temperature is OK, not-ok means that the temperature is being
monitored and is currently out of the range 0C - 45C."
::= { fanAndPs 7 }
fanAndPsFanTrayPresent OBJECT-TYPE
SYNTAX INTEGER {
non-supported(0),
present(1),
not-present(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the presence of the fan tray in this system. Systems
which do not support a fan tray return the value non-supported. Upon
removal of the fan tray there is a short period (20s) before the value of
this variable is changed to not-present. This is to allow for scheduled
replacement and/or cleaning of the fan tray."
::= { fanAndPs 8 }
fanAndPsFanTrayStatus OBJECT-TYPE
SYNTAX INTEGER {
non-supported(0),
ok(1),
not-ok(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the fan tray in this system. Systems which do not support
a fan tray return the value non-supported. The value ok is returned if all fans
in the fan tray are running at full speed. The value not-ok is returned if
one of more of the fan tray fans is running slow or has stalled."
::= { fanAndPs 9 }
fanAndPsMainMonitoringStatus OBJECT-TYPE
SYNTAX INTEGER {
non-supported(0),
ok(1),
not-ok(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current status of main power supply monitoring. The
monitoring of the main power supply and its fan is always
enabled by those systems that support it. Systems which do
not support main power supply or fan monitoring report a
value of not-supported. The value ok is returned for those
systems that do support main power supply and fan monitoring,
and where the monitoring operation is reporting valid information (refer
to fanAndPsMainFanStatus for the current status of the system).
When main power supply and fan monitoring is failing, the value
not-ok is returned."
::= { fanAndPs 10 }
-- fanAndPsPsuStatusTable - AT8948 specific power supply monitoring.
fanAndPsPsuStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF FanAndPsPsuStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of AT8948 fanAndPsPsuStatusTable. Each entry in the table
represents the status of one of the power supplies in AT8948 system.
Each power supply has its own board ID."
::= { fanAndPs 11 }
fanAndPsPsuStatusEntry OBJECT-TYPE
SYNTAX FanAndPsPsuStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A single entry of AT8948 fanAndPsPsuStatusTable, indexed by
fanAndPsPsuNumber field."
INDEX { fanAndPsPsuNumber }
::= { fanAndPsPsuStatusTable 1 }
FanAndPsPsuStatusEntry ::=
SEQUENCE {
fanAndPsPsuNumber
INTEGER,
fanAndPsPsuPresent
INTEGER,
fanAndPsPsuType
INTEGER,
fanAndPsPsuFan
INTEGER,
fanAndPsPsuTemperature
INTEGER,
fanAndPsPsuPower
INTEGER
}
fanAndPsPsuNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The PSU board identity for which this entry holds. If the system
consists only of a single PSU board, only one entry will appear
in the table, whose index is 1."
::= { fanAndPsPsuStatusEntry 1 }
fanAndPsPsuPresent OBJECT-TYPE
SYNTAX INTEGER{
yes(0),
no (1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The PSU present state, displayed as 'yes' if present, or 'no' if absent."
::= { fanAndPsPsuStatusEntry 2 }
fanAndPsPsuType OBJECT-TYPE
SYNTAX INTEGER{
ac(0),
dc(1),
fan(2),
not-present(3),
not-supported(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The PSU type, displayed as AC, or DC, or FAN, or NOT PRESENT."
::= { fanAndPsPsuStatusEntry 3 }
fanAndPsPsuFan OBJECT-TYPE
SYNTAX INTEGER{
ok(0),
fail(1),
not-present(2),
not-supported(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The PSU fan status, displayed as OK, or FAIL, or NOT PRESENT."
::= { fanAndPsPsuStatusEntry 4 }
fanAndPsPsuTemperature OBJECT-TYPE
SYNTAX INTEGER{
good(0),
high(1),
not-present(2),
not-supported(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The PSU temperature, displayed as GOOD, or HIGH, or NOT PRESENT,
or NOT SUPPORTED."
::= { fanAndPsPsuStatusEntry 5 }
fanAndPsPsuPower OBJECT-TYPE
SYNTAX INTEGER{
good(0),
bad(1),
not-present(2),
not-supported(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The PSU power status, displayed as GOOD, or BAD, or NOT PRESENT
or NOT SUPPORTED."
::= { fanAndPsPsuStatusEntry 6 }
fanAndPsAccelFanStatus OBJECT-TYPE
SYNTAX INTEGER {
non-supported(0),
ok(1),
not-ok(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the accelerator card fans. Non-supported means this
device does not support monitoring of the accelerator card fans."
::= { fanAndPs 12 }
-- fanAndPs traps - traps exist for changes to power supply status, fan status
-- and temperature status.
fanAndPsRpsConnectionTrap TRAP-TYPE
ENTERPRISE fanAndPs
VARIABLES { fanAndPsRpsConnectionStatus }
DESCRIPTION
"Generated when the RPS connection status changes."
::= 1
fanAndPsMainPSUStatusTrap TRAP-TYPE
ENTERPRISE fanAndPs
VARIABLES { fanAndPsMainPSUStatus }
DESCRIPTION
"Generated when the main power supply status changes."
::= 2
fanAndPsRedundantPSUStatusTrap TRAP-TYPE
ENTERPRISE fanAndPs
VARIABLES { fanAndPsRedundantPSUStatus }
DESCRIPTION
"Generated when the RPS status changes."
::= 3
fanAndPsMainFanStatusTrap TRAP-TYPE
ENTERPRISE fanAndPs
VARIABLES { fanAndPsMainFanStatus }
DESCRIPTION
"Generated when the main fan changes status."
::= 4
fanAndPsRedundantFanStatusTrap TRAP-TYPE
ENTERPRISE fanAndPs
VARIABLES { fanAndPsRedundantFanStatus }
DESCRIPTION
"Generated when the redundant fan changes status."
::= 5
fanAndPsTemperatureStatusTrap TRAP-TYPE
ENTERPRISE fanAndPs
VARIABLES { fanAndPsTemperatureStatus }
DESCRIPTION
"Generated when the temperature changes status."
::= 6
fanAndPsFanTrayPresentTrap TRAP-TYPE
ENTERPRISE fanAndPs
VARIABLES { fanAndPsFanTrayPresent }
DESCRIPTION
"Generated when the fan tray presence status changes."
::= 7
fanAndPsFanTrayStatusTrap TRAP-TYPE
ENTERPRISE fanAndPs
VARIABLES { fanAndPsFanTrayStatus }
DESCRIPTION
"Generated when the fan tray status changes."
::= 8
fanAndPsMainMonitoringStatusTrap TRAP-TYPE
ENTERPRISE fanAndPs
VARIABLES { fanAndPsMainMonitoringStatus }
DESCRIPTION
"Generated when the main power supply monitoring status changes."
::= 9
fanAndPsAccelFanStatusTrap TRAP-TYPE
ENTERPRISE fanAndPs
VARIABLES { fanAndPsAccelFanStatus }
DESCRIPTION
"Generated when the accelerator fans' status changes."
::= 10
-- Add the option to restart the router/switch either cold or warm.
restart OBJECT-TYPE
SYNTAX INTEGER {
restart-none(0),
restart-warm(1),
restart-cold(2)
}
ACCESS write-only
STATUS mandatory
DESCRIPTION
"A router/switch restart request.
A management station can remotely instruct an ATI router/switch
to action a warm or cold restart.
Once all the appropriate internal checks have been made, the
router/switch will acknowledge the request via normal SNMP channels.
The restart instruction will be actioned after waiting for a period
of 5 seconds, this is because the SNMP acknowledgement packet needs
time to reach the management station.
Once the request has been actioned, it can not be cancelled and
communication with the router/switch will be lost during system
initialisation."
::= { sysinfo 2 }
-- cpu - this group contains information about the cpu utilisation over different
-- periods of time.
cpu OBJECT IDENTIFIER ::= { sysinfo 3 }
cpuUtilisationMax OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximum CPU utilisation since the router was last restarted.
Expressed as a percentage."
::= { cpu 1 }
cpuUtilisationAvg OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Average CPU utilisation since the router was last restarted.
Expressed as a percentage."
::= { cpu 2 }
cpuUtilisationAvgLastMinute OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Average CPU utilisation over the past minute.
Expressed as a percentage."
::= { cpu 3 }
cpuUtilisationAvgLast10Seconds OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Average CPU utilisation over the past ten seconds.
Expressed as a percentage."
::= { cpu 4 }
cpuUtilisationAvgLastSecond OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Average CPU utilisation over the past second.
Expressed as a percentage."
::= { cpu 5 }
cpuUtilisationMaxLast5Minutes OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximum CPU utilisation over the last 5 minutes.
Expressed as a percentage."
::= { cpu 6 }
cpuUtilisationAvgLast5Minutes OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Average CPU utilisation over the past 5 minutes.
Expressed as a percentage."
::= { cpu 7 }
-- sysTemperature - this group contains information about the temperature monitoring
-- in the system. under this group is a general group, containing generic temperature
-- monitoring variables, and one or more specific groups, which contain variables specific
-- to particular products.
sysTemperature OBJECT IDENTIFIER ::= { sysinfo 4 }
-- This group displays generic system temperature information - the actual
-- temperature, the fixed temperature threshold and an indication the
-- temperature has fallen below the threshold. A particular product may support
-- this information or not. If not the product may have a specific entry for
-- its particular temperature information. A product may also support the
-- generic information and additional specific information.
generalTemperature OBJECT IDENTIFIER ::= { sysTemperature 1 }
generalTemperatureSupported OBJECT-TYPE
SYNTAX INTEGER {
not-supported(0),
supported(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value supported indicates general temperature is displayed by the
device. The value not-supported indicates the device displays specific
temperature information or none at all."
::= { generalTemperature 1 }
generalTemperatureActualTemp OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current temperature of product's base board, in degrees Celsius. A device
which doesn't support this group will return the value 0 for this variable."
::= { generalTemperature 2 }
generalTemperatureStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
not-ok(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of temperature in this device. ok indicates the
temperature is below the threshold temperature or the device
is not capable of monitoring temperature. not-ok indicates the
temperature is being monitored and is currently above the
threshold temperature (displayed in generalTemperatureThreshold)."
::= { generalTemperature 3 }
generalTemperatureThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The temperature threshold for the device. If the
temperature of the device rises above this threshold
generalTemeratureStatus will indicate a not-ok status."
::= { generalTemperature 4 }
-- generalTemperature trap - a trap monitoring changes in the temperature status.
generalTemperatureStatusTrap TRAP-TYPE
ENTERPRISE generalTemperature
VARIABLES { generalTemperatureStatus, generalTemperatureActualTemp, generalTemperatureThreshold }
DESCRIPTION
"Generated when the temperature status of the device changes."
::= 1
-- sbTemperature - SwitchBlade specific temperature monitoring.
sbTemperature OBJECT IDENTIFIER ::= { sysTemperature 2 }
sbTempTable OBJECT-TYPE
SYNTAX SEQUENCE OF SbTempEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of SwitchBlade sysTemperature. Each entry in the table
represents temperature monitoring from one of the CPU cards which
may be present in the SwitchBlade system."
::= { sbTemperature 1 }
sbTempEntry OBJECT-TYPE
SYNTAX SbTempEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A single entry of SwitchBlade sysTemperature"
INDEX { sbTempIndex }
::= { sbTempTable 1 }
SbTempEntry ::=
SEQUENCE {
sbTempIndex
INTEGER,
sbTempActualTemperature
INTEGER,
sbTempFixedThresholdStatus
INTEGER,
sbTempSettableThresholdStatus
INTEGER,
sbTempSettableThreshold
INTEGER
}
sbTempIndex OBJECT-TYPE
SYNTAX INTEGER {
master(1),
slave(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The board for which this temperature entry holds. If the system
consists only of a single CPU board, only one entry will appear
in the table, whose index is master(1)."
::= { sbTempEntry 1 }
sbTempActualTemperature OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The actual SwitchBlade temperature. This temperature is measured
within the SwitchBlade CPU, and is sampled at 1 second intervals."
::= { sbTempEntry 2 }
sbTempFixedThresholdStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
crossover(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The temperature status with regard to the fixed temperature
threshold. The value of the fixed temperature threshold is set at
90 degrees C. This variable represents whether the actual temperature
is above the threshold (value is crossover(2)) or below the threshold
(value is normal(1)). If the temperature is exactly the same as the
fixed temperature threshold, the value of this variable reads as
normal(1)."
::= { sbTempEntry 3 }
sbTempSettableThresholdStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
crossover(2),