summaryrefslogtreecommitdiff
path: root/MIBS/nokia/ITF-MIB-EXT
blob: 4e323b10d2d967210fc24f36b09917f213d65925 (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
ITF-MIB-EXT DEFINITIONS ::= BEGIN

-- ===========================================================================
--  This specification is published by Alcatel under Non-Disclosure
--  Agreement(s) (NDA) with specific parties and has to be considered as
--  Confidential Information as defined in such NDA.
--  Alcatel reserves the right to revise this document for any reason,
--  including but not limited to conformity with standards promulgated by
--  various agencies, utilisation of advances in the state of the technical
--  areas, or the reflection of changes in the design of any equipment,
--  techniques, or procedures described or referred to herein.
--  The product specifications and other technical or performance information
--  contained herein are subject to change without notice.
--  Updates of this document will be issued under the above NDA's.
--  Alcatel makes no representation or warranty, expressed or implied, with
--  respect to the sufficiency, accuracy, or utility of any information or
--  opinion contained herein. Alcatel expressly advises that any use of for 
--  any purpose or reliance upon this technical reference is at the risk of
--  the user and that Alcatel shall not be liable for any damage or injury
--  incurred by any person arising out of the sufficiency, accuracy, or
--  utility of any information or opinion contained herein.
--  This document is not to be construed as a suggestion to any manufacturer
--  to modify or change any of its products, nor does this document represent
--  any commitment by Alcatel to sell or purchase any product.
--  Nothing contained herein shall be construed as conferring by implication,
--  estoppel, or otherwise any license or right under any patent, whether or
--  not the use of any information herein necessarily employs an invention of
--  any existing or later issued patent.
--  Alcatel reserves the right not to offer any or all of these products and
--  to withdraw any or all of them at any future time.
-- Copyright (C) 2004, Alcatel. All Rights Reserved.
-- ===========================================================================

--  MODULE IDENTITY
--  LAST-UPDATED "201609160000Z"
--  ORGANIZATION "Alcatel-Lucent"
--  CONTACT-INFO "email:asam.mibsupport@alcatel-lucent.com"
--  DESCRIPTION
--     "Alcatel proprietary extensions to the Interface MIB."
--
--  REVISION "201709210000Z"
--  DESCRIPTION
--      Editor: Marita Saveyn
--      Reason for change: RCR ALU02361918 - BT - timer on the relay of the RFLT-E
--      Change:
--      asamLluRelayActionTimer: must have range 0..864000
--
--
--  REVISION "201709130000Z"
--  DESCRIPTION
--      Editor: Marita Saveyn
--      Reason for change: RCR ALU02361918 - BT - timer on the relay of the RFLT-E
--      Change:
--      1. asamLluRelayActionTime: must have range 0..864000, and default 50
--
--  REVISION "201708180000Z"
--  DESCRIPTION
--      Editor: Alfredo Alvarez
--      Reason for change: RCR ALU02361918 - BT - timer on the relay of the RFLT-E
--      Change:
--      1. Added asamLluRelayActionTimer
--
--  REVISION "201707200000Z"
--  DESCRIPTION
--      Editor: Alfredo Alvarez
--      Reason for change: RCR ALU02361918 - BT - timer on the relay of the RFLT-E
--      Change:
--      1. Added 'disconnectTimed' to the list of possible relay status
--      2. Added asamLluRelayOperStatus and asamLluRelayActionTime
--
--  REVISION "201609160000Z"
--  DESCRIPTION
--      Version: 3EC36485EDAA_V5.6.0.0.0
--      Editor : Ravichandran P
--      Reason for Change: RCR ALU02254841- NNI support on NDLT-G
--      Change : Added New Table asamIfPortTypeTable. 
--
--  REVISION "201510150000Z"
--  DESCRIPTION
--     "Version: 3EC36485EDAA_V5.3.0.0.0
--      Editor: Rommy Volders 
--      Reason for change: ALU02136586
--      Change: Add extra value for asamLluRelayStatus.
--
--  REVISION "201410080000Z"
--  DESCRIPTION
--      Editor: Siva Sankar 
--      Reason for change: Updated based on review comments for REVISION "201410030000Z"
--      Change: 1. Changed the order of new tables asamIfIndexToExtIfIndexMappingTable
--		and asamExtIfIndexToIfIndexMappingTable.
--		2. Gauge type is used instead of INTEGER for ExtIfIndex identifiers.
--
--  REVISION "201410030000Z"
--  DESCRIPTION
--      Editor: Siva Sankar 
--      Reason for change: 3HH-11754-AGAB-DFZZA, Extended Inteface Index Support 
--      Change: Added new Tables asamIfIndexToExtIfIndexMappingTable
--		and asamExtIfIndexToIfIndexMappingTable 
--
--  REVISION "201304250000Z"
--  DESCRIPTION
--     "Version: 3EC36485EDAA_V4.6.0.0.0
--      Editor: Balagopal Velusamy 
--      Reason for change: ALU00204502, EFM Inteface Counter Support 
--      Change: Added new Table asamIfExtCounterSupportTable 
--              Indicates supported  counters for an Interface.
--
--  REVISION "201304250000Z"
--  DESCRIPTION
--     "Version: 3EC36485EDAA_V4.6.0.0.0
--      Editor:  Karel Meijfroidt
--      Reason for change: ALU01815260, Alarm Mechanism Improvement
--      Change: change the RANGE in the description of
--              the asamIfExtAlmReportingSeverityDefault.
--
--  REVISION "2012101111200Z"
--  DESCRIPTION
--     "Version: 3EC15505EAAA_V4.5.0.0.0
--     Editor: Ludwig Pauwels
--     Changes:
--     * Remove LLU Relay Status Table.
--
--  REVISION "201206071200Z"
--  DESCRIPTION
--     "Version: 3EC15505EAAA_V4.4.4.0.0
--     Editor: Ludwig Pauwels
--     Changes:
--     * Addition of LLU Relay Status Table.
--
--  REVISION "20080108200Z"
--  DESCRIPTION
--     "Version: 3EC15506EAAA_V3.5.0.0.0
--     Editor: Xia Hui
--     Changes: Add one values for asamItfMetallicTestTypes and four values for asamItfMetallicTestCodes
--     *asamItfMetallicTestResetTimer 
--     *asamItfLineAdminOperAbnormal 
--     *asamItfLineAnotherLineTestInProgress 
--     *asamItfTestNotPossible
--     *asamItfLineBusy
--
--  REVISION "20060621200Z"
--  DESCRIPTION
--     "Version: 3EC15506EAAA_V3.5.0.0.0
--     Editor: Liu Jie
--     Changes: Add two values for asamItfMetallicTestTypes 
--         * asamItfMetallicTestInwardOnly 
--         * asamItfMetallicTestOutwardOnly 
--
--  REVISION "20060529200Z"
--  DESCRIPTION
--     "Version: 3EC15506EAAA_V3.2.0.0.0
--     Editor: Sven Dhuyvetter
--     Changes: BDFhw36810: Open SNMP
--
--  REVISION "20060323200Z"
--  DESCRIPTION
--     "Version: 3EC15505EAAA_V3.1.0.0.0
--     Editor: Ma liya
--     Changes:
--     * Extend Customer Id length to support a maximum of 64 characters."
--
--  REVISION "200601231200Z"
--  DESCRIPTION
--     "Version: 3EC15506EAAA_V2.4.0.0.0
--      Editor: Bart Bogaert
--      Changes: Implemented BDFhw70643: strict syntax checks (smilint)"
--
--  REVISION "200506151200Z"
--  DESCRIPTION
--     "Version: 3EC15505EAAA_V2.3.1.0.0
--     Editor: Pradeep Hosaritthi
--     Changes:
--     * Addition of LLU Relay Status Table."
--
--  REVISION "200404081200Z"
--  DESCRIPTION
--     "Version: 3EC15506EAAA_E1.1.0.0 
--      Editor: Rafael Van Driessche 
--      Changes: addition of asamIfExtIfSpecific."
--
--  REVISION "200401121200Z"
--  DESCRIPTION
--     "Version: 3EC15506EAAA_E1.0.0.0 
--      Editor: Rafael Van Driessche 
--      Changes: revision for iSAM with only editorial changes."
--
--  REVISION "200205131200Z"
--  DESCRIPTION
--     "Version: 3EC15506AAAA_E5.0.0.1
--      Editor: Frank Devolder
--      Changes:
--      * object asamPhyItfChangeOccurredTrapEnable obsoleted (BDFaa44804)."
--
--  REVISION "200106031200Z"
--  DESCRIPTION
--     "Version: 3EC15506AAAA_E5.0.0.0
--      Editor: Frank Devolder
--      Changes:
--      * add asamShelfPhyItfSummaryTable to support hierarchical summary
--        bitmaps for physical interfaces and make ASAM-level interface
--        bitmaps obsolete."
--
--  REVISION "200011161200Z"
--  DESCRIPTION
--     "Version 3EC15506AAAA_E4.2.0.0
--      Editor: Dominic Chorafakis
--      Changes:
--      * Documenting MAX_PIF size for R4.2: 24 line boards with IMA."
--
--  REVISION "200007111200Z"
--  DESCRIPTION
--     "Version: TBC
--      Editor: H. Dedecker
--      Changes:
--      * ITF_MIB_EXT extended with line test (BDFaa26075)."
--
--  REVISION "199907081200Z"
--  DESCRIPTION
--     "Version: 3EC15506AAAA_R2.0.1
--      Editor: K. Van Eynde
--      Changes:
--      * AsamItfSeverityFilterType extended with noAlarms (BDFaa18947)."
--
--  REVISION "199904301200Z"
--  DESCRIPTION
--     "Version: 3EC15506AAAA_R2.0.0
--      Editor: K. Van Eynde
--      Changes: updates to supporte severity per line feature:
--      * define new type AsamItfSeverityFilterType
--      * extend AsamIfExtEntry with new column asamIfExtAlmReportingSeverity
--      * add table asamIfExtAlmReportingSeverityDefaultTable for default
--        severity per interface type."

-- ===========================================================================

   IMPORTS OBJECT-TYPE               FROM RFC-1212
           DisplayString             FROM RFC1213-MIB
           Counter, Gauge            FROM RFC1155-SMI
           asam                      FROM SYSTEM-MIB
           ifIndex, InterfaceIndex   FROM ITF-MIB
           IANAifType                FROM IANAifType-MIB
           AsamAlarmSeverityType     FROM ASAM-ALARM-MIB
           eqptHolderId              FROM ASAM-EQUIP-MIB;

 
   AsamItfSeverityFilterType ::= INTEGER {
         indeterminate (1), -- Not a definite known severity
         warning (2),       -- Just to inform as a warning
         minor (3),         -- Not service affecting
         major (4),         -- Service affecting
         critical (5),      -- Service breaking
         noAlarms (254),    -- do not report alarm
         default (255)      -- take default as specified in 
                            -- asamIfExtAlmReportingSeverityDefaultTable
      }

   asamItfMIB OBJECT IDENTIFIER ::= { asam 6 }  -- Extensions to MIB-II
   
   asamPhyItfOperStatus OBJECT-TYPE
      SYNTAX OCTET STRING
      ACCESS read-only
      STATUS obsolete
      DESCRIPTION
         "The bitmap for the operational status of the physical interfaces.

          MAX_PIF: the maximum number of interface per board
          SLOTS: the number of slots in the system

          Layout: 1..MAX_PIF 1..MAX_PIF ... 1..MAX_PIF
                  ========== ==========     ==========
                       0          1     ...   SLOTS-1

          Up = 1, Down = 0
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NA           INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       This object is not supported."
      ::= {asamItfMIB 1}

   asamPhyItfBitmap OBJECT-TYPE
      SYNTAX OCTET STRING
      ACCESS read-only
      STATUS obsolete
      DESCRIPTION
         "The bitmap for the physical interfaces.

          MAX_PIF: the maximum number of interface per board
          SLOTS: the number of slots in the system

          Layout: 1..MAX_PIF 1..MAX_PIF ... 1..MAX_PIF
                  ========== ==========     ==========
                       0          1     ...   SLOTS-1

          Present = 1, Not present = 0
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NA           INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       This object is not supported."
      ::= {asamItfMIB 2}

   asamPhyItfChangeOccurredTrapEnable OBJECT-TYPE
      SYNTAX INTEGER {
                enabled(1),
                disabled(2)
             }
      ACCESS read-write
      STATUS obsolete
      DESCRIPTION
         "Boolean indicating wether the changeOccurredTrap should be sent
          or not. The trap will not be sent if the linkUpDownTrap was already
          sent (regardless of the value asamChangeOccurredTrapEnable).
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NA           INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       This object is not supported."
      ::= {asamItfMIB 3}

   asamPhyItfNumberChangeOccurred OBJECT-TYPE
      SYNTAX Counter
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION
         "This is a counter indicating the number of state changes of the
          physical line.
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    0
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= {asamItfMIB 4}
   
   asamIfExtTable OBJECT-TYPE
      SYNTAX SEQUENCE OF AsamIfExtEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "An extension to the ifTable defined in ITF-MIB.

          ALCATEL NOTE:
             TABLESIZE: DEP same size as the ifTable."
      ::= {asamItfMIB 5}
   
   asamIfExtEntry OBJECT-TYPE
      SYNTAX AsamIfExtEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "An entry containing management information applicable to a
          particular interface."
      INDEX { ifIndex }
      ::= {asamIfExtTable 1}
   
   AsamIfExtEntry ::= SEQUENCE {
      asamIfExtCustomerId             DisplayString,
      asamIfExtAlmReportingSeverity   AsamItfSeverityFilterType,
      asamIfExtIfSpecific             OBJECT IDENTIFIER
   }
   
   asamIfExtCustomerId OBJECT-TYPE
      SYNTAX DisplayString (SIZE (0..64))
      ACCESS read-write
      STATUS mandatory
      DESCRIPTION
         "A textual string identifying the customer assigned to this
          interface.  Following strings have a special meaning:
             'reserved' : the interface is reserved by an operator;
             'faulty'   : the interface is indicated by an operator
                          as being faulty;
             'available': the interface has no customer assigned to it.
          This object is only supported for physical interfaces.

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     YES          INSRVMOD:    YES
              RANGE:       NA           DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      DEFVAL {"available"}
      ::= {asamIfExtEntry 1}
   
   asamIfExtAlmReportingSeverity OBJECT-TYPE
      SYNTAX AsamItfSeverityFilterType
      ACCESS read-write
      STATUS mandatory
      DESCRIPTION
         "This objects specifies for a certain physical interface and all
          interface above in the interface hierarchy the minimal severity for
          an alarm to be reported.  If no value is provided for this object,
          it will obtain the value 'default', which means the actual value is
          as specified in the asamIfExtAlmReportingSeverityDefaultTable.

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     YES          INSRVMOD:    YES
              RANGE:       NA           DEFVALUE:    'default'
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= {asamIfExtEntry 2}

   asamIfExtIfSpecific OBJECT-TYPE
      SYNTAX OBJECT IDENTIFIER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION
         "A reference to MIB definitions specific to the particular media
          being used to realize the interface.
          If no MIB definitions specific to the particular media are
          available, the value should be set to the OBJECT IDENTIFIER { 0 0 }.

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= {asamIfExtEntry 3}
   
   asamNextAvailablePortType OBJECT-TYPE
      SYNTAX IANAifType
      ACCESS read-write
      STATUS mandatory
      DESCRIPTION
         "This object contains the ifType for which the next available
          physical interface can be retrieved.  Only values of ifType that
          represent physical interfaces are allowed.

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    YES
              RANGE:       NA           DEFVALUE:    xdslLine
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= {asamItfMIB 6}
   
   asamNextAvailablePort OBJECT-TYPE
      SYNTAX InterfaceIndex
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION
         "This object gives the next available physical interface for which
          the ifType is as specified in asamNextAvailablePortType. A physical
          interface is considered available if its asamIfExtCustomerId has
          the value 'available' and its internal ASAM state is 'reachable'.
          If no interface of the desired type is available an error (genErr)
          is returned when a get-request is issued for this object.

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= {asamItfMIB 7}
   
   asamIfExtAlmReportingSeverityDefaultTable OBJECT-TYPE
      SYNTAX SEQUENCE OF AsamIfExtAlmReportingSeverityDefaultEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "A table specifying for each of the supported interface types
          for asamIfExtAlmReportingSeverity its default minimal severity.

          ALCATEL NOTE:
             TABLESIZE: DEP number of supported interface types."
      ::= {asamItfMIB 8}
   
   asamIfExtAlmReportingSeverityDefaultEntry OBJECT-TYPE
      SYNTAX AsamIfExtAlmReportingSeverityDefaultEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "An entry of the asamIfExtAlmReportingSeverityDefaultTable.
         "
      INDEX { asamIfExtIfType }
      ::= {asamIfExtAlmReportingSeverityDefaultTable  1}
   
   AsamIfExtAlmReportingSeverityDefaultEntry ::= SEQUENCE {
      asamIfExtIfType                         IANAifType,
      asamIfExtAlmReportingSeverityDefault    AsamAlarmSeverityType
   }
   
   asamIfExtIfType OBJECT-TYPE
      SYNTAX IANAifType 
      ACCESS read-only  
      STATUS mandatory  
      DESCRIPTION
         "The type of the interface.

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtAlmReportingSeverityDefaultEntry  1 }
                   
   asamIfExtAlmReportingSeverityDefault OBJECT-TYPE
      SYNTAX AsamAlarmSeverityType
      ACCESS read-write
      STATUS mandatory 
      DESCRIPTION
         "The default minimal severity for an alarm to be reported that will
          be used for interfaces of the type specified in asamIfExtIfType.

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    YES
              RANGE:       1-5          DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      DEFVAL {major}
      ::= { asamIfExtAlmReportingSeverityDefaultEntry  2 }
   
   asamItfTest OBJECT IDENTIFIER ::= {asamItfMIB 9}
   -- Extension to EXT MIB-II for line test
   
   asamItfMetallicTestGroup OBJECT IDENTIFIER ::= {asamItfTest 1}
   -- First subgroup identifying metallic test group
   
   asamItfMetallicTestTypes OBJECT IDENTIFIER ::= {asamItfMetallicTestGroup 1}
   -- First subgroup identifying metallic test types
   
   asamItfMetallicTestLimited OBJECT IDENTIFIER ::=
      {asamItfMetallicTestTypes 1}
   
   asamItfMetallicTestTapLooped OBJECT IDENTIFIER ::=
      {asamItfMetallicTestTypes 2}
   
   asamItfMetallicTestMonitor OBJECT IDENTIFIER ::=
      {asamItfMetallicTestTypes 3}
   
   asamItfMetallicTestSplitAccess OBJECT IDENTIFIER ::=
      {asamItfMetallicTestTypes 4}

   asamItfMetallicTestInwardOnly OBJECT IDENTIFIER ::=
      {asamItfMetallicTestTypes 5}

   asamItfMetallicTestOutwardOnly OBJECT IDENTIFIER ::=
      {asamItfMetallicTestTypes 6}

   asamItfMetallicTestResetTimer OBJECT IDENTIFIER ::=
      {asamItfMetallicTestTypes 7}

   
   asamItfMetallicTestCodes OBJECT IDENTIFIER ::= {asamItfMetallicTestGroup 2}
   -- Second subgroup identifying metallic test codes
   
   asamItfLineNotReachable OBJECT IDENTIFIER ::=
      {asamItfMetallicTestCodes 1}
   
   asamItfPreparingMetallicTest OBJECT IDENTIFIER ::=
      {asamItfMetallicTestCodes 2}
   
   asamItfAnotherMetallicTestInProgress OBJECT IDENTIFIER ::=
      {asamItfMetallicTestCodes 3}
   
   asamItfTestAppliqueNotReachable OBJECT IDENTIFIER ::=
      {asamItfMetallicTestCodes 4}
   
   asamItfPotsSplitterNotReachable OBJECT IDENTIFIER ::=
      {asamItfMetallicTestCodes 5}

   asamItfWcapNotReachable OBJECT IDENTIFIER ::=
      {asamItfMetallicTestCodes 6}
