summaryrefslogtreecommitdiff
path: root/MIBS/enterasys/CTRON-TRANSLATION-MIB
blob: 894e6182dd67ab54e758f4533fd68d85a28ed28f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
CTRON-TRANSLATION-MIB DEFINITIONS ::= BEGIN
 
 --  ctron-translation-mib.txt
 --  Revision: 1.02.00
 --  Part Number:
 --  Date: April 26, 1999
 
 
 --  Cabletron Systems, Inc.
 --  35 Industrial Way, P.O. Box 5005
 --  Rochester, NH 03867-0505
 --  (603) 332-9400
 --  support@ctron.com
 
 --
 --  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
       OBJECT-TYPE     FROM RFC-1212
       DisplayString   FROM RFC1213-MIB
       MacAddress      FROM BRIDGE-MIB
       ctTranslation   FROM CTRON-MIB-NAMES;
 
 --  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)
 
 -- MacAddress ::= OCTET STRING (SIZE (6))       a 6 octet
                                              -- address in the
                                              -- "canonical" order
 

 
 ctTransFddiAtm         OBJECT IDENTIFIER ::= { ctTranslation  1 }
 ctTransFddiEthernet    OBJECT IDENTIFIER ::= { ctTranslation  2 }
 ctTransEthernetFddi    OBJECT IDENTIFIER ::= { ctTranslation  3 }
 ctTransRifDb           OBJECT IDENTIFIER ::= { ctTranslation  4 }
 ctTransBcastX          OBJECT IDENTIFIER ::= { ctTranslation  5 }
 ctTransIbmLlc          OBJECT IDENTIFIER ::= { ctTranslation  6 }
 ctTransSr              OBJECT IDENTIFIER ::= { ctTranslation  7 }
 ctTransNovellCfg       OBJECT IDENTIFIER ::= { ctTranslation  8 }
 ctTransIPCfg           OBJECT IDENTIFIER ::= { ctTranslation  9 }
 ctTransA2Cfg           OBJECT IDENTIFIER ::= { ctTranslation 10 }
 ctTransOtherCfg        OBJECT IDENTIFIER ::= { ctTranslation 11 }
 ctTranslfpsCfg         OBJECT IDENTIFIER ::= { ctTranslation 12 }
 

 -- ============================================================================
 -- FDDI/ATM Group 
 --
 -- controls IP fragmentation between FDDI and ATM.
 --
 -- Implementation of this group is optional.
 -- However, if any one element of the group is implemented, the
 -- entire group must be implemented
 -- ============================================================================
         
 ctTransFddiAtmMtu  OBJECT-TYPE
 SYNTAX INTEGER {
     greater1518MTU(1), -- MTU greater than 1518 (1) (default)
        less1518MTU(2)          -- MTU less than 1518 (2)
        }
 ACCESS read-write
 STATUS mandatory
 DESCRIPTION
        "When written with a (1), allows SNAP frames up to 4500 bytes in
        length to be received from the FNB and processed by the ATM SAR
        component. When this object is written with a (1), a value 
        of (1) for the ctTransFddiAtmIPFrag object must be ignored.
 
        When written with a (2), discards any frames received on the FNB
        which are greater than 1518 bytes in length. A 
        value of (2) must be ignored if the frame is IP and the
        ctTransFddiAtmIPFrag object is written with a (1)."
 DEFVAL { greater1518MTU }
 ::= { ctTransFddiAtm 1 }
 
 ctTransFddiAtmIPFrag    OBJECT-TYPE
 SYNTAX INTEGER {
        enable(1),      -- Enable IP Fragmentation
        disable(2)      -- Disable IP Fragmentation
        }
 ACCESS read-write
 STATUS mandatory
 DESCRIPTION
        "When written with a (1), will fragment IP frames from FDDI to
        Ethernet before the frame is processed by the ATM SAR 
        component. This object must be ignored when written with a (1) if the 
        ctTransFddiAtmMtu object is written with a (1).
 
        When written with a (2), discards any frames received on the FNB
        which are greater than 1518 bytes in length. A value of 
        (2) for this object must be ignored if the ctTransFddiAtmMtu
        object is written with a (1)."
 DEFVAL { disable }
 ::= { ctTransFddiAtm 2 }
 
 -- ============================================================================
 -- FDDI/Ethernet Group 
 -- 
 -- controls frame Translation  between FDDI and Ethernet.
 --
 -- Implementation of this group is optional.
 -- However, if any one element of the group is implemented, the
 -- entire group must be implemented
 -- ============================================================================
 
 ctTransFddiEthernetIPFrag      OBJECT-TYPE
 SYNTAX INTEGER {
        enabled(1),      
        disabled(2)              
       }
 ACCESS read-write
 STATUS mandatory
 DESCRIPTION
        "Enables or disables IP fragmentation from FDDI to any/all
        Ethernet interfaces."
   ::= { ctTransFddiEthernet 1  }

 ctTransFddiSnapEthernetType    OBJECT-TYPE
 SYNTAX INTEGER {
        ethernetII(1),
        ethernetSnap(2)
        }        
 ACCESS read-write
 STATUS mandatory
 DESCRIPTION
        "The desired frame type to be translated from FDDI to Ethernet.
        If set to ethernetII(1) all non-IPX frames will be translated
        to ethernetII.  If set to ethernetSnap(2), all non-IPX frames will
        be translated to ethernet_snap."
 DEFVAL { ethernetII }
 ::= { ctTransFddiEthernet 2  }
 
 ctTransFddiEthernetAuto        OBJECT-TYPE
 SYNTAX INTEGER {
        enabled(1),
        disabled(2),             
   notSupported(3)
        }
 ACCESS read-write
 STATUS mandatory
 DESCRIPTION
        "Enables or disables the 'Auto-Learn' Translation feature of
        FDDI to Ethernet frames for the objects below. If enabled, 
        the device will automatically learn the frame type by source 
        address from the Ethernet interfaces. If enabled, IPX FDDI frames 
        destined to a learned source address will be translated to the 
        appropriate frame type. If the Ethernet destination address has 
        not been heard from,  therefore the frame type used is unknown, 
        the device default frame translation for that frame type will be used."
   ::= { ctTransFddiEthernet 3  }
 
 ctTransFddiEthernetSnapIPX     OBJECT-TYPE
 SYNTAX INTEGER {
        ethernetII(1),
        ethernetSnap(2),
        ethernet802dot3(3),
        ethernet802dot3Raw(4)            
        }
 ACCESS read-write
 STATUS mandatory
 DESCRIPTION
        "The desired translation of IPX FDDI SNAP frames to Ethernet."
 ::= { ctTransFddiEthernet 4  }
 
 ctTransFddiEthernet802dot2IPX  OBJECT-TYPE
 SYNTAX INTEGER {
        ethernetII(1),
        ethernetSnap(2),
        ethernet802dot3(3),
        ethernet802dot3Raw(4)
        }
 ACCESS read-write
 STATUS mandatory
 DESCRIPTION
        "The desired translation of IPX FDDI 802.2 frames to Ethernet."
 ::= { ctTransFddiEthernet 5  }
 
 ctTransFddiEthernetMACIPX      OBJECT-TYPE
 SYNTAX INTEGER {
        ethernetII(1),
        ethernetSnap(2),
        ethernet802dot3(3),
        ethernet802dot3Raw(4)
        }
 ACCESS read-write
 STATUS mandatory
 DESCRIPTION
        "The desired translation of IPX FDDI MAC frames to Ethernet."
 ::= { ctTransFddiEthernet 6 }
  
 -- ============================================================================
 -- Ethernet/FDDI Group 
 --
 -- controls frame Translation  between Ethernet and FDDI.
 -- Implementation of this group is optional.
 --
 -- However, if any one element of the group is implemented, the
 -- entire group must be implemented
 -- ============================================================================

 ctTransEthernetFddiRAW         OBJECT-TYPE
 SYNTAX INTEGER {
        fDDI802dot2(1),
        fDDISnap(2),
        fDDIMAC(3)
        }
 ACCESS read-write
 STATUS mandatory
 DESCRIPTION
        "The desired translation of Ethernet802.3 'RAW' frames to FDDI.
        This is a device level object meaning Ethernet 'RAW' frames 
        to any/all FDDI interfaces."
   ::= { ctTransEthernetFddi 1 }

 ctTransEthernetFddiPadVerify OBJECT-TYPE
 SYNTAX INTEGER {
        enabled(1),
        disabled(2),
        not-supported(3)
        }
 ACCESS read-write
 STATUS mandatory
 DESCRIPTION
        "Selects 802.3 length verfication for Ethernet FDDI frame  
        translation. 

        If set to Enabled(1), the device consults the 802.3 length
        field to determine the amount of pad to removed regardless
        of frame size. This setting will cause the device to strip
        unnecessary pad in frames greater than 64 bytes.

        If set to Disabled(2), the default value, the 802.3
        length field is only interpreted if the frame size is
        64 bytes. For frames greater than 64 bytes, it is assumed
        that there is no 802.3 pad in the frame. 

        If set to Not-Supported(3), the device does not support this 
        feature and will only strip pad from ethernet frames that are
        64 bytes in length."
 ::= { ctTransEthernetFddi 2 }

 -- ============================================================================
 -- RIF database group.
 --
 -- Implementation of this group is optional.
 -- However, if any one element of the group is implemented, the entire
 -- group must be implemented
 --
 -- ============================================================================

 ctTransRifDbTable OBJECT-TYPE
         SYNTAX  SEQUENCE OF CtTransRifDbEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A table containing entries of RIF Database."
         ::= { ctTransRifDb 1 }
 
 ctTransRifDbEntry OBJECT-TYPE
         SYNTAX  CtTransRifDbEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "This entry for ctTransRifDbTable."
         INDEX    { ctTransRifDbMacAddr }
         ::= { ctTransRifDbTable 1 }
 
 CtTransRifDbEntry ::=
         SEQUENCE {
             ctTransRifDbMacAddr
                  MacAddress,
             ctTransRifDbSrcPort
                  INTEGER,
             ctTransRifDbLength
                  INTEGER,
             ctTransRifDbRIF
                  DisplayString
         }

 ctTransRifDbMacAddr OBJECT-TYPE
         SYNTAX  MacAddress
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The Mac address of a source station in Cabletron cannonical
       format."
         ::= { ctTransRifDbEntry 1 }
 
 ctTransRifDbSrcPort OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The index of the MIB-II interface that hardware address is learned
              from."
         ::= { ctTransRifDbEntry 2 }
 
 ctTransRifDbLength OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "This object returns the number of bytes of routing information
              associated with this entry."
         ::= { ctTransRifDbEntry 3 }
 
 ctTransRifDbRIF OBJECT-TYPE
         SYNTAX  DisplayString (SIZE (0..16))
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "This returns the routing information associated with an entry."
         ::= { ctTransRifDbEntry 4 }
 
 ctTransRifDbCtrlTable OBJECT-TYPE
         SYNTAX  SEQUENCE OF CtTransRifDbCtrlEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A table containing entries of objects to control RIF database."
         ::= { ctTransRifDb 2 }
 
 ctTransRifDbCtrlEntry OBJECT-TYPE
         SYNTAX  CtTransRifDbCtrlEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "This entry for ctTransRifDbCtrlTable."
         INDEX    { ctTransRifDbCtrlPort }
         ::= { ctTransRifDbCtrlTable 1 }
 
 CtTransRifDbCtrlEntry ::=
         SEQUENCE {
             ctTransRifDbCtrlPort
                  INTEGER,
             ctTransRifDbWeightState
                  INTEGER,
             ctTransRifDbCtrlType
                  INTEGER,
             ctTransRifDbAgingTimer
                  INTEGER
         }

 ctTransRifDbCtrlPort  OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The MIB-II interface number of the port for which this entry
              is administering control over the RIF cache."
         ::= { ctTransRifDbCtrlEntry 1 }

 ctTransRifDbWeightState OBJECT-TYPE
         SYNTAX  INTEGER {
                 notsupported(1),
                 shortestpath(2),
                 quickestpath(3),
                 largestmtu(4),
                 lastseen(5)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "Indicates the type of RIF to be retained in the RIF database.
              shortestPath (2) is the RIF with the least number of hops. The 
                               existing RIF will be replaced if the new RIF 
                               is shorter.
              quickestPath (3) is the 'first seen' RIF.
              largestMTU   (4) is the path that supports the largest frame as
                               indicated by the LF (largest frame bits) in the
                               routing control field (RCF).
              lastSeen     (5) is the 'most recently seen' RIF. 
 
              The default value for this object is device specific."
         ::= { ctTransRifDbCtrlEntry 2 }

 ctTransRifDbCtrlType  OBJECT-TYPE
         SYNTAX  INTEGER {
                 explorer(1),
                 all(2),
                 notsupported(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "Type of RIF to cache. When the explorer option (1) is selected
              the existing RIF may be replaced only if the received frame is 
              an explorer.  When the 'all' option (2) is selected the existing 
              RIF may be replaced for any SR frame received with a valid RIF. 

              Some devices will use this in conjunction with the 
              ctTransRifDbWeightState option to determine which RIFs may be 
              cached.

              The default for this object is product specific."
         ::= { ctTransRifDbCtrlEntry 3 }


ctTransRifDbAgingTimer  OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "The timeout period in seconds for aging out dynamically 
              learned RI Fs.

              The default for this object is product specific."
         ::= { ctTransRifDbCtrlEntry 4 }


 -- ============================================================================
 -- Broadcast Conversion group.
 --
 --
 -- Implementation of this group is optional.
 -- However, if any one element of the group is implemented, the
 -- entire group must be implemented
 -- ============================================================================

 ctTransBcastXTable OBJECT-TYPE
         SYNTAX  SEQUENCE OF CtTransBcastXEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list describing the state of the broadcast conversion for each
              interface on this device. The user will specify two broadcast
              addresses (per interface), one for the media specific interface 
              one for the cannonical format, that the translation state machine
              will provide conversion between. This conversion only acts upon the
              DA of the MAC header when the specified address matches the DA."
         ::= { ctTransBcastX 1 } 

 ctTransBcastXEntry OBJECT-TYPE
         SYNTAX  CtTransBcastXEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list of objects pertaining to the state of broadcast
              conversion for each interface."
         INDEX    { ctTransBcastXPort }
         ::= { ctTransBcastXTable 1 }

 CtTransBcastXEntry ::=
         SEQUENCE {
             ctTransBcastXPort
                  INTEGER,
             ctTransBcastXMode
                  INTEGER,
             ctTransBcastXMedia
                  MacAddress,
             ctTransBcastXCanonical
                  MacAddress
         }

 ctTransBcastXPort OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The MIB-II interface number of the port for which this entry
              is administering broadcast conversion translation."
         ::= { ctTransBcastXEntry 1}

 ctTransBcastXMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object indicates whether the ctTransBcastXMedia and 
              ctTransBcastXCanonical objects pair are valid for this 
              interface."
         ::= { ctTransBcastXEntry 2}

 ctTransBcastXMedia OBJECT-TYPE
         SYNTAX  MacAddress
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object is the media specific broadcast address that this 
              interface will allow translation to/from. This conversion only
              acts upon the DA of the MAC header when the specified address 
              matches the DA." 
         ::= { ctTransBcastXEntry 3}

 ctTransBcastXCanonical OBJECT-TYPE
         SYNTAX  MacAddress
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object is the cannonical broadcast address that this 
              interface will allow translation to/from. This conversion only 
              acts upon the DA of the MAC header when the specified address 
              matches the DA." 
         ::= { ctTransBcastXEntry 4}
 
 -- =========================================================================== 
 -- IBM LLC configuration group.
 --
 -- Normally this group will only be implemented on devices with the
 -- ability to 'remember' the type of network the packet originated 
 -- on.
 --
 -- Implementation of this group is optional.
 -- However, if any one element of the group is implemented, the
 -- entire group must be implemented
 -- =========================================================================== 

 ctTransIbmLlcTable OBJECT-TYPE
         SYNTAX  SEQUENCE OF CtTransIbmLlcEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list describing the state of the
              IBM LLC translation for each interface on this device."
         ::= { ctTransIbmLlc 1 } 

 ctTransIbmLlcEntry OBJECT-TYPE
         SYNTAX  CtTransIbmLlcEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list of objects pertaining to the state of IBM LLC 
              translation for each interface."
         INDEX    { ctTransIbmLlcPort }
         ::= { ctTransIbmLlcTable 1 }

 CtTransIbmLlcEntry ::=
         SEQUENCE {
             ctTransIbmLlcPort
                  INTEGER,
             ctTransIbmLlcNullMode
                  INTEGER,
             ctTransIbmLlcSnaPathMode
                  INTEGER,
             ctTransIbmLlcSnaMode
                  INTEGER,
             ctTransIbmLlcNbMode
                  INTEGER,
             ctTransIbmLlcLnmMode
                  INTEGER,
             ctTransIbmLlcDscMode
                  INTEGER,
             ctTransIbmLlcOtherMode
                  INTEGER,
             ctTransIbmLlcOtherValue
                  INTEGER
         }

 ctTransIbmLlcPort OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The MIB-II interface number of the port for which this entry
              is administering IBM LLC translation."
         ::= { ctTransIbmLlcEntry 1}

 ctTransIbmLlcNullMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2),
                 notsupported(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "IBM networks systems have a special translation called 'IBM
              LLC Encapsulation' which is used for translating IBM LLC
              based protocols between Token Ring and Ethernet Version 2.0 (DIXE) 
              format. This translation does not apply when going between Token 
              Ring and 802.3, since LLC SAPs are maintained. This translation 
              allows connectivity between Token stations separated by an 
              Ethernet segment in an internetwork environment. An Ethernet 
              protocol type of 80 D5 is used to indicate IBM LLC protocol 
              encapsulation.

              When enabled(1) all frames outbound on this token ring port and 
              with an LSAP value of 00 (Null) and where the packet originated 
              on an ethernet network will have the IBM LLC protocol field of 
              five bytes stripped from the packet.

              When disabled(2) the IBM LLC protocol field is untouched on these
              packets.
              
              The default value for this object is product specific. A write of
              notsupported (1) will have no affect."
         ::= { ctTransIbmLlcEntry 2}

 ctTransIbmLlcSnaPathMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2),
                 notsupported(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "IBM networks systems have a special translation called 'IBM
              LLC Encapsulation' which is used for translating IBM LLC based 
              protocols between Token Ring and Ethernet Version 2.0 (DIXE) 
              format. This translation does not apply when going between Token 
              Ring and 802.3, since LLC SAPs are maintained. This translation 
              allows connectivity between Token stations separated by an 
              Ethernet segment in an internetwork environment. An Ethernet 
              protocol type of 80 D5 is used to indicate IBM LLC protocol 
              encapsulation.


              When enabled(1) all frames outbound on this token ring port and 
              with an LSAP value of 04 (SNA path control) and where the packet 
              originated on an ethernet network will have the IBM LLC protocol 
              field of five bytes stripped from the packet.

              When disabled(2) the IBM LLC protocol field is untouched on these
              packets.
              
              The default value for this object is product specific. A write of
              notsupported (1) will have no affect."
         ::= { ctTransIbmLlcEntry 3}

 ctTransIbmLlcSnaMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2),
                 notsupported(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "IBM networks systems have a special translation called 'IBM
              LLC Encapsulation' which is used for translating IBM LLC based 
              protocols between Token Ring and Ethernet Version 2.0 (DIXE) 
              format. This translation does not apply when going between Token 
              Ring and 802.3, since LLC SAPs are maintained. This translation 
              allows connectivity between Token stations separated by an 
              Ethernet segment in an internetwork environment. An Ethernet 
              protocol type of 80 D5 is used to indicate IBM LLC protocol 
              encapsulation.

              When enabled(1) all frames outbound on this token ring port and 
              with an LSAP value of 08 (SNA) and where the packet originated 
              on an ethernet network will have the IBM LLC protocol field of 
              five bytes stripped from the packet.

              When disabled(2) the IBM LLC protocol field is untouched on these
              packets.
              
              The default value for this object is product specific. A write of
              notsupported (1) will have no affect."
         ::= { ctTransIbmLlcEntry 4}

 ctTransIbmLlcNbMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2),
                 notsupported(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "IBM networks systems have a special translation called 'IBM
              LLC Encapsulation' which is used for translating IBM LLC based 
              protocols between Token Ring and Ethernet Version 2.0 (DIXE) 
              format. This translation does not apply when going between Token 
              Ring and 802.3, since LLC SAPs are maintained. This translation 
              allows connectivity between Token stations separated by an 
              Ethernet segment in an internetwork environment. An Ethernet 
              protocol type of 80 D5 is used to indicate IBM LLC protocol 
              encapsulation.


              When enabled(1) all frames outbound on this token ring port and 
              with an LSAP value of F0 (NetBIOS) and where the packet originated 
              on an ethernet network will have the IBM LLC protocol field of 
              five bytes stripped from the packet.

              When disabled(2) the IBM LLC protocol field is untouched on these
              packets.
              
              The default value for this object is product specific. A write of
              notsupported (1) will have no affect."
         ::= { ctTransIbmLlcEntry 5}

 ctTransIbmLlcLnmMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2),
                 notsupported(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "IBM networks systems have a special translation called 'IBM
              LLC Encapsulation' which is used for translating IBM LLC based 
              protocols between Token Ring and Ethernet Version 2.0 (DIXE) 
              format. This translation does not apply when going between Token 
              Ring and 802.3, since LLC SAPs are maintained. This translation 
              allows connectivity between Token stations separated by an 
              Ethernet segment in an internetwork environment. An Ethernet 
              protocol type of 80 D5 is used to indicate IBM LLC protocol 
              encapsulation.


              When enabled(1) all frames outbound on this token ring port and 
              with an LSAP value of F4 (LAN Network Manager) and where the packet 
              originated on an ethernet network will have the IBM LLC protocol 
              field of five bytes stripped from the packet.

              When disabled(2) the IBM LLC protocol field is untouched on these
              packets.
              
              The default value for this object is product specific. A write of
              notsupported (1) will have no affect."
         ::= { ctTransIbmLlcEntry 6}

 ctTransIbmLlcDscMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2),
                 notsupported(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "IBM networks systems have a special translation called 'IBM
              LLC Encapsulation' which is used for translating IBM LLC based 
              protocols between Token Ring and Ethernet Version 2.0 (DIXE) 
              format. This translation does not apply when going between Token 
              Ring and 802.3, since LLC SAPs are maintained. This translation 
              allows connectivity between Token stations separated by an 
              Ethernet segment in an internetwork environment. An Ethernet 
              protocol type of 80 D5 is used to indicate IBM LLC protocol 
              encapsulation.

              When enabled(1) all frames outbound on this token ring port and 
              with an LSAP value of FC (Discovery) will and where the packet 
              originated on an ethernet network will have the IBM LLC protocol 
              field of five bytes stripped from the packet.

              When disabled(2) the IBM LLC protocol field is untouched on these
              packets.
              
              The default value for this object is product specific. A write of
              notsupported (1) will have no affect."
         ::= { ctTransIbmLlcEntry 7}

 ctTransIbmLlcOtherMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2),
                 notsupported(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "IBM networks systems have a special translation called 'IBM
              LLC Encapsulation' which is used for translating IBM LLC based 
              protocols between Token Ring and Ethernet Version 2.0 (DIXE) 
              format. This translation does not apply when going between Token 
              Ring and 802.3, since LLC SAPs are maintained. This translation 
              allows connectivity between Token stations separated by an 
              Ethernet segment in an internetwork environment. An Ethernet 
              protocol type of 80 D5 is used to indicate IBM LLC protocol 
              encapsulation.

              When enabled(1) all frames meeting the following criteria:
                      - outbound on this token ring port 
                      - with an LSAP value matching that found in 
                        ctTransIbmLlcOtherValue
                      - where the packet originated on an ethernet network 
              will have the IBM LLC protocol field of five bytes stripped from 
              the packet.

              When disabled(2) the IBM LLC protocol field is untouched on these
              packets.
              
              The default value for this object is product specific. A write of
              notsupported (1) will have no affect."
         ::= { ctTransIbmLlcEntry 8}

 ctTransIbmLlcOtherValue OBJECT-TYPE
         SYNTAX  INTEGER (0..255)
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object allows the user to select an IBM LLC LSAP value not 
              specified above. 

              When ctTransIbmLlcOtherMode is enabled all frames outbound on this 
              token ring port and providing a match between this value and the 
              outbound packet's LSAP value and where the packet originated on an 
              ethernet network will have the IBM LLC protocol field of five bytes 
              stripped from the packet."
         ::= { ctTransIbmLlcEntry 9}

 -- ============================================================================
 -- Source Route group.
 --
 -- Implementation of this group is optional.
 -- However, if any one element of the group is implemented,
 -- the entire group must be implemented
 --
 -- ============================================================================
 
 ctTransSrTable OBJECT-TYPE
         SYNTAX  SEQUENCE OF CtTransSrEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A table of entries describing the source route
              configuration managed objects."
         ::= { ctTransSr 1 }
 
 ctTransSrEntry OBJECT-TYPE
         SYNTAX  CtTransSrEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list of objects to allow the configuration of source
              route translation information."
         INDEX    { ctTransSrPort }
         ::= { ctTransSrTable 1 }
 
 CtTransSrEntry ::=
         SEQUENCE {
             ctTransSrPort
                  INTEGER,
             ctTransSrIfMode
                  INTEGER,
             ctTransSrExpMode
                  INTEGER,
             ctTransSrIP
                  INTEGER,
             ctTransSrIPX
                  INTEGER,
             ctTransSrNetBIOS
                  INTEGER,
             ctTransSrSNA
                  INTEGER,
             ctTransSrOther 
                  INTEGER,
             ctTransSRLocalSegment 
                  INTEGER,
             ctTransSrSRLF
                  INTEGER,
             ctTransSRAutoRingNumberDetect
                  INTEGER
         }

 ctTransSrPort OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The MIB-II interface number for which this entry
              is administering source route configuration management."
         ::= { ctTransSrEntry 1 }
 
 ctTransSrIfMode   OBJECT-TYPE
         SYNTAX  INTEGER {
                 tp(1),
                 sr(2),
                 srt(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
        DESCRIPTION
             "This object indicates the types of frames (sr,tp or both)
              supported by endstations attached to this interface.
              This information is used by the device to determine
              if sr/tp translation is required. Default is product specific.

              If tp (1) is selected the RIF cacheing mechanism for this port
              will be disabled. That is, the RIF cache database will be 
              emptied and no RIFs will be learned into the database or attached 
              to outbound packets for this port.

              If sr (2) or srt (3) is selected for this object then the RIFs 
              will be learned into the database according to the rules defined 
              in the object ctTransRifDbWeightState and attached as necessary 
              to outbound packets." 
         ::= { ctTransSrEntry 2 }
 
 ctTransSrExpMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 notsupported(1),
                 are(2),
                 ste(3),
                 inboundtype(4)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object selects the type of explorer frame the  SR or SRT
              interface will use, if and when an explorer frame is required. 
              This object is only applicable when ctTransSrIfMode is set to
              sr (2) or srt (3). The requirements will depend on the device
              being managed.
              
              The inboundtype option (4) is supported only on those devices with
              the ability to 'remember' the original state of the arriving 
              explorer packet. When set for this option the device will configure 
              all outbound explorer frames for whichever type of explorer 
              (ARE or STE) it arrived as.

              The default value for this object is product specific. A write of
              notsupported (1) will have no affect."
         ::= { ctTransSrEntry 3 }

 ctTransSrIP   OBJECT-TYPE
         SYNTAX  INTEGER {
                 tp(1),
                 sr(2),
                 auto(3),
                 notsupported(4)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object determines how the sr/tp translation of IP frames 
              of type 'broadcast', 'destination unknown', or 'destination 
              known but IP not previously seen for this end station' should 
              be translated.  This object is only applicable for SRT interfaces.
 
              If tp (1) is selected, the frame is forwarded out the
              SRT interface as a transparent frame.
 
              If sr (2) is selected, the frame is forwarded out
              the srt interface as a source route frame. If this end station
              has never been heard from before an explorer will be launched.
              Which explorer frame (are or ste) is dependent on the object
              ctTransSrExplorerMode defined above.
 
              If auto (3) is selected, the frame is forwarded out the srt
              interface as both a transparent frame and as a source route frame.

              If not supported (4) is selected then the sr/tp translation of these
              types of IP frames will be based on the configuration of the ctTransSrOther
              managed object.
 
              The default value is product specific." 
         ::= { ctTransSrEntry 4 }
 
 ctTransSrIPX   OBJECT-TYPE
         SYNTAX  INTEGER {
                 tp(1),
                 sr(2),
                 auto(3),
                 notsupported(4)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object determines how the sr/tp translation of IPX frames 
              of type `broadcast`, `destination unknown`, or `destination 
              known but IPX not previously seen for this end station` should 
              be translated.  This object is only applicable for SRT interfaces.
 
              If tp (1) is selected, the frame is forwarded out the
              SRT interface as a transparent frame.
 
              If sr (2) is selected, the frame is forwarded out
              the SRT interface as a source route frame. If this end station
              has never been heard from before an explorer will be launched.
              Which explorer frame (are or ste) is dependent on the object
              ctTransSrExplorerMode defined above.
 
              If auto (3) is selected, the frame is forwarded out the SRT
              interface as both a transparent frame and as a source route frame.

              If not supported (4) is selected then the sr/tp translation of these
              types of IPX frames will be based on the configuration of the ctTransSrOther
              managed object.
 
              The default value is product specific."
         ::= { ctTransSrEntry 5 }
 
 ctTransSrNetBIOS    OBJECT-TYPE
         SYNTAX  INTEGER {
                 tp(1),
                 sr(2),
                 auto(3),
                 notsupported(4)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object determines how the sr/tp translation of NetBIOS frames 
              of type `broadcast`, `destination unknown`, or `destination 
              known but NetBIOS not previously seen for this end station` should 
              be translated.  This object is only applicable for SRT interfaces.
 
              If tp (1) is selected, the frame is forwarded out the
              SRT interface as a transparent frame.
 
              If sr (2) is selected, the frame is forwarded out
              the SRT interface as a source route frame. If this end station
              has never been heard from before an explorer will be launched.
              Which explorer frame (ARE or STE) is dependent on the object
              ctTransSrExplorerMode defined above.
 
              If auto (3) is selected, the frame is forwarded out the SRT
              interface as both a transparent frame and as a source route frame.

              If not supported (4) is selected then the sr/tp translation of these
              types of NetBIOS frames will be based on the configuration of the ctTransSrOther
              managed object.
 
              The default value is product specific."
         ::= { ctTransSrEntry 6 }
 
 ctTransSrSNA    OBJECT-TYPE
         SYNTAX  INTEGER {
                 tp(1),
                 sr(2),
                 auto(3),
                 notsupported(4)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object determines how the sr/tp translation of SNA frames 
              of type 'broadcast', 'destination unknown', or 'destination 
              known but SNA not previously seen for this end station' should 
              be translated.  This object is only applicable for SRT interfaces.
 
              If tp (1) is selected, the frame is forwarded out the
              SRT interface as a transparent frame.
 
              If sr (2) is selected, the frame is forwarded out
              the SRT interface as a source route frame. If this end station
              has never been heard from before an explorer will be launched.
              Which explorer frame (ARE or STE) is dependent on the object
              ctTransSrExplorerMode defined above.
 
              If auto (3) is selected, the frame is forwarded out the SRT
              interface as both a transparent frame and as a source route frame.

              If not supported (4) is selected then the sr/tp translation of these
              types of SNA frames will be based on the configuration of the ctTransSrOther
              managed object.
 
              The default value is product specific."
         ::= { ctTransSrEntry 7 }

 ctTransSrOther    OBJECT-TYPE
         SYNTAX  INTEGER {
                 tp(1),
                 sr(2),
                 auto(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object determines how the sr/tp translation of all 'other  
              protocols' is handled. 'other protocols' includes any protocol not 
              mentioned above (i.e. IP,IPX,NetBIOS, or SNA) or any of those 
              mentioned above with the 'not supported' option selected.

              This object applies to any 'other protocol' frame of type 
              'broadcast', 'destination unknown', or 'destination known but 
              'other protocol' not previously seen for this end station'.
              This object is only applicable for SRT interfaces.
 
              If tp (1) is selected, the frame is forwarded out the
              SRT interface as a transparent frame.
 
              If sr (2) is selected, the frame is forwarded out
              the SRT interface as a source route frame. If this end station
              has never been heard from before an explorer will be launched.
              Which explorer frame (ARE or STE) is dependent on the object
              ctTransSrExplorerMode defined above.
 
              If auto (3) is selected, the frame is forwarded out the SRT
              interface as both a transparent frame and as a source route frame.
 
              The default value is product specific."
         ::= { ctTransSrEntry 8 }
 
 ctTransSRLocalSegment OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
            "The segment (ring) number that uniquely identifies the
             segment to which this interface is connected. Current
             source routing protocols limit this value to the
             range: 0 through 4095. (The value 0 is used by
             some management applications for special test
             cases.)
 
             A value of 65535 signifies that no segment number is
             assigned for this interface. The default value is device
             dependent."
          ::= { ctTransSrEntry 9 }

 ctTransSrSRLF OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
            "The maximum size of the INFO field (LLC and
             above) that this interface can send/receive.  It does
             not include any MAC level (framing) octets.  The
             value of this object is used by this device to
             determine whether a modification of the
             LargestFrame (LF) field of the Routing
             Control field of the Routing Information Field is
             necessary.
 
             64 valid values are defined by the IEEE 802.5M SRT
             Addendum: 516, 635, 754, 873, 993, 1112, 1231,
             1350, 1470, 1542, 1615, 1688, 1761, 1833, 1906,
             1979, 2052, 2345, 2638, 2932, 3225, 3518, 3812,
             4105, 4399, 4865, 5331, 5798, 6264, 6730, 7197,
             7663, 8130, 8539, 8949, 9358, 9768, 10178, 10587,
             10997, 11407, 12199, 12992, 13785, 14578, 15370,
             16163, 16956, 17749, 20730, 23711, 26693, 29674,
             32655, 35637, 38618, 41600, 44591, 47583, 50575,
             53567, 56559, 59551, and 65535."
          ::= { ctTransSrEntry 10 }

 ctTransSRAutoRingNumberDetect OBJECT-TYPE
          SYNTAX INTEGER {
             notsupported(1),
             enable(2),
             disable(3)
             }
          ACCESS read-write
          STATUS mandatory
          DESCRIPTION
             "This object enables an interface to automatically detect 
              the source route ring number of the attached ring segment.
              When enabled, the interface wil automatically each time at
              open, configure its ring number with the supplied ring 
              number from the RPS, if present on the ring. Otherwise,
              a default value is used when the interface opens."
         ::= { ctTransSrEntry 11 }

 -- ============================================================================
 -- Novell Configuration group.
 --
 -- Novell translation is typically used on devices with at least
 -- one token ring interface.
 --
 -- Implementation of this group is optional.
 -- However, if any one element of the group is implemented, the
 -- entire group must be implemented
 -- ============================================================================

 ctTransNovellCfgTable OBJECT-TYPE
         SYNTAX  SEQUENCE OF CtTransNovellCfgEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list describing the enabled/disabled state of the
              Novell translation for each interface on this device."
         ::= { ctTransNovellCfg 1 }

 ctTransNovellCfgEntry OBJECT-TYPE
         SYNTAX  CtTransNovellCfgEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list of objects pertaining to the state of Novell
              translation for each interface."
         INDEX    { ctTransNovellCfgPort }
         ::= { ctTransNovellCfgTable 1 }

 CtTransNovellCfgEntry ::=
         SEQUENCE {
             ctTransNovellCfgPort
                  INTEGER,
             ctTransNovellCfgMode
                  INTEGER,
             ctTransNovellGroupMode
                  INTEGER
         }

 ctTransNovellCfgPort OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The MIB-II interface number of the port for which this entry is
              administering Novell configuration management."
         ::= { ctTransNovellCfgEntry 1}

 ctTransNovellCfgMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2),
                 enabledType2(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "Enable this object indicates whether the device will reverse the
              bit ordering of addresses in the Novell header on Novell packets.
              Enable Type 2 indicates the device will reverse the bit ordering
              of addresses for token ring to fddi and no translation for token
              ring to inb in the MAC layer. Disable will not bit reverse any 
              address.  

              The default of this object is enabled."
         ::= { ctTransNovellCfgEntry 2}
 
 ctTransNovellGroupMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2),
                 notsupported(3)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object allows the conversion of group and multicast 
              addresses in the MAC DA of the IPX protocol format. Conversion
              is as follows:
              TR(C0 00 00 80 00 00) and Canonical (FF FF FF FF FF FF).
              TR(C0 00 40 00 00 00) and Canonical (09 00 07 FF FF FF).
              This object is only applicable if the state of ctTransNovellCfgMode 
              is enabled. 

              The default value for this object is product specific. A 
              write of notsupported (3) will have no affect."
         ::= { ctTransNovellCfgEntry 3}

 -- ============================================================================
 -- IP configuration group.
 --
 --
 -- Implementation of this group is optional.
 -- However, if any one element of the group is implemented, the
 -- entire group must be implemented
 -- ============================================================================

 ctTransIPCfgTable OBJECT-TYPE
         SYNTAX  SEQUENCE OF CtTransIPCfgEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list describing the enabled/disabled state of the
              IP translation for each interface on this device."
         ::= { ctTransIPCfg 1 }

 ctTransIPCfgEntry OBJECT-TYPE
         SYNTAX  CtTransIPCfgEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list of objects pertaining to the state of IP
              translation for each interface."
         INDEX    { ctTransIPCfgPort }
         ::= { ctTransIPCfgTable 1 }

 CtTransIPCfgEntry ::=
         SEQUENCE {
             ctTransIPCfgPort
                  INTEGER,
             ctTransIPDataCfgMode
                  INTEGER,
             ctTransIPArpCfgMode
                  INTEGER,
             ctTransIPRarpCfgMode
                  INTEGER
         }

 ctTransIPCfgPort OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The MIB-II interface number of the port for which this entry
              is administering IP configuration management."
         ::= { ctTransIPCfgEntry 1}

 ctTransIPDataCfgMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object indicates whether the device will reverse the bit
              ordering of addresses in the information field of IP data packets
              received and then transmitted on this interface.  
 
              The default of this object is enabled."
         ::= { ctTransIPCfgEntry 2}
 
 ctTransIPArpCfgMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object indicates whether the device will reverse the bit
              ordering of addresses in the information field of ARP packets
              received and then transmitted on this interface. 

              The default of this object is enabled."
         ::= { ctTransIPCfgEntry 3}

 ctTransIPRarpCfgMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object indicates whether the device will reverse the
              bit ordering of addresses in the information field of RARP
              packets received and then transmitted on this interface. 

              The default of this object is enabled."
         ::= { ctTransIPCfgEntry 4}
 
 -- ============================================================================
 -- Appletalk2 configuration group.
 --
 --
 -- Implementation of this group is optional.
 -- However, if any one element of the group is implemented, the
 -- entire group must be implemented
 -- ============================================================================

 ctTransA2CfgTable OBJECT-TYPE
         SYNTAX  SEQUENCE OF CtTransA2CfgEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list describing the enabled/disabled state of the
              Appletalk2 translation for each interface on this device."
         ::= { ctTransA2Cfg 1 }

 ctTransA2CfgEntry OBJECT-TYPE
         SYNTAX  CtTransA2CfgEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list of objects pertaining to the state of Appletalk2 
              translation for each interface."
         INDEX    { ctTransA2CfgPort }
         ::= { ctTransA2CfgTable 1 }

 CtTransA2CfgEntry ::=
         SEQUENCE {
             ctTransA2CfgPort
                  INTEGER,
             ctTransA2DataCfgMode
                  INTEGER,
             ctTransA2ArpCfgMode
                  INTEGER,
             ctTransA2McastCfgMode
                  INTEGER
             }

 ctTransA2CfgPort OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The MIB-II interface number of the port for which this entry is
              administering Appletalk2 configuration management."
         ::= { ctTransA2CfgEntry 1}

 ctTransA2DataCfgMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object indicates whether the device will reverse the
              bit ordering of addresses in the information field of Appletalk2 
              data packets received and then transmitted on this interface.  

              The default of this object is enabled."
         ::= { ctTransA2CfgEntry 2}
 
 ctTransA2ArpCfgMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object indicates whether the device will reverse the
              bit ordering of addresses in the information field of ARP
              packets received and then transmitted on this interface.  
  
              The default of this object is enabled."
         ::= { ctTransA2CfgEntry 3}

 ctTransA2McastCfgMode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object indicates whether the device will reverse the
              bit ordering of addresses in the information field of 
              broadcast/multicast packets received and then transmitted on this 
              interface.  
  
              The default of this object is enabled."
         ::= { ctTransA2CfgEntry 4}

 -- ============================================================================
 -- Other Configuration group
 --
 -- Implementation of this group is optional.
 -- However, if any one element of the group is implemented, the
 -- entire group must be implemented
 -- ============================================================================

 ctTransOtherTable OBJECT-TYPE
         SYNTAX  SEQUENCE OF CtTransOtherEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list describing processing control for subgroups of LLC frames 
              by SAP or SNAP type. This table allows the user to single out 
              selected frame type groups for special handling by the processor 
              (purely intended as a future upgrade path to add protocols that 
              are currently not supported). This list only affects inbound frames 
              and is indexed on a per port basis."
         ::= { ctTransOtherCfg 1 }

 ctTransOtherEntry OBJECT-TYPE
         SYNTAX  CtTransOtherEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "A list of objects pertaining to the processing of subgroups
              of LLC frames by SAP or SNAP type."
         INDEX    { ctTransOtherPort }
         ::= { ctTransOtherTable 1 }

 CtTransOtherEntry ::=
         SEQUENCE {
             ctTransOtherPort
                  INTEGER,
             ctTransOtherUnknownSap
                  INTEGER,
             ctTransOtherUnknownSnap
                  INTEGER,
             ctTransOtherSapDsap1Mode
                  INTEGER,
             ctTransOtherSapDsap1Val 
                  INTEGER,
             ctTransOtherSapDsap2Mode
                  INTEGER,
             ctTransOtherSapDsap2Val
                  INTEGER,
             ctTransOtherSapDsap3Mode
                  INTEGER,
             ctTransOtherSapDsap3Val
                  INTEGER,
             ctTransOtherSnap1Mode
                  INTEGER,
             ctTransOtherSnap1Val 
                  INTEGER,
             ctTransOtherSnap2Mode
                  INTEGER,
             ctTransOtherSnap2Val
                  INTEGER
         }

 ctTransOtherPort OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The MIB-II interface number of the port for which this entry is
              administering  control for subgroups of LLC frames by SAP or 
              SNAP type."
         ::= { ctTransOtherEntry 1}

 ctTransOtherUnknownSap OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object indicates whether any frames with an unrecognized SAP
              will require special translation handling by the processor. A 
              recognized SAP will be specified by the user in one of the 
              previous configuration groups. 

              The default of this object is product specific."
         ::= { ctTransOtherEntry 2}
 
 ctTransOtherUnknownSnap OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object indicates whether frames with an unrecognized SNAP
              will require special translation handling by the processor. A 
              recognized SNAP will be specified by the user in one of the 
              previous configuration groups. 

              The default of this object is product specific."
         ::= { ctTransOtherEntry 3}

 ctTransOtherSapDsap1Mode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object enables(1) or disables (2) the special translation 
              handling of a SAP frame with a DSAP equal to  
              ctTransOtherSapDsap1Val.

              The default of this object is product specific."
         ::= { ctTransOtherEntry 4}
 
 ctTransOtherSapDsap1Val OBJECT-TYPE
         SYNTAX  INTEGER (0..255)
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object allows the user to specify a DSAP value that 
              when matched will require additional translation on frames."
         ::= { ctTransOtherEntry 5}

 ctTransOtherSapDsap2Mode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object enables(1) or disables (2) the special translation 
              handling of a SAP frame with a DSAP equal to  
              ctTransOtherSapDsap2Val.

              The default of this object is product specific."
         ::= { ctTransOtherEntry 6}
 
 ctTransOtherSapDsap2Val OBJECT-TYPE
         SYNTAX  INTEGER (0..255)
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object allows the user to specify a DSAP value that 
              when matched will require additional translation on frames."
         ::= { ctTransOtherEntry 7}

 ctTransOtherSapDsap3Mode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object enables(1) or disables (2) the special translation 
              handling of a SAP frame with a DSAP equal to  
              ctTransOtherSapDsap3Val.

              The default of this object is product specific."
         ::= { ctTransOtherEntry 8}
 
 ctTransOtherSapDsap3Val OBJECT-TYPE
         SYNTAX  INTEGER (0..255)
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object allows the user to specify a DSAP value that 
              when matched will require additional translation on frames."
         ::= { ctTransOtherEntry 9}

 ctTransOtherSnap1Mode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "When enabled (1) this object the value in ctTransOtherSnap1Val 
              will be compared against the protocol values of all SNAP frames 
              received on this interface. A match indicates that the current 
              frame requires special translation handling.

              The default of this object is product specific."
         ::= { ctTransOtherEntry 10}
 
 ctTransOtherSnap1Val OBJECT-TYPE
         SYNTAX  INTEGER (0..65535)
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object allows the user to specify a SNAP value to match 
              against inbound SNAP frames for translation handling." 
         ::= { ctTransOtherEntry 11}

 ctTransOtherSnap2Mode OBJECT-TYPE
         SYNTAX  INTEGER {
                 enabled(1),
                 disabled(2)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "When enabled (1) this object the value in ctTransOtherSnap2Val 
              will be compared against the protocol values of all SNAP frames 
              received on this interface. A match indicates that the current 
              frame requires special translation handling.

              The default of this object is product specific."
         ::= { ctTransOtherEntry 12}

 ctTransOtherSnap2Val OBJECT-TYPE
         SYNTAX  INTEGER (0..65535)
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "This object allows the user to specify a SNAP value to match 
              against inbound SNAP frames for translation handling." 
         ::= { ctTransOtherEntry 13}

 ctTransLfpsTable OBJECT-TYPE
         SYNTAX  SEQUENCE OF CtTransLfpsEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             "This table is for the user to configure the large frame ports
              ability to support large frames. The Large frame port support
              is done on a per port basis. The operation affects outbound 
              frames only."
         ::= { ctTranslfpsCfg 1 }

 ctTransLfpsEntry OBJECT-TYPE
         SYNTAX  CtTransLfpsEntry
         ACCESS  not-accessible
         STATUS  mandatory
         DESCRIPTION
             " A list of objects that pertain to the large frame port
               support table."
         INDEX    { ctTransLfpsPort }
         ::= { ctTransLfpsTable 1 }
            
 CtTransLfpsEntry ::=
         SEQUENCE {
             ctTransLfpsPort
                  INTEGER,
             ctTransLfpsAdminStatus
                  INTEGER,
             ctTransLfpsOperationalStatus
                  INTEGER
          }

 ctTransLfpsPort OBJECT-TYPE
         SYNTAX  INTEGER
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "The MIB-II interface number of the port for which this entry is
              administering  control for subgroups of LLC frames by SAP or
              SNAP type."
         ::= { ctTransLfpsEntry 1}


 ctTransLfpsAdminStatus OBJECT-TYPE
         SYNTAX  INTEGER {
                 large(1),
                 fragment-if-possible(2),
                 small(3),
                 auto(4)
                 }
         ACCESS  read-write
         STATUS  mandatory
         DESCRIPTION
             "When large(1) is the setting all large frames are permissable 
              out that port. fragment_if_possible(2) is used when the outport 
              wants ip frames fragmented before transmission. All other non 
              fragmentable large frames will be transmitted large. small(3)
              requires that no large frames be transmitted out this interface.
              If a frame can be fragmented then it can be transmitted out the 
              interface. auto(4) is a special setting that will allow a device
              to negotiate which of the other three settings to use as the 
              operational mode. 

              The default of this object is product specific."
         ::= { ctTransLfpsEntry 2}

 ctTransLfpsOperationalStatus OBJECT-TYPE
         SYNTAX  INTEGER {
                 large(1),
                 fragment-if-possible(2),
                 small(3)
                 }
         ACCESS  read-only
         STATUS  mandatory
         DESCRIPTION
             "This value represents the current operational mode of the
              interface. The operational mode should reflect what is set in
              the ctTransLfpsAdminStatus object. The only exception is when
              the user sellects a platform mode that is unsupported and if 
              the ctTransLfpsAdminStatus object is set to auto. If the 
              ctTransLfpsAdminStatus object is set to auto then the negotiated
              value will be reflected, which should be one of the above valid
              possibilities.

              The default of this object is product specific."
         ::= { ctTransLfpsEntry 3 }

END