-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREPEATER-REV4-MIB
4364 lines (3708 loc) · 128 KB
/
REPEATER-REV4-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
REPEATER-REV4-MIB DEFINITIONS ::= BEGIN
-- repeater-rev4-mib.txt
-- Revision: 2.03.01
-- Part Number: 2170571-01
-- Date: April 17, 1996
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
-- This module provides authoritative definitions for Cabletron's
-- enterprise-specific repeater MIB.
--
-- This module will be extended, as required.
--
-- Cabletron Systems reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Cabletron Systems
-- to determine whether any such changes have been made.
--
-- In no event shall Cabletron Systems be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Cabletron
-- Systems has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Cabletron grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Cabletron products.
-- Copyright August 94 Cabletron Systems
IMPORTS
NetworkAddress, Counter
FROM RFC1155-SMI
DisplayString
FROM RFC1213-MIB
repeaterRev4
FROM CTRON-MIB-NAMES
OBJECT-TYPE
FROM RFC-1212;
-- Textual Conventions
-- DisplayString ::= OCTET STRING
-- This data type is used to model textual information taken from
-- the NVT ASCII character set. By convention, objects with this
-- syntax, unless explicitly stated, are declared as having:
--
-- SIZE (0..255)
-- Repeater Node
-- The following branch in the repeater MIB tree pertains to the repeater
-- as a whole
repeaterrev4 OBJECT IDENTIFIER ::= { repeaterRev4 4 }
-- Repeater Management Object Definitions
rptr OBJECT IDENTIFIER ::= { repeaterrev4 1 }
rptrMgmt OBJECT IDENTIFIER ::= { rptr 1 }
-- This section defines the management objects under the Repeater node.
-- The implementation of this group of objects is mandatory.
rptrMgmtName OBJECT-TYPE
SYNTAX DisplayString (SIZE(20))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ASCII name assigned to this network."
::= { rptrMgmt 1}
rptrMgmtPortCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of ports residing on this lan segment."
::= { rptrMgmt 2}
rptrMgmtPortsEnable OBJECT-TYPE
SYNTAX INTEGER {
noEnable(1),
enable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this object to Enable will cause all the ports
residing in this network segment to be enabled. Setting
this object to noEnable will have no effect. When read
this object will always return noEnable."
::= { rptrMgmt 3 }
rptrMgmtPortsOn OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get the total number of ON ports in this network."
::= { rptrMgmt 4 }
rptrMgmtPortsOper OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get the number of operational ports in this network."
::= { rptrMgmt 5 }
rptrMgmtBoardMap OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get a map of the chassis slots occupied by the boards in
this network."
::= { rptrMgmt 6 }
rptrMgmtInterfaceNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get the MIBII interface number of this network. A return of zero will
mean this network is not associated with a MIBII interface."
::= { rptrMgmt 7 }
rptrMgmtResetCounters OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
reseStaticCounters(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this OID to 2 will reset the 'rptrPktStats', 'rptrProtocols'
and 'rptrFrameSizes' RREV-4 branch static counters. Reading this OID
will always return a 1."
::= { rptrMgmt 8 }
-- Repeater Packet Statistical Object Definitions
rptrStats OBJECT IDENTIFIER ::= { rptr 2 }
-- This section defines the packet statistical objects under the
-- Repeater node.
-- The implementation of this group of objects is mandatory.
rptrPktStats OBJECT IDENTIFIER ::= { rptrStats 1 }
rptrPktStatsPackets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received packets."
::= { rptrPktStats 1 }
rptrPktStatsBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received bytes."
::= { rptrPktStats 2 }
rptrPktStatsColls OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total collisions."
::= { rptrPktStats 3 }
rptrPktStatsErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total errors."
::= { rptrPktStats 4 }
rptrPktStatsAlign OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total frame alignment errors."
::= { rptrPktStats 5 }
rptrPktStatsCRC OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total CRC errors."
::= { rptrPktStats 6 }
rptrPktStatsOOW OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total out-of-window collisions."
::= { rptrPktStats 7 }
rptrPktStatsNoRsc OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This counter is the number of packets on this network that the
hardware has processed that the management has either not seen yet,
in the case of an active network, or has missed missed all
together, in the case of a once active network."
::= { rptrPktStats 8 }
rptrPktStatsBroadcasts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This counter is the number of broadcast packets on this network
that the hardware has processed."
::= { rptrPktStats 9 }
rptrPktStatsMulticasts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This counter is the number of multicast packets on this network
that the hardware has processed."
::= { rptrPktStats 10 }
-- Repeater Protocol Statistical Object Definitions
-- This section defines the protocol statistical objects under the
-- Repeater node. The implementation of this group is optional, but
-- within the group all of the elements are mandatory.
rptrProtocols OBJECT IDENTIFIER ::= { rptrStats 2 }
rptrProtocolsOSI OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received OSI packets."
::= { rptrProtocols 1 }
rptrProtocolsNovell OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received Novell packets."
::= { rptrProtocols 2 }
rptrProtocolsBanyan OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received Banyan packets."
::= { rptrProtocols 3 }
rptrProtocolsDECNet OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received DECNet packets."
::= { rptrProtocols 4 }
rptrProtocolsXNS OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received XNS packets."
::= { rptrProtocols 5 }
rptrProtocolsIP OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received TCP/IP packets."
::= { rptrProtocols 6 }
rptrProtocolsCtron OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received CTRON Management packets."
::= { rptrProtocols 7 }
rptrProtocolsAppletalk OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received Appletalk packets."
::= { rptrProtocols 8 }
rptrProtocolsOther OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received unknown protocol packets."
::= { rptrProtocols 9 }
-- Repeater Frame Size Statistical Object Definitions
rptrFrameSizes OBJECT IDENTIFIER ::= { rptrStats 3 }
-- This section defines the frame size statistical objects under the
-- Repeater node. The implementation of this group is optional,
-- but within the group all of the elements are mandatory.
rptrFrameSzRunt OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received packets of size less than
64 bytes."
::= { rptrFrameSizes 1 }
rptrFrameSz64To127 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received packets of size between
64 and 127 bytes."
::= { rptrFrameSizes 2 }
rptrFrameSz128To255 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received packets of size between
128 and 255 bytes."
::= { rptrFrameSizes 3 }
rptrFrameSz256To511 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received packets of size between
256 and 511 bytes."
::= { rptrFrameSizes 4 }
rptrFrameSz512To1023 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received packets of size between
512 and 1023 bytes."
::= { rptrFrameSizes 5 }
rptrFrameSz1024To1518 OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received packets of size between
1024 and 1518 bytes."
::= { rptrFrameSizes 6 }
rptrFrameSzGiant OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get this repeater's total received packets of size greater
than 1518 bytes."
::= { rptrFrameSizes 7 }
-- Repeater Alarm Object Definitions
rptrAlarms OBJECT IDENTIFIER ::= { rptr 3 }
-- This section defines the alarm objects under the Repeater node.
-- The implementation of this group is optional, but within the group all
-- of the elements are mandatory.
rptrAlarmsTrafEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get returns whether traffic alarms are enabled/disabled.
Set allows for enabling/disabling of traffic alarms."
::= { rptrAlarms 1 }
rptrAlarmsTrafThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The maximum number of packets that will be allowed before
an alarm is generated."
::= { rptrAlarms 2 }
rptrAlarmsCollEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get returns whether collision alarms are enabled/disabled.
Set allows for enabling/disabling of collision alarms."
::= { rptrAlarms 3 }
rptrAlarmsCollThreshold OBJECT-TYPE
SYNTAX INTEGER (1..15)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The collision threshold is the maximum number of collisions
within the time base that will be allowed before an alarm
is generated."
::= { rptrAlarms 4 }
rptrAlarmsErrEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get returns whether error alarms are enabled/disabled.
Set allows for enabling/disabling of error alarms."
::= { rptrAlarms 5 }
rptrAlarmsErrThreshold OBJECT-TYPE
SYNTAX INTEGER (1..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The percentage of errors per good packet within
the timebase that will cause an alarm. The units of this value
is in seconds."
::= { rptrAlarms 6 }
rptrAlarmsErrSource OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get/Set a bit encoded map of which errors to include in the
error sum, as follows:
CRC_errors - Bit 0 - Least Significant Bit
runts - Bit 1
OOW_colls - Bit 2
align_errs - Bit 3
undefined - Bit 4
Giants - Bit 5"
::= { rptrAlarms 7 }
rptrAlarmsAlarmTimebase OBJECT-TYPE
SYNTAX INTEGER (10..999999)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The alarm timebase, in seconds."
::= { rptrAlarms 8 }
rptrAlarmsBroadEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get returns whether broadcast alarms are enabled/disabled.
Set allows for enabling/disabling of broadcast alarms."
::= { rptrAlarms 9 }
rptrAlarmsBroadThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The broadcase threshold represents the maximum number of
broadcasts that are allowed during the time base before an
alarm is generated."
::= { rptrAlarms 10 }
-- Repeater Redundancy Object Definitions
-- Repeater redundancy as a whole is an optional implementation.
-- However, if any group concerning redundancy is implemented, all
-- of the groups involved in the redundancy implementation must be
-- provided.
rptrRedundancy OBJECT IDENTIFIER ::= { rptr 4 }
-- This section defines the redundancy objects under the Repeater node.
rptrRedund OBJECT IDENTIFIER ::= { rptrRedundancy 1 }
rptrRedundReset OBJECT-TYPE
SYNTAX INTEGER {
noReset(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If this object is set to Reset it will cause a reset
of the redundancy object to occur. Setting this
object to NoReset will do nothing. This object will always
be read as NoReset."
::= { rptrRedund 1 }
rptrRedundPollInterval OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get/Set the number of seconds between polls for redundancy."
::= { rptrRedund 2 }
rptrRedundTestTOD OBJECT-TYPE
SYNTAX DisplayString (SIZE(8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get/Set the time of day at which the redundant circuits will
be tested. The format of the time string is hh:mm:ss."
::= { rptrRedund 3 }
rptrRedundPerformTest OBJECT-TYPE
SYNTAX INTEGER {
noTest(1),
test(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If this object is set to Test it will cause a test of the
redundant circuits to be performed. Setting this object to
NoTest will have no effect. When read this object will always
return NoTest."
::= { rptrRedund 4 }
rptrRedundMaxCrcts OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns the maximum number of circuits which may exist on this
network."
::= { rptrRedund 5 }
-- Repeater Redundant Circuit Object Definitions
-- This section defines a table of redundant circuit objects under
-- the Repeater node.
rptrRedundCrctTable OBJECT-TYPE
SYNTAX SEQUENCE OF RptrRedundCrctEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of redundant circuit objects for this repeater."
::= { rptrRedundancy 2 }
rptrRedundCrctEntry OBJECT-TYPE
SYNTAX RptrRedundCrctEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of objects for a particular redundant circuit."
INDEX { rptrRedundCrctId }
::= { rptrRedundCrctTable 1 }
RptrRedundCrctEntry ::=
SEQUENCE {
rptrRedundCrctId
INTEGER,
rptrRedundCrctName
OCTET STRING,
rptrRedundCrctRetrys
INTEGER,
rptrRedundCrctNumBPs
INTEGER,
rptrRedundCrctNumAddr
INTEGER,
rptrRedundCrctAddAddr
NetworkAddress,
rptrRedundCrctDelAddr
NetworkAddress,
rptrRedundCrctEnable
INTEGER,
rptrRedundCrctReset
INTEGER
}
rptrRedundCrctId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns the index for a member circuit in the table of
redundant circuits."
::= { rptrRedundCrctEntry 1 }
rptrRedundCrctName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get/Set the name of the indicated circuit."
::= { rptrRedundCrctEntry 2 }
rptrRedundCrctRetrys OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get/Set the the number of unanswered polls allowed for
the circuit."
::= { rptrRedundCrctEntry 3 }
rptrRedundCrctNumBPs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get the number of board/port combinations associated with
the circuit."
::= { rptrRedundCrctEntry 4 }
rptrRedundCrctNumAddr OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get the number of IP Addresses associated with the circuit."
::= { rptrRedundCrctEntry 5 }
rptrRedundCrctAddAddr OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Add an IP Address to the polling list for the indicated circuit."
::= { rptrRedundCrctEntry 6 }
rptrRedundCrctDelAddr OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Delete an IP Address from the polling list of the indicated
circuit."
::= { rptrRedundCrctEntry 7 }
rptrRedundCrctEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If this object is set to Enable, the circuit is enabled. If
this object is set to Disable, the circuit is disbabled. When
read, this object returns the state of the object based on the
last request made."
::= { rptrRedundCrctEntry 8 }
rptrRedundCrctReset OBJECT-TYPE
SYNTAX INTEGER {
noReset(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If this object is set to Reset, the circuit is reset. All
of the circuit's associated boards and ports are returned to
NOT_USED, any associated IP Addresses are purged from the
circuit's address list, the name is cleared, and the retry
count is reset to a default value. Setting this object to
NoReset has no effect. When read, NoReset is always returned."
::= { rptrRedundCrctEntry 9 }
-- Repeater Redundant Port Object Definitions
-- This section defines a table of redundant port objects under
-- the Repeater node.
rptrRedundPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF RptrRedundPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of redundant port objects for this repeater."
::= { rptrRedundancy 3 }
rptrRedundPortEntry OBJECT-TYPE
SYNTAX RptrRedundPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A redundant port entry containing objects pertaining to
a particular redundant port."
INDEX { rptrRedundPortCrctId, rptrRedundPortId }
::= { rptrRedundPortTable 1 }
RptrRedundPortEntry ::=
SEQUENCE {
rptrRedundPortId
INTEGER,
rptrRedundPortCrctId
INTEGER,
rptrRedundPortNum
INTEGER,
rptrRedundPortBoardNum
INTEGER,
rptrRedundPortType
INTEGER
}
rptrRedundPortId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value identifying an element in a sequence of member
ports which belong to a circuit in the table of redundant
circuits. This value is not a port number; rather it is a value
which goes from 1 to the maximum number of ports which may be
included in a redundant circuit."
::= { rptrRedundPortEntry 1 }
rptrRedundPortCrctId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value identifying a member circuit in the table of
redundant circuits. This value is similar to rptrRedundCrctId."
::= { rptrRedundPortEntry 2 }
rptrRedundPortNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns the port number of a member port belonging to a redundant
circuit."
::= { rptrRedundPortEntry 3 }
rptrRedundPortBoardNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns the board number of a member port belonging to a
redundant circuit."
::= { rptrRedundPortEntry 4 }
rptrRedundPortType OBJECT-TYPE
SYNTAX INTEGER {
notUsed(1),
primary(2),
backup(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Return the state of a port associated with the indicated circuit."
::= { rptrRedundPortEntry 5 }
-- Repeater Redundant IP Address Object Definitions
-- This section defines a table of redundant IP Address objects under
-- the Repeater node. The implementation of this group is optional,
-- but within the group all of the elements are mandatory.
rptrRedundAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF RptrRedundAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of redundant IP Address objects which belong to a circuit
for this repeater."
::= { rptrRedundancy 4 }
rptrRedundAddrEntry OBJECT-TYPE
SYNTAX RptrRedundAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A entry containing objects pertaining to a particular redundant
IP Address which belongs to a circuit."
INDEX { rptrRedundAddrCrctId, rptrRedundAddrId }
::= { rptrRedundAddrTable 1 }
RptrRedundAddrEntry ::=
SEQUENCE {
rptrRedundAddrId
INTEGER,
rptrRedundAddrCrctId
INTEGER,
rptrRedundAddrIPAddr
NetworkAddress
}
rptrRedundAddrId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value identifying an element in a sequence of member
IP Addresses which belong to a circuit in the table of redundant
circuits. This value goes from 1 to the maximum number of IP
Addresses which may be included in a redundant circuit."
::= { rptrRedundAddrEntry 1 }
rptrRedundAddrCrctId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value identifying a member circuit in the table of
redundant circuits. This value is similar to rptrRedundCrctId."
::= { rptrRedundAddrEntry 2 }
rptrRedundAddrIPAddr OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns an IP Address associated with the indicated circuit."
::= { rptrRedundAddrEntry 3 }
-- Repeater Source Address List Object Definitions
-- Repeater Source Addressing List as a whole is an optional implementation.
-- However, if any group of source addressing objects is implemented, the
-- entire set of source addressing object groups must be implemented.
rptrSourceAddress OBJECT IDENTIFIER ::= { rptr 5 }
-- This section defines a table of Source Address List objects under the
-- Repeater node.
rptrSrcAddrListTable OBJECT-TYPE
SYNTAX SEQUENCE OF RptrSrcAddrListEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table defines the source address list that is defined at
the repeater level."
::= { rptrSourceAddress 1 }
rptrSrcAddrListEntry OBJECT-TYPE
SYNTAX RptrSrcAddrListEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Defines a specific source address object."
INDEX { rptrSrcAddrListId }
::= { rptrSrcAddrListTable 1 }
RptrSrcAddrListEntry ::=
SEQUENCE {
rptrSrcAddrListId
INTEGER,
rptrSrcAddrAddressList
OCTET STRING
}
rptrSrcAddrListId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns an index into a table of source address seen by this
repeater."
::= { rptrSrcAddrListEntry 1 }
rptrSrcAddrAddressList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns a source address seen by this repeater."
::= { rptrSrcAddrListEntry 2 }
-- Repeater Source Address Source Object Definitions
-- This section defines a table of Source Address Source objects under
-- the Repeater node.
rptrSrcAddrSrcTable OBJECT-TYPE
SYNTAX SEQUENCE OF RptrSrcAddrSrcTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table defines the list of all source addresses that have been
seen."
::= { rptrSourceAddress 2 }
rptrSrcAddrSrcTableEntry OBJECT-TYPE
SYNTAX RptrSrcAddrSrcTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Describes a particular source address source entry."
INDEX { rptrSrcAddrSrcTableEntryId }
::= { rptrSrcAddrSrcTable 1 }
RptrSrcAddrSrcTableEntry ::=
SEQUENCE {
rptrSrcAddrSrcTableEntryId
OCTET STRING,
rptrSrcAddrSrcTableEntryPort
INTEGER,
rptrSrcAddrSrcTableEntryPortGroup
INTEGER
}
rptrSrcAddrSrcTableEntryId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns the source address to which this table's information
pertains."
::= { rptrSrcAddrSrcTableEntry 1 }
rptrSrcAddrSrcTableEntryPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns the port# of the port that sourced the source address."
::= { rptrSrcAddrSrcTableEntry 2 }
rptrSrcAddrSrcTableEntryPortGroup OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns the port group# of the port that sourced the source address."
::= { rptrSrcAddrSrcTableEntry 3 }
-- Repeater Source Address Source Object Definitions
-- This section defines a table of Source Address Source objects under
-- the Repeater node.
rptrSrcAddrMgmt OBJECT IDENTIFIER ::= { rptrSourceAddress 3 }