-- reserved for ASAM

   asamItfLineBusy OBJECT IDENTIFIER ::=
      {asamItfMetallicTestCodes 7}
-- To indicate the line status is not in either idle or power down or parking mode. Currently only for narrowband MTA

   asamItfLineAdminOperAbnormal OBJECT IDENTIFIER ::=
      {asamItfMetallicTestCodes 8}
-- To indicate the line is either admin lock or oper disable
-- Crrently only for narrowband MTA

   asamItfLineAnotherLineTestInProgress OBJECT IDENTIFIER ::=
      {asamItfMetallicTestCodes 9}
   -- To indicate another line test is in progress. Currently only for NB MTA

   asamItfTestNotPossible OBJECT IDENTIFIER ::=
      {asamItfMetallicTestCodes 10}


   
   asamShelfPhyItfSummaryTable OBJECT-TYPE
      SYNTAX SEQUENCE OF AsamShelfPhyItfSummaryEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "Shelf summary table, summarizing status information of physical
          interfaces of boards which can be equipped within the
          corresponding shelf.

          ALCATEL NOTE:
             TABLESIZE: DEP number of shelves."
      ::= { asamItfMIB 10 }
   
   asamShelfPhyItfSummaryEntry OBJECT-TYPE
      SYNTAX AsamShelfPhyItfSummaryEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "An entry of the shelf physical interface summary table.
         "
      INDEX { eqptHolderId }
      ::= { asamShelfPhyItfSummaryTable 1 }
   
   AsamShelfPhyItfSummaryEntry ::= SEQUENCE {
      asamShelfPhyItfNumberChangeOccurred Counter,
      asamShelfPhyItfOperStatus           OCTET STRING,
      asamShelfPhyItfBitmap               OCTET STRING
   }
   
   asamShelfPhyItfNumberChangeOccurred OBJECT-TYPE
      SYNTAX Counter
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION
         "This is a counter indicating the number of state changes
          of physical lines, equipped on boards within this shelf.

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    0
              UNITS:       state change SPARSE:      NA
              DESCR:       NA"
      ::= { asamShelfPhyItfSummaryEntry 1 }
   
   asamShelfPhyItfOperStatus OBJECT-TYPE
      SYNTAX OCTET STRING
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION
         "The bitmap for the operational status of the physical interfaces
          of boards which can be equipped within this shelf.

          MAX_PIF: the maximum number of physical interfaces per board
                   (lines + IMA).
          SLOTS: the maximum number of slots within a shelf

          Layout: 1..MAX_PIF 1..MAX_PIF ... 1..MAX_PIF
                  ========== ==========     ==========
                       0          1     ...   SLOTS-1

          Up = 1, Down = 0.

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       DEP: #slots*#interfaces per board
              DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamShelfPhyItfSummaryEntry 2 }
   
   asamShelfPhyItfBitmap OBJECT-TYPE
      SYNTAX OCTET STRING
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION
         "The bitmap for the presence of the physical interfaces of boards
          which can be equipped within this shelf.

          MAX_PIF: the maximum number of physical interfaces per board
                   (lines + IMA).
          SLOTS: the maximum number of slots within a shelf

          Layout: 1..MAX_PIF 1..MAX_PIF ... 1..MAX_PIF
                  ========== ==========     ==========
                       0          1     ...   SLOTS-1

          Present = 1, Not present = 0.

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       DEP: #slots*#interfaces per board
              DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamShelfPhyItfSummaryEntry 3 }

