-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOLD-CISCO-SYS-MIB
1043 lines (921 loc) · 38 KB
/
OLD-CISCO-SYS-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
-- *****************************************************************
-- OLD-CISCO-SYS-MIB.my: Cisco System MIB file
--
-- July 1994, Jeffrey T. Johnson
--
-- Copyright (c) 1994-1996 by cisco Systems, Inc.
-- All rights reserved.
--
-- *****************************************************************
--
-- Prior to 10.2, Cisco's lsystem mib group contained a curious
-- assortment of mib objects. For 10.2, in order to allow similar
-- objects to be compiled separately with the mib compiler, the
-- lsystem group was separated into an envmon group (lenv), a cpu
-- group (lcpu), a memory group (lmem), and a system group (lsystem).
-- In order to preserve the OBJECT IDENTIFIERS from release 10.1 to
-- 10.2, however, all four groups are still based at { local 1 }.
-- This is fine from the mib compiler point-of-view, but causes
-- problems for some test tools which don't like the fact that
-- lsystem, lenv, lmem, and lcpu all have the same OBJECT IDENTIFIER.
-- In order to work around this problem, this file exists which
-- is a combination of the four 10.2 "system" mibs, with everything
-- falling under the lsystem group (as it did in 10.1).
--
-- This mib should only be used as a replacement for the four separate
-- system mibs (OLD-CISCO-CPU.my, OLD-CISCO-ENVMON-MIB.my,
-- OLD-CISCO-MEMORY-MIB.my, OLD-CISCO-SYSTEM-MIB.my) in test tool
-- environments. The aforementioned mibs should always be used in
-- code generation
OLD-CISCO-SYS-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
local
FROM CISCO-SMI;
lsystem OBJECT IDENTIFIER ::= { local 1 }
-- Local Variable Section
-- This section describes the local variables within the cisco
-- product line. Groups may or may not be present depending
-- on the software options present in the managed device.
-- Local System Group
-- This group is present in all products.
romId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable contains a printable octet
string which contains the System Bootstrap
description and version identification."
::= { lsystem 1 }
whyReload OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable contains a printable octet
string which contains the reason why the
system was last restarted."
::= { lsystem 2 }
hostName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable represents the name of the
host in printable ascii characters."
::= { lsystem 3 }
domainName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable is the domain portion of the
domain name of the host."
::= { lsystem 4 }
authAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable contains the last SNMP
authorization failure IP address."
::= { lsystem 5 }
bootHost OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the IP address of the host that
supplied the currently running software."
::= { lsystem 6 }
ping OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS obsolete
DESCRIPTION
"The ping mib object is obsolete as of IOS 10.2
It has been superseded by the Cisco Ping MIB"
::= { lsystem 7 }
freeMem OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The freeMem mib object is obsolete as of IOS 11.1
It has been replaced with the cisco memory pool mib"
::= { lsystem 8 }
bufferElFree OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of free buffer
elements."
::= { lsystem 9 }
bufferElMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the maximum number of buffer
elements."
::= { lsystem 10 }
bufferElHit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of buffer element hits."
::= { lsystem 11 }
bufferElMiss OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of buffer element
misses."
::= { lsystem 12 }
bufferElCreate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of buffer element
creates."
::= { lsystem 13 }
bufferSmSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the size of small buffers."
::= { lsystem 14 }
bufferSmTotal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the total number of small buffers."
::= { lsystem 15 }
bufferSmFree OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of free small buffers."
::= { lsystem 16 }
bufferSmMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the maximum number of small
buffers."
::= { lsystem 17 }
bufferSmHit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of small buffer hits."
::= { lsystem 18 }
bufferSmMiss OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of small buffer misses."
::= { lsystem 19 }
bufferSmTrim OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of small buffer trims."
::= { lsystem 20 }
bufferSmCreate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of small buffer
creates."
::= { lsystem 21 }
bufferMdSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the size of medium buffers."
::= { lsystem 22 }
bufferMdTotal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the total number of medium
buffers."
::= { lsystem 23 }
bufferMdFree OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of free medium buffers."
::= { lsystem 24 }
bufferMdMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the maximum number of medium
buffers."
::= { lsystem 25 }
bufferMdHit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of medium buffer hits."
::= { lsystem 26 }
bufferMdMiss OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of medium buffer
misses."
::= { lsystem 27 }
bufferMdTrim OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of medium buffer trims."
::= { lsystem 28 }
bufferMdCreate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of medium buffer
creates."
::= { lsystem 29 }
bufferBgSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the size of big buffers."
::= { lsystem 30 }
bufferBgTotal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the total number of big buffers."
::= { lsystem 31 }
bufferBgFree OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of free big buffers."
::= { lsystem 32 }
bufferBgMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the maximum number of big buffers."
::= { lsystem 33 }
bufferBgHit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of big buffer hits."
::= { lsystem 34 }
bufferBgMiss OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of big buffer misses."
::= { lsystem 35 }
bufferBgTrim OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of big buffer trims."
::= { lsystem 36 }
bufferBgCreate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of big buffer creates."
::= { lsystem 37 }
bufferLgSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the size of large buffers."
::= { lsystem 38 }
bufferLgTotal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the total number of large buffers."
::= { lsystem 39 }
bufferLgFree OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of free large buffers."
::= { lsystem 40 }
bufferLgMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the maximum number of large
buffers."
::= { lsystem 41 }
bufferLgHit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of large buffer hits."
::= { lsystem 42 }
bufferLgMiss OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of large buffer misses."
::= { lsystem 43 }
bufferLgTrim OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of large buffer trims."
::= { lsystem 44 }
bufferLgCreate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of large buffer
creates."
::= { lsystem 45 }
bufferFail OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of buffer allocation
failures."
::= { lsystem 46 }
bufferNoMem OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of buffer create
failures due to no free memory."
::= { lsystem 47 }
netConfigAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Holds the address of the host that supplied
the network-confg file."
::= { lsystem 48 }
netConfigName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Holds the name of the network configuration
file."
::= { lsystem 49 }
netConfigSet OBJECT-TYPE
SYNTAX DisplayString
ACCESS write-only
STATUS mandatory
DESCRIPTION
"Cause the loading of a new network-confg
file using TFTP."
::= { lsystem 50 }
hostConfigAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS obsolete
DESCRIPTION
"Contains the address of the host that
provided the host-config file."
::= { lsystem 51 }
hostConfigName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS obsolete
DESCRIPTION
"Contains the name of the last configured
host-confg file."
::= { lsystem 52 }
hostConfigSet OBJECT-TYPE
SYNTAX DisplayString
ACCESS write-only
STATUS obsolete
DESCRIPTION
"Cause the loading of a new host-confg file
using TFTP."
::= { lsystem 53 }
writeMem OBJECT-TYPE
SYNTAX INTEGER
ACCESS write-only
STATUS mandatory
DESCRIPTION
"Write configuration into non-volatile memory
/ erase config memory if 0."
::= { lsystem 54 }
writeNet OBJECT-TYPE
SYNTAX DisplayString
ACCESS write-only
STATUS mandatory
DESCRIPTION
"Write configuration to host using TFTP."
::= { lsystem 55 }
busyPer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"CPU busy percentage in the last 5 second
period. Not the last 5 realtime seconds but
the last 5 second period in the scheduler."
::= { lsystem 56 }
avgBusy1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"1 minute exponentially-decayed moving
average of the CPU busy percentage."
::= { lsystem 57 }
avgBusy5 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"5 minute exponentially-decayed moving
average of the CPU busy percentage."
::= { lsystem 58 }
idleCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"cisco internal variable. not to be used"
::= { lsystem 59 }
idleWired OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"cisco internal variable. not to be used"
::= { lsystem 60 }
ciscoContactInfo OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"cisco's name and address"
::= { lsystem 61 }
bufferHgSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the size of huge buffers."
::= { lsystem 62 }
bufferHgTotal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the total number of huge buffers."
::= { lsystem 63 }
bufferHgFree OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of free huge buffers."
::= { lsystem 64 }
bufferHgMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the maximum number of huge
buffers."
::= { lsystem 65 }
bufferHgHit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of huge buffer hits."
::= { lsystem 66 }
bufferHgMiss OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of huge buffer misses."
::= { lsystem 67 }
bufferHgTrim OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of huge buffer trims."
::= { lsystem 68 }
bufferHgCreate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the number of huge buffer creates."
::= { lsystem 69 }
netConfigProto OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Holds the protocol that supplied the
network-confg file."
::= { lsystem 70 }
hostConfigProto OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Holds the protocol that supplied the host-
confg file."
::= { lsystem 71 }
sysConfigAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Holds the address of the host that supplied
the system boot image."
::= { lsystem 72 }
sysConfigName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Holds the name of the system boot image."
::= { lsystem 73 }
sysConfigProto OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Holds the protocol that supplied the system
boot image."
::= { lsystem 74 }
sysClearARP OBJECT-TYPE
SYNTAX INTEGER
ACCESS write-only
STATUS mandatory
DESCRIPTION
"Perform a clearing of the entire ARP cache
and invalidation of route caches."
::= { lsystem 75 }
sysClearInt OBJECT-TYPE
SYNTAX INTEGER
ACCESS write-only
STATUS mandatory
DESCRIPTION
"Clear interface given IfIndex as value."
::= { lsystem 76 }
envPresent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Is there an environmental monitor card in
this box?, 0 - No, 1-AGS card present, wrong
firmware, 2-AGS CARD present, firmware ok,
3-7000 support"
::= { lsystem 77 }
envTestPt1Descr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of the test point 1. Typically
ambient air or the temperature of air
entering the router"
::= { lsystem 78 }
envTestPt1Measure OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current value of test point 1. Typically a
temperature in centigrade."
::= { lsystem 79 }
envTestPt2Descr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of the test point 2. Typically
airflow or the temperature of air leaving the
router"
::= { lsystem 80 }
envTestPt2Measure OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current value of test point 2. Typically a
temperature in centigrade."
::= { lsystem 81 }
envTestPt3Descr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of the test point 3. Typically
+5 volt"
::= { lsystem 82 }
envTestPt3Measure OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current value of test point 3. Typically the
value in millivolts of the +5v supply"
::= { lsystem 83 }
envTestPt4Descr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of the test point 4. Typically
+12 volt"
::= { lsystem 84 }
envTestPt4Measure OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current value of test point 4. Typically the
value in millivolts of the +12v supply"
::= { lsystem 85 }
envTestPt5Descr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of the test point 5. Typically
-12 volt"
::= { lsystem 86 }
envTestPt5Measure OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current value of test point 5. Typically the
value in millivolts of the -12v supply"
::= { lsystem 87 }
envTestPt6Descr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of the test point 6. Typically
-5 volt"
::= { lsystem 88 }
envTestPt6Measure OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current value of test point 6. Typically the
value in millivolts of the -5v supply"
::= { lsystem 89 }
envTestPt1MarginVal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value at which the router will shutdown.
Typically the ambient air temperature that
will shut the router down. (e.g. 43)"
::= { lsystem 90 }
envTestPt2MarginVal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value at which the router will shutdown.
Typically the airflow air temperature that
will shut the router down. (e.g. 58)"
::= { lsystem 91 }
envTestPt3MarginPercent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"+/- Percentage that will shut the router
down, (e.g. 10%) typically +5 volt"
::= { lsystem 92 }
envTestPt4MarginPercent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"+/- Percentage that will shut the router
down, (e.g. 15%) typically +12 volt"
::= { lsystem 93 }
envTestPt5MarginPercent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"+/- Percentage that will shut the router
down, (e.g. 15%) typically -12 volt"
::= { lsystem 94 }
envTestPt6MarginPercent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"+/- Percentage that will shut the router
down, (e.g. 10%) typically -5 volt"
::= { lsystem 95 }
envTestPt1last OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value of TestPt1 when last shutdown
occurred."
::= { lsystem 96 }
envTestPt2last OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value of TestPt2 when last shutdown
occurred."
::= { lsystem 97 }
envTestPt3last OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value of TestPt3 when last shutdown
occurred."
::= { lsystem 98 }
envTestPt4last OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value of TestPt4 when last shutdown
occurred."
::= { lsystem 99 }
envTestPt5last OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value of TestPt5 when last shutdown
occurred."
::= { lsystem 100 }
envTestPt6last OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value of TestPt6 when last shutdown
occurred."
::= { lsystem 101 }
envTestPt1warn OBJECT-TYPE
SYNTAX INTEGER {
warning(1),
noWarning(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Is this test point at a warning level?"
::= { lsystem 102 }
envTestPt2warn OBJECT-TYPE
SYNTAX INTEGER {
warning(1),
noWarning(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Is this test point at a warning level?"
::= { lsystem 103 }
envTestPt3warn OBJECT-TYPE
SYNTAX INTEGER {
warning(1),
noWarning(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Is this test point at a warning level?"
::= { lsystem 104 }
envTestPt4warn OBJECT-TYPE
SYNTAX INTEGER {
warning(1),
noWarning(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Is this test point at a warning level?"
::= { lsystem 105 }
envTestPt5warn OBJECT-TYPE
SYNTAX INTEGER {
warning(1),
noWarning(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Is this test point at a warning level?"
::= { lsystem 106 }
envTestPt6warn OBJECT-TYPE
SYNTAX INTEGER {
warning(1),
noWarning(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Is this test point at a warning level?"
::= { lsystem 107 }