This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathELH100-MIB
1839 lines (1585 loc) · 62.3 KB
/
ELH100-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
ELH100-MIB DEFINITIONS ::= BEGIN
-- Cabletron ELH100 Dual-Speed Hub private MIB version 1.0
--
-- Date released:
--
-- Development History
--
-- 1999/3/10 Created.
--
-- This is the Management Information Base for Cabletron ELH100 Dual-Speed Hub
-- systems.
IMPORTS
OBJECT-TYPE FROM RFC-1212
DisplayString, PhysAddress FROM RFC1213-MIB
enterprises, Counter, IpAddress FROM RFC1155-SMI;
cabletron OBJECT IDENTIFIER ::= { enterprises 52 }
cabletronOEM OBJECT IDENTIFIER ::= { cabletron 259 }
cabletronRepeaters OBJECT IDENTIFIER ::= { cabletronOEM 10 }
cabletronELH100 OBJECT IDENTIFIER ::= { cabletronRepeaters 3}
cabletronELH100Common OBJECT IDENTIFIER ::= { cabletronELH100 1 }
cabletronELH100BasicCapability OBJECT IDENTIFIER ::= { cabletronELH100 2 }
cabletronELH100PerfMonCapability OBJECT IDENTIFIER ::= { cabletronELH100 3}
cabletronELH100SwitchCapability OBJECT IDENTIFIER ::= { cabletronELH100 4}
cabletronELH100BackupCapability OBJECT IDENTIFIER ::= { cabletronELH100 5}
cabletronELH100SecurityCapability OBJECT IDENTIFIER ::= { cabletronELH100 6}
-- Common MIB definitions
elh100System OBJECT IDENTIFIER ::= { cabletronELH100Common 1 }
elh100MajorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Software major version"
::= { elh100System 1 }
elh100MinorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Software minor version"
::= { elh100System 2 }
elh100HardwareVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Hardware version of system board"
::= { elh100System 3 }
-- Community Group.
-- The community group is optional. It defines the community strings
-- accepted by the system.
elh100CommunityMgt OBJECT IDENTIFIER ::= { cabletronELH100Common 2 }
elh100CommunityTable OBJECT-TYPE
SYNTAX SEQUENCE OF Elh100CommunityEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Community table"
::= { elh100CommunityMgt 3 }
elh100CommunityEntry OBJECT-TYPE
SYNTAX Elh100CommunityEntry
ACCESS not-accessible
STATUS mandatory
INDEX { elh100CommunityIndex }
::= { elh100CommunityTable 1 }
Elh100CommunityEntry ::= SEQUENCE {
elh100CommunityIndex INTEGER, -- Read only
elh100CommunityRowCreation INTEGER, -- Read write
elh100CommunityString DisplayString, -- Read write
elh100CommunityStatus INTEGER -- Read write
}
elh100CommunityIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index in community table."
::= { elh100CommunityEntry 1 }
elh100CommunityRowCreation OBJECT-TYPE
SYNTAX INTEGER {
valid (1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this row entry. Before add a row into table, it should
be created first. Set Valid(1) to a row will create this row.
To delete a row from this table, set this object for the row to invalid(2).
Row sets for new rows with a row status set to invalid(2) return a BAD
VALUE error. This object will always read as valid(1).
If no more rows can be added to the end of the table, then a row set
to create a new row will return BAD VALUE.
When rows are deleted from this table, the indexes of the other rows
do not change. In other words, this table can be 'sparse' or have
'holes'. Deleted entries can be re-created using a row set with
a row status of valid(1)."
::= { elh100CommunityEntry 2 }
elh100CommunityString OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..20))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The community string that is required for any requests coming
from this host. The default value for this object is 'public'."
::= { elh100CommunityEntry 3 }
elh100CommunityStatus OBJECT-TYPE
SYNTAX INTEGER
{
invalid(1),
readOnly(2),
readWrite(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Access mode of the community."
::= { elh100CommunityEntry 4 }
-- Trap manager group
--
-- The trap manager group is optional. It is used by the agent to
-- define trap managers of the agent. The trap managers are
-- network manager to receive trap or alarm messages from the agent.
-- All network managers that can send correct community is able to
-- obtain information from the device, but only trap managers receive
-- alarm messages. It requires the community group.
elh100TrapManagerMgt OBJECT IDENTIFIER ::= { cabletronELH100Common 3 }
elh100TrapManagerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Elh100TrapManagerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of IP trap destination entries."
::= { elh100TrapManagerMgt 2 }
elh100TrapMgtEntry OBJECT-TYPE
SYNTAX Elh100TrapManagerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A destination entry which defines the IP address to which traps are sent
for a community."
INDEX { elh100TrapMgtIndex }
::= { elh100TrapManagerTable 1 }
Elh100TrapManagerEntry ::= SEQUENCE {
elh100TrapMgtIndex INTEGER,
elh100TrapMgtRowCreation INTEGER,
elh100TrapMgtCommunityString DisplayString,
elh100TrapMgtIpAddress IpAddress
}
elh100TrapMgtIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value that uniquely identifies this IPTrap Entry."
::= { elh100TrapMgtEntry 1 }
elh100TrapMgtRowCreation OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this row entry. Before add a row into table, it should
be created first. Set valid(1) to a row will create this row.
To delete a row from this table, set this object for the row to invalid(2).
Row sets for new rows with a row status set to invalid(2) return a BAD
VALUE error. This object will always read as valid(1).
If no more rows can be added to the end of the table, then a row set
to create a new row will return BAD VALUE.
When rows are deleted from this table, the indexes of the other rows
do not change. In other words, this table can be 'sparse' or have
'holes'. Deleted entries can be re-created using a row set with
a row status of valid(1)."
::= { elh100TrapMgtEntry 2 }
elh100TrapMgtCommunityString OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..20))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A community name to which this destination IP address
belongs."
::= { elh100TrapMgtEntry 3 }
elh100TrapMgtIpAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address to send traps to on behalf of this entry."
::= { elh100TrapMgtEntry 4 }
-- Download Group
--
-- The download group is used to trigger download operation of the
-- agent device to get a new version of software with TFTP protocol
-- from a server computer. The manager can select to upgrade
-- software temporarily or permanently, and to run new software
-- immediately or until next power up
--
elh100DownloadMgt OBJECT IDENTIFIER ::= { cabletronELH100Common 4 }
elh100DownloadServerIP OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION "The file server of the download file"
::= { elh100DownloadMgt 1 }
elh100DownloadFilename OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION "The file name to download"
::= { elh100DownloadMgt 2 }
elh100DownloadMode OBJECT-TYPE
SYNTAX INTEGER {
permanent(1),
temporary(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Permanent upgrade stores download software into permanent
storage of the agent device. Temporary upgrade just put
download software in RAM, often for a test only."
::= { elh100DownloadMgt 3 }
elh100DownloadAction OBJECT-TYPE
SYNTAX INTEGER {
run(1),
noRun(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"elh100DownloadAction triggers the download operation. The run option
starts new software execution after download is complete.
The noRun option does not start new software execution. The
new software will be effective after next restart. Note that
noRun option is useful only when the download is permanent."
::= { elh100DownloadMgt 4}
-- Restart Group
--
-- Restart group is used to reset the agent machine
--
elh100Restart OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "A write to restart the machine. Only three values are
accepted:
normal -- 0,
coldstart -- 1,
warmstart -- 2."
::= { cabletronELH100Common 5 }
-- Dual-Speed Hub Basic Capability
cabletronELH100StackInfo OBJECT IDENTIFIER ::= { cabletronELH100BasicCapability 1 }
stackInusedIP OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address which is in used in the Dual-Speed Hub system. "
::= { cabletronELH100StackInfo 1 }
stackInusedNetMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The subnet mask which is in used in the Dual-Speed Hub system."
::= { cabletronELH100StackInfo 2 }
stackInusedGateway OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The prefered gateway used to send traps."
::= { cabletronELH100StackInfo 3 }
stackBootpIP OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION "The IP address of the BOOTP server that last
responded. If no BOOP server has responded,
then this object will be '0.0.0.0'."
::= { cabletronELH100StackInfo 4 }
stackTemporalIP OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Used to change the IP address of the Dual-Speed Hub system. "
::= { cabletronELH100StackInfo 5 }
stackTemporalNetMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Used to change the subnet mask of the Dual-Speed Hub system. "
::= { cabletronELH100StackInfo 6 }
stackTemporalGateway OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Used to change the prefered gateway to send traps."
::= { cabletronELH100StackInfo 7 }
stackBootpEnable OBJECT-TYPE
SYNTAX INTEGER{
disable-bootp(1),
enable-bootp(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "This object allows the users to enable/disable
generation of BOOTP requests."
::= { cabletronELH100StackInfo 8 }
ipInformationReset OBJECT-TYPE
SYNTAX INTEGER {
noReset(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting the stackIP, stackNetMask,stackGateway,
and stackBootUpIP will not make these parameters take
effect immediately. They will take effect when ipInformationReset is
set to reset(2)."
::= { cabletronELH100StackInfo 9 }
stackHealthMonitor OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (256) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "< FOR cabletronELH100 Dual-Speed Hub DEFINITION : >
There are two kinds of hub :
12 ports need (1+ 12 + 1 + 1 + 1 + 1 +1 +1 +1) 20 bytes
and 24 ports need (1+ 24 + 1 + 1 + 1 + 1 +1 +1 +1) 32 bytes
The maximun size :
256 bytes (total for 8 hubs)=8 hub * (1+ 24 + 1 + 1 + 1 +1 +1 +1 +1) byte
|
byte256 byte255......................byte2 byte1
|
bit7 bit6 ... bit1 bit0
Use the first byte of each hub to indicate whether 20 or 32 bytes is used.
BYTE 1: total number ports of a hub
00001100 : 12 ports
| |
bit7... bit0
00011000 : 24 ports
| |
bit7... bit0
For 12 ports hub
BYTE 2 - 13 : port status for port 1 - 12 port
*BYTE 2 : port status for port 1
bit 0-4 : LED status
bit 0 : link status
0 - no link; 1 - link
bit 1 : partition status
0 - no part.; 1 - part.
bit 2 : port operation status
0 - disabled; 1 - enabled
bit 3-4 : port type status
00 - not present
01 - tenMb
10 - onehundredMb
11 - reserved
bit 5-7 : reserved
BYTE 14-25 :reserved
BYTE 26 : Expansion Port (EP) status1
bit 0-3: EP Type
0000 - not present
0010 - Internal Switch
0011 - External 100Base-TX
0100 - External 100Base-FX(ST)
0101 - External 100Base-FX(SC)
0110 - Internal + External 100Base-TX
0111 - Internal + External 100Base-FX(ST)
1000 - Internal + External 100Base-FX(SC)
1001 - Unknown switch module
1010 - Undertermined
bit 4-7: reserved
BYTE 27 : Expansion Port (EP) status2
bit 0-3 : LED status
bit 0 : 10M port status
0 - disable; 1 - enable
bit 1 : 100M port status
0 - disable; 1 - enable
bit 2 : uplink port status
0 - disable; 1 - enable
bit 3 : Uplink port half/full duplex status
1 - full duplex; 0 - half duplex
bit 4 : EP collision led status
0 - off; 1 - on
bit 5-6 :
bit 3 : tx LED status
0 - off; 1 - tx on
bit 4 : rx LED status
0 - off; 1 - rx on
bit 7-8 : reserved
BYTE 28 : tenMb segment traffic/collision
bit 0-1 : tenMb traffic LED status
00 - no traffic
01 - low traffic
10 - middle traffic
11 - high traffic
bit 2-5 : tenMb collision LED status
0000 - none
0001 - 1 %
0010 - 3 %
0011 - 5 %
0100 - 10 %
0101 - >= 15 %
bit 6-7 : reserved
BYTE 29 : onehundredMb segment traffic/collision /Power/Switch LED status
bit 0-1 : onehundredMb traffic LED status
00 - no traffic
01 - low traffic
10 - middle traffic
11 - high traffic
bit 2-5 : onehundredMb collision LED status
0000 - none
0001 - 1 %
0010 - 3 %
0011 - 5 %
0100 - 10 %
0101 - >= 15 %
bit 6 : Power LED
0 - OFF; 1 - ON
bit 7 : Switch LED
0 - OFF; 1 - ON
BYTE 30 :SNMP agent & switch status
bit 0: internal switch bit
0 - not exist; 1 - exist
bit 1: internal switch status
0 - inactive; 1 - active
bit 2: expension switch bit
0 - bad; 1 - good
bit 3: expension switch status
0 - inactive; 1 - active
bit 4: agent bit
0 - not exist; 1 - exist
bit 5 : master status
0 - Slave; 1 - Master
bit 6 - 7 : reserved
BYTE 31 : Rmon status
bit 0 : rmon bit
0 - not exist; 1 - exist
bit 1 - 2 :rmon segment
00 - all stack
01 - segment tenMb
10 - segment onehundredMb
11 - reserved
bit 3 - 5 : RMON group Status
000 - not-present
001 - disabled
010 - Rmon-4Group
011 - Rmon-7Group
100 - Rmon-all
101 to 111 - reserved
bit 6 -7 : reserved
BYTE 32 : Hub Position(Hub ID)/Bus Termination
bit 0 - 3 : hub position
0000 - invalid
0001 - 1
0010 - 2
0011 - 3
0100 - 4
0101 - 5
0110 - 6
0111 - 7
1000 - 8
1001 to 1111 - reserved
bit 4 : termination status
0 - not end hub
1 - end hub in the stack
bit 5 - 7 : reserved
For 24 ports hub
BYTE 2 - 25 : port status for port 1 - 24 port
*BYTE 2 : port status for port 1
bit 0-4 : LED status
bit 0 : link status
0 - no link; 1 - link
bit 1 : partition status
0 - no part.; 1 - part.
bit 2 : port operation status
0 - disabled; 1 - enabled
bit 3-4 : port type status
00 - not present
01 - tenMb
10 - onehundredMb
11 - reserved
bit 5-7 : reserved
BYTE 26 : Expansion Port (EP) status1
bit 0-3: EP Type
0000 - not present
0010 - Internal Switch
0011 - External 100Base-TX
0100 - External 100Base-FX(ST)
0101 - External 100Base-FX(SC)
0110 - Internal + External 100Base-TX
0111 - Internal + External 100Base-FX(ST)
1000 - Internal + External 100Base-FX(SC)
1001 - Unknown switch module
1010 - Undertermined
bit 4-7: reserved
BYTE 27 : Expansion Port (EP) status2
bit 0-3 : LED status
bit 0 : 10M port status
0 - disable; 1 - enable
bit 1 : 100M port status
0 - disable; 1 - enable
bit 2 : uplink port status
0 - disable; 1 - enable
bit 3 : Uplink port half/full duplex status
1 - full duplex; 0 - half duplex
bit 4 : EP collision led status
0 - off; 1 - on
bit 5-6 :
bit 3 : tx LED status
0 - off; 1 - tx on
bit 4 : rx LED status
0 - off; 1 - rx on
bit 7-8 : reserved
BYTE 28 : tenMb segment traffic/collision
bit 0-1 : tenMb traffic LED status
00 - no traffic
01 - low traffic
10 - middle traffic
11 - high traffic
bit 2-5 : tenMb collision LED status
0000 - none
0001 - 1 %
0010 - 3 %
0011 - 5 %
0100 - 10 %
0101 - >= 15 %
bit 6-7 : reserved
BYTE 29 : onehundredMb segment traffic/collision /Power/Switch LED status
bit 0-1 : onehundredMb traffic LED status
00 - no traffic
01 - low traffic
10 - middle traffic
11 - high traffic
bit 2-5 : onehundredMb collision LED status
0000 - none
0001 - 1 %
0010 - 3 %
0011 - 5 %
0100 - 10 %
0101 - >= 15 %
bit 6 : Power LED
0 - OFF; 1 - ON
bit 7 : Switch LED
0 - OFF; 1 - ON
BYTE 30 :SNMP agent & switch status
bit 0: internal switch bit
0 - not exist; 1 - exist
bit 1: internal switch status
0 - inactive; 1 - active
bit 2: expension switch bit
0 - bad; 1 - good
bit 3: expension switch status
0 - inactive; 1 - active
bit 4: agent bit
0 - not exist; 1 - exist
bit 5 : master status
0 - Slave; 1 - Master
bit 6 - 7 : reserved
BYTE 31 : Rmon status
bit 0 : rmon bit
0 - not exist; 1 - exist
bit 1 - 2 :rmon segment
00 - all stack
01 - segment tenMb
10 - segment onehundredMb
11 - reserved
bit 3 - 5 : RMON group Status
000 - not-present
001 - disabled
010 - Rmon-4Group
011 - Rmon-7Group
100 - Rmon-all
101 to 111 - reserved
bit 6 -7 : reserved
BYTE 32 : Hub Position(Hub ID)/Bus Termination
bit 0 - 3 : hub position
0000 - invalid
0001 - 1
0010 - 2
0011 - 3
0100 - 4
0101 - 5
0110 - 6
0111 - 7
1000 - 8
1001 to 1111 - reserved
bit 4 : termination status
0 - not end hub
1 - end hub in the stack
bit 5 - 7 : reserved"
::= { cabletronELH100StackInfo 10 }
-- Basic Group Object --
-- Def --
cabletronELH100AgentInfo OBJECT IDENTIFIER ::= { cabletronELH100BasicCapability 2 }
nicAttachSegment OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ifIndex of the segment to which the agent's
Ethernet NIC (Network Interface Controller) is connected.
ifIndex 1 is the 100Mbps NIC; ifIndex 2 is the 10Mbps NIC.
The factory setting is ifIndex 1."
::= { cabletronELH100AgentInfo 1 }
serialNumberTable OBJECT-TYPE
SYNTAX SEQUENCE OF SerialNumberEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table defines the unit serial numbers tracked by the agent.
A maximum of 6 serial numbers are tracked."
::= { cabletronELH100AgentInfo 2 }
serialNumberEntry OBJECT-TYPE
SYNTAX SerialNumberEntry
ACCESS not-accessible
STATUS mandatory
INDEX { sNIndex }
::= { serialNumberTable 1 }
SerialNumberEntry ::= SEQUENCE {
sNIndex
INTEGER,
serialNumber
OCTET STRING,
sNCurrentUnitID
INTEGER
}
sNIndex OBJECT-TYPE
SYNTAX INTEGER (1..6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of the serial number being referenced. Indexes are
always sequential, starting with 1."
::= { serialNumberEntry 1 }
serialNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (6))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The serial number. Every ELH100 unit has a unique serial number."
::= { serialNumberEntry 2 }
sNCurrentUnitID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current unit ID of the unit with this serial number. If
the unit with this serial number is not currently in the stack,
this object's value is 255.
If this object does not match sNIndex, it may mean that the unit
has been moved. The configurations in the following tables may
be affected:
backplaneTable
portTable
switchPortTable
backupPortTable
intrusionTable
rptrPortTable (RFC2108)"
::= { serialNumberEntry 3 }
telnetMaxSessions OBJECT-TYPE
SYNTAX INTEGER (0..2)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The maximum number of Telnet sessions that may be
active at one time. The factory setting is 2."
::= { cabletronELH100AgentInfo 3 }
telnetAutoLogoutEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this object to enabled(1) causes the agent to
automatically close Telnet sessions when no activity has occurred
for telnetAutoLogoutTimeout minutes. Setting this object to
disabled(2) disables automatic logout. The factory setting is
enabled(1)."
::= { cabletronELH100AgentInfo 4 }
telnetAutoLogoutTimeout OBJECT-TYPE
SYNTAX INTEGER (1..99)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of minutes of inactivity after which the
agent may automatically close a Telnet session. Telnet auto-logout
is active only when telnetAutoLogoutEnable is set to enabled(1).
The factory setting is 10 minutes."
::= { cabletronELH100AgentInfo 5 }
vT100RefreshInterval OBJECT-TYPE
SYNTAX INTEGER {
seconds5(5),
seconds30(30),
seconds60(60),
seconds120(120),
seconds180(180),
seconds300(300)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The interval for automatic statistics refresh for
VT100 screens. The factory setting is seconds30(30)."
::= {cabletronELH100AgentInfo 6 }
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
--
-- GroupTableInformation
--
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
cabletronELH100gGroupInfo OBJECT IDENTIFIER ::= { cabletronELH100BasicCapability 3 }
groupTable OBJECT-TYPE
SYNTAX SEQUENCE OF GroupEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table defines basic configuration information for each
unit in the stack."
::= { cabletronELH100gGroupInfo 1 }
groupEntry OBJECT-TYPE
SYNTAX GroupEntry
ACCESS not-accessible
STATUS mandatory
INDEX { groupID }
::= { groupTable 1 }
GroupEntry ::= SEQUENCE {
groupID
INTEGER,
groupType
INTEGER,
groupCounterReset
INTEGER,
mgmtModuleStatus
INTEGER,
mgmtModuleDatabaseVersion
OCTET STRING,
switchModuleType
INTEGER,
switchModuleActive
INTEGER
}
groupID OBJECT-TYPE
SYNTAX INTEGER (1..6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The group ID of the group being referenced. Groups are numbered in
top-down order, with the top group being group 1. Attempts to
reference nonexistent groups are rejected with an error-status
of noSuchName(2)."
::= { groupEntry 1 }
groupType OBJECT-TYPE
SYNTAX INTEGER {
notPresent(1),
unknown(2),
elh100-12tx(3), -- 12-port 10/100 repeater
elh100-24tx(4) -- 24-port 10/100 repeater
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of group."
::= { groupEntry 2 }
groupCounterReset OBJECT-TYPE
SYNTAX INTEGER {
noReset(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this object to reset(2) causes the agent to reset all
RFC1757 and RFC2108 counters for all ports on this group. This
object always returns noReset(1) when read. Attempts to set
this object to noReset(1) are rejected with an error-status
of badValue(3)."
::= { groupEntry 3 }
mgmtModuleStatus OBJECT-TYPE
SYNTAX INTEGER {
notPresent(1), -- management module not installed
active(2), -- management module is active agent in stack
standby(3) -- management module is in standby mode
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of this group's management module. Only one management
module in a stack is allowed to act as the active agent. A value
of notPresent(1) indicates that there is no management module in
this group. A value of active(2) means that this group's management
module is acting as the stack's active agent. A value of standby(3)
means that this group contains a management module, but it is not
the active agent."
::= { groupEntry 4 }
mgmtModuleDatabaseVersion OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (64))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The configuration database version number of this managing agent.
If a management module is not present, this object's value is a
zero-length string.
Each management agent contains a database version that is determined
by the version of the agent's firmware. Different firmware versions
MAY or MAY NOT have the same database version number. Usually a
database version number changes only when new features are added.
Database version numbers are used to determine which components
of non-volatile configuration may be synchronized between active
and standby management modules. A component belonging to a higher
(newer) database version may not be present in a lower (older)
database version; in this case, the component will not be updated
in the older database."
::= { groupEntry 5 }
switchModuleType OBJECT-TYPE
SYNTAX INTEGER {
notPresent(1),
unknown(2),
internalSwitch10-100(3),
mediaTX-10-100(4),
mediaFX-SC(5),
mediaFX-ST(6),
switchMediaTX-10-100(7),
switchMediaFX-SC(8),
switchMediaFX-ST(9)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of the switch module."
::= { groupEntry 6 }
switchModuleActive OBJECT-TYPE
SYNTAX INTEGER {
active(1), -- switch is hardware-enabled
notActive(2), -- switch is hardware-disabled