-- =========================================================
-- the following table is supported from R5.3 onwards (e.g. 7367 ISAM SX-16P)
-- =========================================================

   asamLluTable OBJECT-TYPE
      SYNTAX SEQUENCE OF AsamLluEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION  
         "The Local Loop Unbundling Table.

          ALCATEL NOTE:
              TABLESIZE: DEP same size as the ifTable"
     ::= {asamItfMIB 11}

   asamLluEntry OBJECT-TYPE
      SYNTAX AsamLluEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION  
            "An entry in the asamLluTable. There will be an entry
             for each physical interface line (xdslLine) if the corresponding 
             board is configured/planned and if the corresponding board 
             supports LLU, i.e. no entries are auto-created in the MIB
              - for boards that are not planned,
              - for boards that are planned but for which the HW does 
                not support LLU.
             the operator cannot create an entry nor delete an entry in this 
	     table"

      INDEX { ifIndex }
      ::= { asamLluTable 1}

   AsamLluEntry ::= SEQUENCE {
            asamLluRelayStatus AsamLluRelayStatus,
            asamLluRelayActionTime Gauge,
            asamLluRelayOperStatus AsamLluRelayStatus,
            asamLluRelayActionTimer Gauge
   }

   AsamLluRelayStatus ::= TEXTUAL-CONVENTION
      STATUS current
      DESCRIPTION
           " Handling of relay for Local Loop Unbundling.
              unbundle (1),-- unbundling LLU relay on the particular physical line 
	                     mentioned by a valid physical interface ifIndex.
                             If LLURelay is unbundled, then the line is 
			     throughconnected to an external connector allowing 
			     to connect the line to another exchange.
              connect(2), -- connecting LLU relay on the particular physical line 
	                     mentioned by a valid physical interface ifIndex.
                             If LLURelay  state of a particular line is connected 
			     then the line is served by the LT.
			     For a DSL line this means it will pass to the card 
			     its low and high pass filter. The effect is that 
			     DSL signal is supported by the card, the POTS/ISDN signal is 
			     brought to an external connector.
              connectForMelt(3), -- connecting LLU relay for Melt on the particular 
                             physical line mentioned by a valid physical interface ifIndex.
                             If LLURelay  state of a particular line is connected 
                             with Melt then the line is served by the LT and the MELT test block can be used.
                             For a DSL line this means it will pass to the card 
                             its low and high pass filter and a MELT measurement can be performed. The effect is that 
                             DSL signal is supported by the card, the POTS/ISDN signal is 
                             not connected.
              disconnect(4), -- disconnecting LLU relay on the particular physical line
                             mentioned by a valid physical interface ifIndex.
                             If LLURelay state of a particular line is disconnected:
                             -the line is open ended at the LT side
                             -the MELT test block(if present) on LT is throughconnected to an external connector
                             This particular state allows for two types of testing:
                             -an open ended measurement can be performed at end user side
                             -future: a MELT measurement can be performed for the external link
                             towards another exchange(if MELT test block present)
              disconnectTimed(5), --  Temporarily disconnect LLU relay. After a timeout specified by
                              asamLluRelayActionTime, the relay goes back to 'connect'"
      SYNTAX INTEGER {
            unbundle (1),
            connect (2),
            connectForMelt (3),
            disconnect (4),
            disconnectTimed (5)
      }

   asamLluRelayStatus  OBJECT-TYPE
      SYNTAX AsamLluRelayStatus
      ACCESS read-write
      STATUS mandatory
      DESCRIPTION
           "Configured administrative status of the relay. This value is kept persistent
            ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     YES          INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    unbundle
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
	  ::= {asamLluEntry 1}

   asamLluRelayActionTime   OBJECT-TYPE
      SYNTAX Gauge
      ACCESS read-write
      STATUS mandatory
      DESCRIPTION
          "The delay in tenths of seconds during which the relay will be in disconnected state before
           switching to connected state after asamLluRelayStatus is configured to 'disconnectTimed'
           ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..864000    DEFVALUE:    50
              UNITS:       s/10         SPARSE:      NA
              DESCR:       NA"
     ::= {asamLluEntry 2}

   asamLluRelayOperStatus   OBJECT-TYPE
      SYNTAX AsamLluRelayStatus
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION
          "Operational status of the relay. This represents the actual status of the relay at
           any time. The value 'disconnectTimed' does not apply in this context
           ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
       ::= {asamLluEntry 3}

   asamLluRelayActionTimer   OBJECT-TYPE
      SYNTAX Gauge
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION
          "Time in tenths of seconds remaining before switching to connected state after
           asamLluRelayStatus is configured to 'disconnectTimed'. 0 means that the
           timer associated with disconnectTimed is not active. This can happen when:
            - asamLluRelayStatus has never been configured to 'disconnectTimed'
            - The timer has been configured with asamLluRelayActionTime = 0
            - The timer has expired
           ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..864000    DEFVALUE:    0
              UNITS:       s/10         SPARSE:      NA
              DESCR:       NA"
     ::= {asamLluEntry 4}

   asamIfExtCounterSupportTable OBJECT-TYPE
      SYNTAX SEQUENCE OF AsamIfExtCounterSupportEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "A Table listing the supported counters for a particular interface .

          ALCATEL NOTE:
             TABLESIZE: DEP number of supported interface types."
      ::= {asamItfMIB 12 }

   asamIfExtCounterSupportEntry OBJECT-TYPE
      SYNTAX AsamIfExtCounterSupportEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "An entry containing list of supported counter information applicable to a
          particular interface."
      INDEX { asamIfExtCounterIndex }
      ::= {asamIfExtCounterSupportTable 1}

   AsamIfExtCounterSupportEntry ::= SEQUENCE {
      asamIfExtCounterIndex                IANAifType, 
      asamifTblifDescr                     INTEGER,
      asamifTblifMtu                       INTEGER,
      asamifTblifSpeed                     INTEGER,
      asamifTblifPhysAddress               INTEGER, 
      asamifTblifAdminStatus               INTEGER,
      asamifTblifOperStatus                INTEGER,
      asamifTblifLastChange                INTEGER, 
      asamifTblifInOctets                  INTEGER,
      asamifTblifInUcastPkts               INTEGER,
      asamifTblifInNUcastPkts              INTEGER,
      asamifTblifInDiscards                INTEGER,
      asamifTblifInErrors                  INTEGER,
      asamifTblifInUbknownProtos           INTEGER,
      asamifTblifOutOctets                 INTEGER,
      asamifTblifOutUcastPkts              INTEGER,
      asamifTblifOutNUcastPkts             INTEGER,
      asamifTblifOutDiscards               INTEGER,
      asamifTblifOutErrors                 INTEGER,
      asamifxTblifName                     INTEGER,
      asamifxTblifInMulticastPkts          INTEGER,
      asamifxTblifInBroadcastPkts          INTEGER,
      asamifxTblifOutMulticastPkts         INTEGER,
      asamifxTblifOutBroadcastPkts         INTEGER,
      asamifxTblifHCInOctets               INTEGER,
      asamifxTblifHCInUcastPkts            INTEGER,
      asamifxTblifHCInMulticastPkts        INTEGER,
      asamifxTblifHCInBroadcastPkts        INTEGER,
      asamifxTblifHCOutOctets              INTEGER,
      asamifxTblifHCOutUcastPkts           INTEGER,
      asamifxTblifHCOutMulticastPkts       INTEGER,
      asamifxTblifHCOutBroadcastPkts       INTEGER,
      asamifxTblifLinkUpDownTrapEnable     INTEGER,
      asamifxTblifHighSpeed                INTEGER,
      asamifxTblifPromiscuousMode          INTEGER,
      asamifxTblifConnectorPresent         INTEGER,
      asamifxTblifAlias                    INTEGER,
      asamifxTblifCounterDiscontinuityTime INTEGER
   }
   asamIfExtCounterIndex  OBJECT-TYPE
      SYNTAX IANAifType  
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION
         "A unique non-zero value representing an interface .

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       NA           DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"

      ::= { asamIfExtCounterSupportEntry  1 }

   asamifTblifDescr       OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  2 }
  asamifTblifMtu       OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  3 }
  asamifTblifSpeed        OBJECT-TYPE
      SYNTAX  INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  4 }

  asamifTblifPhysAddress   OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  5 }
 
  asamifTblifAdminStatus   OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface
           A value of 0 indicates that this parameter is not supported for the specified interface  .

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  6 }
 asamifTblifOperStatus   OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface
           A value of 0 indicates that this parameter is not supported for the specified interface  .

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  7 }
 asamifTblifLastChange   OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface
           A value of 0 indicates that this parameter is not supported for the specified interface  .

          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  8 }

 
 asamifTblifInOctets       OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  9 }
  asamifTblifInUcastPkts       OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  10 }
  asamifTblifInNUcastPkts       OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  11 }
  asamifTblifInDiscards       OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  12 }
  asamifTblifInErrors       OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  13 }
  asamifTblifInUbknownProtos       OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  14 }
  asamifTblifOutOctets       OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  15 }

  asamifTblifOutUcastPkts     OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  16 }

  asamifTblifOutNUcastPkts       OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  17 }

   asamifTblifOutDiscards     OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  18 }

  asamifTblifOutErrors        OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  19 }

   asamifxTblifName        OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  20 }

   asamifxTblifInMulticastPkts     OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  21 }

   asamifxTblifInBroadcastPkts     OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  22 }

   asamifxTblifOutMulticastPkts     OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  23 }

    asamifxTblifOutBroadcastPkts    OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  24 }

    asamifxTblifHCInOctets    OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  25 }

    asamifxTblifHCInUcastPkts    OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  26 }

     asamifxTblifHCInMulticastPkts   OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  27 }

   asamifxTblifHCInBroadcastPkts     OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  28 }

  asamifxTblifHCOutOctets       OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  29 }

    asamifxTblifHCOutUcastPkts    OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  30 }


  asamifxTblifHCOutMulticastPkts     OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  31 }

   asamifxTblifHCOutBroadcastPkts  OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  32 }

   asamifxTblifLinkUpDownTrapEnable  OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  33 }
  asamifxTblifHighSpeed    OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  34 }
   asamifxTblifPromiscuousMode   OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  35 }
   asamifxTblifConnectorPresent  OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  36 }
    asamifxTblifAlias  OBJECT-TYPE
      SYNTAX INTEGER 
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface  
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  37 }

   asamifxTblifCounterDiscontinuityTime   OBJECT-TYPE
      SYNTAX INTEGER
      ACCESS read-only
      STATUS mandatory
      DESCRIPTION

         " A value of 1 indicates that this parameter is supported for the specified interface
           A value of 0 indicates that this parameter is not supported for the specified interface  .
          ALCATEL NOTE:
              ACCESS:      NA           USAGE:       NA
              PERSIST:     NO           INSRVMOD:    NA
              RANGE:       0..1         DEFVALUE:    NA
              UNITS:       NA           SPARSE:      NA
              DESCR:       NA"
      ::= { asamIfExtCounterSupportEntry  38 }

-- *********************************************
--
-- IF-INDEX TO EXTENDED IF-INDEX MAPPING TABLE
--
-- This table is a helper table.
--
-- It contains the mapping of the ifIndex to extended ifIndex
-- of all interfaces that have a linear value
--
-- *********************************************
   
   asamIfIndexToExtIfIndexMappingTable OBJECT-TYPE
      SYNTAX SEQUENCE OF AsamIfIndexToExtIfIndexMappingEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "ifIndex to extended ifIndex Mapping Table.

          ALCATEL NOTE:
             TABLESIZE: DEP same size as the ifTable."
      ::= { asamItfMIB 13 }
   
   asamIfIndexToExtIfIndexMappingEntry OBJECT-TYPE
      SYNTAX AsamIfIndexToExtIfIndexMappingEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "An entry containing mapping from ifIndex to extended 
          ifIndex of interfaces."

      INDEX { ifIndex }
      ::= { asamIfIndexToExtIfIndexMappingTable 1 }
   
   AsamIfIndexToExtIfIndexMappingEntry ::= SEQUENCE {
  			asamExtIfIndexId1   Gauge,
  			asamExtIfIndexId2   Gauge,
  			asamExtIfIndexId3   Gauge
   }

   asamExtIfIndexId1   OBJECT-TYPE
        SYNTAX  Gauge (0..4294967295)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
           "Indicates the first indentifier of the extended-ifIndex
	    INTEGER.xxxx.xxxx.		

           ALCATEL NOTE:
               ACCESS:      NA           USAGE:       NA
               PERSIST:     NO           INSRVMOD:    NA
               RANGE:       Gauge   	 DEFVALUE:    NA
               UNITS:       NA           SPARSE:      NA
               DESCR:       NA"
        ::= { asamIfIndexToExtIfIndexMappingEntry 1 }

   asamExtIfIndexId2   OBJECT-TYPE
        SYNTAX  Gauge (0..4294967295)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
           "Indicates the second indentifier of the extended-ifIndex
	    xxxx.INTEGER.xxxx.

           ALCATEL NOTE:
               ACCESS:      NA           USAGE:       NA
               PERSIST:     NO           INSRVMOD:    NA
               RANGE:       Gauge   	 DEFVALUE:    NA
               UNITS:       NA           SPARSE:      NA
               DESCR:       NA"
        ::= { asamIfIndexToExtIfIndexMappingEntry 2 }

   asamExtIfIndexId3   OBJECT-TYPE
        SYNTAX  Gauge (0..4294967295)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
           "Indicates the third indentifier of the extended-ifIndex
	    xxxx.xxxx.INTEGER.

           ALCATEL NOTE:
               ACCESS:      NA           USAGE:       NA
               PERSIST:     NO           INSRVMOD:    NA
               RANGE:       Gauge   	 DEFVALUE:    NA
               UNITS:       NA           SPARSE:      NA
               DESCR:       NA"
        ::= { asamIfIndexToExtIfIndexMappingEntry 3 }

-- *********************************************
--
-- EXTENDED IF-INDEX TO IF-INDEX MAPPING TABLE
--
-- This table is a helper table.
--
-- It contains the mapping of the extended-ifIndex to ifIndex
-- of all interfaces that have a linear value
--
-- *********************************************
   
   asamExtIfIndexToIfIndexMappingTable OBJECT-TYPE
      SYNTAX SEQUENCE OF AsamExtIfIndexToIfIndexMappingEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "Extended-ifIndex to ifIndex Mapping Table.

          ALCATEL NOTE:
             TABLESIZE: DEP same size as the ifTable."
      ::= { asamItfMIB 14 }
   
   asamExtIfIndexToIfIndexMappingEntry OBJECT-TYPE
      SYNTAX AsamExtIfIndexToIfIndexMappingEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "An entry containing mapping from extended-ifIndex to ifIndex 
          of interfaces."

-- Type : INTEGER.INTEGER.INTEGER (total 96 bit)
-- asamExtIfIndexId1 -> INTEGER.xxxx.xxxx
-- asamExtIfIndexId2 -> xxxx.INTEGER.xxxx
-- asamExtIfIndexId3 -> xxxx.xxxx.INTEGER
      INDEX { asamExtIfIndexId1, asamExtIfIndexId2, asamExtIfIndexId3 }

      ::= { asamExtIfIndexToIfIndexMappingTable 1 }
   
   AsamExtIfIndexToIfIndexMappingEntry ::= SEQUENCE {
      			asamIfIndex	InterfaceIndex
   }

   asamIfIndex   OBJECT-TYPE
        SYNTAX  InterfaceIndex
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
           "Indicates the ifIndex of the interface.

           ALCATEL NOTE:
               ACCESS:      NA           USAGE:       NA
               PERSIST:     NO           INSRVMOD:    NA
               RANGE:       ifIndex      DEFVALUE:    NA
               UNITS:       NA           SPARSE:      NA
               DESCR:       NA"
        ::= { asamExtIfIndexToIfIndexMappingEntry 1 }

   asamIfPortTypeTable OBJECT-TYPE
      SYNTAX SEQUENCE OF AsamIfPortTypeEntry
      ACCESS not-accessible
      STATUS mandatory
      DESCRIPTION
         "EFM Interface PortType Table.

          ALCATEL NOTE:
             TABLESIZE: Entry will be equivalent to number of EFM interfaces exist."
      ::= { asamItfMIB 15 }

    asamIfPortTypeEntry OBJECT-TYPE
       SYNTAX AsamIfPortTypeEntry
       ACCESS not-accessible
       STATUS mandatory
       DESCRIPTION
          "An entry appears in this table for each EFM interface exist in the system." 
       INDEX { ifIndex }
       ::= { asamIfPortTypeTable 1 }

    AsamIfPortTypeEntry ::= SEQUENCE {
         asamIfPortType  INTEGER
   }

    asamIfPortType   OBJECT-TYPE
       SYNTAX   INTEGER {
                    uni(1),
                    nni(2),
                    huni(3),
                    uplink(4),
                    lemi(5)
                    
                }
    ACCESS      read-write
    STATUS      mandatory
    DESCRIPTION
        "This object identifies the whole network service model based
         on this interface.
         User Network Interface (UNI) is an interface which
         specifies one untrust subscriber is connected.
         Network to Network Interface (NNI) is an interface which
         specifies one trust networks in connected.
         Hicap User Network Interface (HUNI) is an interface which
         specifies one untrust subscriber is connected, but with hicapacity
         services.
         Uplink specifies the interface is at the upside of the ISAM, i.e.
         connecting the ISAM to the network.
         Lemi is a local ethernet management interface. It is supported only
         on a restricted set of systems/cards.

         ALCATEL NOTE:
             ACCESS : NA                   USAGE   : NA
             PERSIST: YES                  INSRVMOD: NA
             RANGE  : NA                   DEFVALUE: uni 
             UNITS  : NA                   SPARSE  : NA
             DESCR  : This Object is supported only for few LTs.Setting of portType is not allowed for native ethernet interfaces.Setting portType as UNI is allowed                       for all interfaces except native ethernet.Setting portType as NNI is allowed only for EFM intefaces on supported LTs.For ethernet interfaces                         (native Ethernet) get command will display the portType from extendEtherPortCtrlTable"                       
        ::= { asamIfPortTypeEntry 1 }

END