summaryrefslogtreecommitdiff
path: root/MIBS/dasan/DASAN-SHDSL-MIB
blob: 87ef56e9880f487649133f1f1efa6bd0f4da58db (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
-- *****************************************************************
-- DASAN SHDSL MIB -  The MIB for G.SHDSL Product
--
-- Jan 2005, Dongha Lee
--
-- Copyright (c) 2001 by Dasan Co., Ltd.
-- All rights reserved.
-- *****************************************************************
 
 
DASAN-SHDSL-MIB  DEFINITIONS ::= BEGIN

IMPORTS
                MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, mib-2,
                IpAddress, Integer32, Counter32, Gauge32, TimeTicks, Unsigned32
                      FROM SNMPv2-SMI
                TEXTUAL-CONVENTION, TimeStamp, TruthValue, DisplayString,
                RowStatus
                      FROM SNMPv2-TC
    		    ifIndex
        	          FROM IF-MIB
--               adslLineAlarmConfProfileName, adslAtucChanIntervalNumber, adslAtucIntervalNumber, adslLineConfProfileName, adslAturChanIntervalNumber
--			          FROM ADSL-LINE-MIB

                dasanMgmt           FROM DASAN-SMI;

 
dasanShdslMIB MODULE-IDENTITY
    LAST-UPDATED   "200407150000Z"
    ORGANIZATION   "Dasan Co., Ltd."
    CONTACT-INFO
                   "Dasan Co., Ltd."
    DESCRIPTION
        "The MIB module to describe G.SHDSL product.
         The MIB module that provides objects that are proprietary and extension to SHDSL-
        LINE-MIB. The MIB include extension to following Tables.                
   	
        The MIB also include a set of scalar(s) clubbed under the group 'dsShdslCapabilityGroup'." 
    ::= { dasanMgmt 6 }


dasanShdslLineMIB  OBJECT IDENTIFIER ::= { dasanShdslMIB 1 }
  
dasanShdslMIBObjects OBJECT IDENTIFIER ::= { dasanShdslLineMIB 1 }
 
-- dasanShdslMIBObjects  OBJECT IDENTIFIER ::= { dasanShdslMIB 1 }
               
                                    
   
dsShdslLineStatusTable OBJECT-TYPE
	SYNTAX       SEQUENCE OF DsHdsl2ShdslLineStatusEntry
	MAX-ACCESS   not-accessible
	STATUS       current
	DESCRIPTION
		"This MO is proprietary extension of RFC 3276 MIB and contains the proprietary line status."
	::= { dasanShdslMIBObjects 2 }


dsShdslLineStatusEntry OBJECT-TYPE
	SYNTAX       DsHdsl2ShdslLineStatusEntry
	MAX-ACCESS   not-accessible
	STATUS       current
	DESCRIPTION
		"An entry (conceptual row) in the dsShdslLineStatusTable.
		The Table is indexed by ifIndex."
	INDEX        { ifIndex }
	::= { dsShdslLineStatusTable 1 }

DsHdsl2ShdslLineStatusEntry ::= SEQUENCE {
		dsShdslOpState     INTEGER,
		dsShdslStartProgress     INTEGER,
		dsShdslFwRelease     OCTET STRING,
		dsShdslLineSwap     INTEGER,
		dsShdslRmtCountryCode     OCTET STRING,
		dsShdslRmtEncoderA     INTEGER,
		dsShdslRmtEncoderB     INTEGER,
		dsShdslRmtProviderCode     OCTET STRING,
		dsShdslLocDetect     INTEGER,
		dsShdslTxPower     INTEGER,
		dsShdslFramerSync     INTEGER,
		dsShdslRmtTomData     INTEGER,
		dsShdslDriftAlarm     INTEGER,
		dsShdslReceiverGain     INTEGER,
		dsShdslBertError     INTEGER,
		dsShdslFramerOHAndDefects     OCTET STRING,
		dsShdslRmtFwVersion     INTEGER,
		dsShdslUtopiaCellDelineation     INTEGER,
		dsShdslUtopiaRxCellCnt     INTEGER,
		dsShdslUtopiaCellDropCnt     INTEGER,
		dsShdslUtopiaRxHecErrorCnt     INTEGER,
		dsShdslUtopiaTxCellCnt     INTEGER,
		dsShdslRmtNsfCusId     INTEGER,
		dsShdslRmtNsfCusData     OCTET STRING,
		dsShdslLocalHandshake     OCTET STRING,
		dsShdslRemoteHandshake     OCTET STRING,
		dsShdslActualHandshake     OCTET STRING,
		dsShdslRmtTxPower     INTEGER,
		dsShdslRmtPowerBackoff     INTEGER,
		dsShdslAutoRetrainCount     INTEGER,
		dsShdslEocState     INTEGER,
		dsShdslFramerOneSecondCnt     OCTET STRING,
		dsShdslNtrFault     INTEGER,
		dsShdslCpeMasterCore     INTEGER,
		dsShdslParametricTestResult     INTEGER,
		dsShdslParametricTestArray     OCTET STRING }


dsShdslOpState OBJECT-TYPE
	SYNTAX       INTEGER{
			idle(0),
			data(1),
			handshake(16),
			training(24),
			bootupLoad(8),
			bootupLoadDone(9),
			pmms(20),
			framerGearShift(26),
			framerManualReset(27),
			silence(29),
			analogLb(128),
			rmtFramerLb(130),
			digitalLb(131),
			spectrumTest(133),
			selt(138),
			pSDTest(139),
			lclFramerLb(142),
			interfaceLb(143),
			bertTest(144),
			analogLbBertTest(145),
			digLbBertTest(146)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object identifies the high level operational state for the STU."
	::= { dsShdslLineStatusEntry 1 }


dsShdslStartProgress OBJECT-TYPE
	SYNTAX       INTEGER{
			noActivity(0),
			preActivation(1),
			activation(4),
			checkBitrate(7),
			pmmsChkComnRate(8),
			transmitCr(55),
			transmitSc(56),
			transmitSr(57),
			coLineAgc(64),
			cpLineAgc(65),
			fdEcTrain(66),
			equalizerTrain(67),
			tipRingAligned(68),
			transmitTc(69),
			receiveTr(70),
			transmitFc1(71),
			transmitFc2(72),
			receiveTc(73),
			transmitTr(74),
			receiveFc(75),
			spectTestOk(113),
			albTestOk(114),
			dlbTestOk(115),
			crcFail(116),
			framerSyncFail(117),
			snrMarginFail(118),
			loadCppa(128),
			loadCptrain(129),
			loadCptom(130),
			loadCpdm(131),
			loadCopa(144),
			loadCotrain(145),
			loadCotom(146),
			loadCodm(147)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object identifies the current detailed operational state of the STU."
	::= { dsShdslLineStatusEntry 2 }


dsShdslFwRelease OBJECT-TYPE
	SYNTAX       OCTET STRING (SIZE ( 0..255 ) )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"Transceiver firmware release number."
	::= { dsShdslLineStatusEntry 3 }


dsShdslLineSwap OBJECT-TYPE
	SYNTAX       INTEGER{
			swapped(1),
			unswapped(0)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object indicates if the physical lines are swapped, i.e., logical channel A is connected to physical channel B. This applies to 4-wire operation only."
	::= { dsShdslLineStatusEntry 4 }


dsShdslRmtCountryCode OBJECT-TYPE
	SYNTAX       OCTET STRING (SIZE ( 0..255 ) )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides the country code word, as defined in ITU-T G.991.2, for the STU at the other end of the loop. GlobespanVirata sets this to USA."
	::= { dsShdslLineStatusEntry 5 }


dsShdslRmtEncoderA OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object identifies the 21-bit value corresponding to encoder coefficient A, as defined in ITU-T G.991.2, for the STU at the other end of the loop."
	::= { dsShdslLineStatusEntry 6 }


dsShdslRmtEncoderB OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object identifies the 21-bit value corresponding to encoder coefficient B, as defined in ITU-T G.991.2, for the STU at the other end of the loop."
	::= { dsShdslLineStatusEntry 7 }


dsShdslRmtProviderCode OBJECT-TYPE
	SYNTAX       OCTET STRING (SIZE ( 0..255 ) )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object identifies the provider code word, as defined in ITU-T G.991.2, for the STU at the other end of the loop."
	::= { dsShdslLineStatusEntry 8 }


dsShdslLocDetect OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object is used to determine if carrier has been lost."
	::= { dsShdslLineStatusEntry 9 }


dsShdslTxPower OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object identifies the local STU transmit power in tenths of a dBm."
	::= { dsShdslLineStatusEntry 10 }


dsShdslFramerSync OBJECT-TYPE
	SYNTAX       INTEGER{
			outOfSync(0),
			inSync(1)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object returns information regarding the framer synchronization status."
	::= { dsShdslLineStatusEntry 11 }


dsShdslRmtTomData OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides vendor-provided data, as defined in ITU-T G.991.2, for the STU at the other end of the loop."
	::= { dsShdslLineStatusEntry 12 }


dsShdslDriftAlarm OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object identifies if the receive clock is in or out of range."
	::= { dsShdslLineStatusEntry 13 }


dsShdslReceiverGain OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides the total receiver gain in dB."
	::= { dsShdslLineStatusEntry 14 }


dsShdslBertError OBJECT-TYPE
	SYNTAX       INTEGER{
			outOfSync(0),
			framedSync(64),
			unframedSync(128)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides the count of bit errors since the last time the object was read, as well as the type of synchronization."
	::= { dsShdslLineStatusEntry 15 }


dsShdslFramerOHAndDefects OBJECT-TYPE
	SYNTAX       OCTET STRING (SIZE ( 0..10 ) )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object returns overhead data. The four least significant bits contain the overhead data in the following format: bit 0 is losd, bit 1 is sega, bit 2 is ps, and bit 3 is segd."
	::= { dsShdslLineStatusEntry 16 }


dsShdslRmtFwVersion OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides the transceiver firmware release number of the STU at the other end of the loop."
	::= { dsShdslLineStatusEntry 17 }


dsShdslUtopiaCellDelineation OBJECT-TYPE
	SYNTAX       INTEGER{
			inSync(1),
			preSync(160),
			hunt(240)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object indicates whether cell delineation has been found."
	::= { dsShdslLineStatusEntry 18 }


dsShdslUtopiaRxCellCnt OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object indicates the number of UTOPIA cells received since the last time the object has been called. The maximum value is 0xFFFF."
	::= { dsShdslLineStatusEntry 19 }


dsShdslUtopiaCellDropCnt OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object indicates the number of UTOPIA cells dropped since the last time the object has been called. The maximum value is 0xFF."
	::= { dsShdslLineStatusEntry 20 }


dsShdslUtopiaRxHecErrorCnt OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object indicates the number of UTOPIA cells with HEC errors since the last time the object has been called. The maximum value is 0xFF."
	::= { dsShdslLineStatusEntry 21 }


dsShdslUtopiaTxCellCnt OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object indicates the number of UTOPIA cells transmitted since the last time the object has been called. The maximum value is 0xFFFF."
	::= { dsShdslLineStatusEntry 22 }


dsShdslRmtNsfCusId OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object returns the customer identification that was sent by the STU at the other end of the loop."
	::= { dsShdslLineStatusEntry 23 }


dsShdslRmtNsfCusData OBJECT-TYPE
	SYNTAX       OCTET STRING (SIZE ( 0..4 ) )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object returns non-standard format customer data that was sent by the STU at the other end of the loop."
	::= { dsShdslLineStatusEntry 24 }


dsShdslLocalHandshake OBJECT-TYPE
	SYNTAX       OCTET STRING (SIZE ( 0..52 )  )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides a way to see what capabilities are supported by the local STU. A total of 26 handshake parameters are supported."
	::= { dsShdslLineStatusEntry 25 }


dsShdslRemoteHandshake OBJECT-TYPE
	SYNTAX       OCTET STRING (SIZE ( 0..52 )  )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides a way to see what capabilities are supported by the STU at the other end of the loop. A total of 26 handshake parameters are supported."
	::= { dsShdslLineStatusEntry 26 }


dsShdslActualHandshake OBJECT-TYPE
	SYNTAX       OCTET STRING (SIZE ( 0..52 )  )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides the results of capabilities exchanged during handshake. A total of 26 handshake parameters are supported."
	::= { dsShdslLineStatusEntry 27 }


dsShdslRmtTxPower OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides the transmit power of the STU at the other end of the loop."
	::= { dsShdslLineStatusEntry 28 }


dsShdslRmtPowerBackoff OBJECT-TYPE
	SYNTAX       INTEGER{
			enable(0),
			disable(32768)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object indicates whether power backoff is enabled or disabled at the STU at the other end of the loop."
	::= { dsShdslLineStatusEntry 29 }


dsShdslAutoRetrainCount OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object indicates the number of automatic retrains. This counter is only reset when a startup is initiated."
	::= { dsShdslLineStatusEntry 30 }


dsShdslEocState OBJECT-TYPE
	SYNTAX       INTEGER{
			online(0),
			discovery(1),
			inventory(2),
			configuration(3),
			cmdInProgress(4)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides status information about the eoc stage."
	::= { dsShdslLineStatusEntry 31 }


dsShdslFramerOneSecondCnt OBJECT-TYPE
	SYNTAX       OCTET STRING (SIZE ( 0..6 ) )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides CRC, SEGA, and LOSW defect one second error counts, and should be called every second."
	::= { dsShdslLineStatusEntry 32 }


dsShdslNtrFault OBJECT-TYPE
	SYNTAX       INTEGER{
			present(0),
			absent(1)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object identifies the Network Timing Recovery Fault."
	::= { dsShdslLineStatusEntry 33 }


dsShdslCpeMasterCore OBJECT-TYPE
	SYNTAX       INTEGER{
			core0(0),
			core1(16),
			core2(32),
			core3(48),
			core4(64),
			core5(80),
			core6(96),
			core7(112),
			noMasterCore(128)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		""
	::= { dsShdslLineStatusEntry 34 }


dsShdslParametricTestResult OBJECT-TYPE
	SYNTAX       INTEGER{
			pass(0),
			fail(1)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"Indicates the Result of the Parametric Test conducted on the Xcvr."
	::= { dsShdslLineStatusEntry 35 }


dsShdslParametricTestArray OBJECT-TYPE
	SYNTAX       OCTET STRING (SIZE ( 0..1024 ) )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"Conexant parameter that indicates the Parametric Test Array."
	::= { dsShdslLineStatusEntry 36 }
  
--  testtesttest
-- --
dsShdslLineParamsTable OBJECT-TYPE
	SYNTAX       SEQUENCE OF DsHdsl2ShdslLineParamsEntry
	MAX-ACCESS   not-accessible
	STATUS       current
	DESCRIPTION
		"This MO is proprietary extension of RFC 3276 MIB and contains the proprietary line parameters."
	::= { dasanShdslMIBObjects 3 }


dsShdslLineParamsEntry OBJECT-TYPE
	SYNTAX       DsHdsl2ShdslLineParamsEntry
	MAX-ACCESS   not-accessible
	STATUS       current
	DESCRIPTION
		"An entry (conceptual row) in the dsShdslLineParamsTable.
		The Table is indexed by ifIndex."
	INDEX        { ifIndex }
	::= { dsShdslLineParamsTable 1 }

DsHdsl2ShdslLineParamsEntry ::= SEQUENCE {
		dsShdslAction     INTEGER,
		dsShdslMode     INTEGER,
		dsShdslPowerScale     INTEGER,
		dsShdslFramerType     INTEGER,
		dsShdslAFEType     INTEGER,
		dsShdslEncodeCoeffA     INTEGER,
		dsShdslEncodeCoeffB     INTEGER,
		dsShdslTxEOCBufferLen     INTEGER,
		dsShdslRxEOCBufferLen     INTEGER,
		dsShdslNTR     INTEGER,
		dsShdslRxUpstreamFrameSync     INTEGER,
		dsShdslRxDownstreamFrameSync     INTEGER,
		dsShdslRxUpstreamStuffBits     INTEGER,
		dsShdslRxDownstreamStuffBits     INTEGER,
		dsShdslInitiate     INTEGER,
		dsShdslFramerRxClockMode     INTEGER,
		dsShdslFramerRxPllMode     INTEGER,
		dsShdslSerialAtmCiuBufferSize     INTEGER,
		dsShdslUtopiaL2TxAddress     INTEGER,
		dsShdslUtopiaL2RxAddress     INTEGER,
		dsShdslTxFramerPulseDelay     INTEGER,
		dsShdslRxFramerPulseDelay     INTEGER,
		dsShdslMultiFrameMode     INTEGER,
		dsShdslEnable4or6MbpsBitrate     INTEGER,
		dsShdslTomDataWord1     INTEGER,
		dsShdslTomDataWord2     INTEGER,
		dsShdslTomDataWord3     INTEGER,
		dsShdslTomDataWord4     INTEGER,
		dsShdslSetReqSilenceMode     INTEGER,
		dsShdslSetIndividualRates1     INTEGER,
		dsShdslSetIndividualRates2     INTEGER,
		dsShdslSetIndividualRates3     INTEGER,
		dsShdslSatmCellDelineation     INTEGER,
		dsShdslFramerCellDropOnError     INTEGER,
		dsShdslGearShiftType     INTEGER,
		dsShdslHsNsf     INTEGER,
		dsShdslHsMaxBitsPerBaud     INTEGER,
		dsShdslHsCusId     INTEGER,
		dsShdslHsCusData0     INTEGER,
		dsShdslHsCusData1     INTEGER,
		dsShdslHsAnnexBType     INTEGER,
		dsShdslAutoRetrain     INTEGER,
		dsShdslArCrcCheck     INTEGER,
		dsShdslArFramerSyncCheck     INTEGER,
		dsShdslArSnrMarginCheck     INTEGER,
		dsShdslArCrcThreshold     INTEGER,
		dsShdslArSnrMarginThreshold     INTEGER,
		dsShdslArRetrainTime     INTEGER,
		dsShdslOpStateTrapEnable     INTEGER,
		dsShdslTxFrmrDataClkEdge     INTEGER,
		dsShdslRxFrmrDataClkEdge     INTEGER,
		dsShdslTxFrmrPulseClkEdge     INTEGER,
		dsShdslRxFrmrPulseClkEdge     INTEGER,
		dsShdslTxFrmrPulseLvl     INTEGER,
		dsShdslRxFrmrPulseLvl     INTEGER,
		dsShdslUtopiaDataBusWidth     INTEGER,
		dsShdslFrmrOH     INTEGER,
		dsShdslLoopAttenCrossingTrapEnable     INTEGER,
		dsShdslSNRMarginCrossingTrapEnable     INTEGER,
		dsShdslFramerOHAndDefectsTrapEnable     INTEGER,
		dsShdslParametricTestInputFile     DisplayString,
		dsShdslParamHybridLossTestStart     INTEGER,
		dsShdslParamHybridLossTestEnd     INTEGER }


dsShdslAction OBJECT-TYPE
	SYNTAX       INTEGER{
			startUp(0),
			abortReq(2),
			gearShiftReq(6),
			downloadReq(8),
			bertStartTxReq(17),
			bertStartRxReq(18),
			bertStopReq(20),
			hybridLossTestReq(33),
			spectrumDownReq(25),
			spectrumUpReq(26),
			spectrumTxRxReq(32),
			residualEchoReq(34),
			totalEchoReq(35),
			nextPsdReq(36),
			autoRetrainOnReq(37),
			autoRetrainOffReq(38),
			propEocOnReq(45),
			propEocOffReq(46),
			rmtAtmCellStatusReq(47),
			rmtFullStatusReq(48)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object specifies actions that are used to control transceiver operation."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 1 }


dsShdslMode OBJECT-TYPE
	SYNTAX       INTEGER{
			co(0),
			cpe(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object specifies the operational mode of the transceiver."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 2 }


dsShdslPowerScale OBJECT-TYPE
	SYNTAX       INTEGER{
			defaultScale(26112)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object is used to compensate for minor differences in transmit power between designs."
	DEFVAL   { 26112 }
	::= { dsShdslLineParamsEntry 3 }


dsShdslFramerType OBJECT-TYPE
	SYNTAX       INTEGER{
			unframed(0),
			t1Slotted(1),
			e1Slotted(2),
			utopiaL2(3),
			nx64(6),
			serialATM(7),
			vC12(8),
			iMA(9)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object defines which type of data interface type is used. Note that the non-default values only apply to Conexant chips that support serial interfaces."
	::= { dsShdslLineParamsEntry 4 }


dsShdslAFEType OBJECT-TYPE
	SYNTAX       INTEGER{
			saturn(3),
			saturnLg(4)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This objects defines which AFE is being used."
	::= { dsShdslLineParamsEntry 5 }


dsShdslEncodeCoeffA OBJECT-TYPE
	SYNTAX       INTEGER{
			default(366)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object determines the value of encoder coefficient A, as defined in ITU-T G.991.2."
	DEFVAL   { 366 }
	::= { dsShdslLineParamsEntry 6 }


dsShdslEncodeCoeffB OBJECT-TYPE
	SYNTAX       INTEGER{
			default(817)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object determines the value of encoder coefficient B, as defined in ITU-T G.991.2"
	DEFVAL   { 817 }
	::= { dsShdslLineParamsEntry 7 }


dsShdslTxEOCBufferLen OBJECT-TYPE
	SYNTAX       INTEGER{
			dsShdslLineParamsTable5(5),
			dsShdslLineParamsTable10(10),
			dsShdslLineParamsTable15(15),
			dsShdslLineParamsTable20(20),
			dsShdslLineParamsTable25(25),
			dsShdslLineParamsTable30(30),
			dsShdslLineParamsTable35(35),
			dsShdslLineParamsTable40(40),
			dsShdslLineParamsTable45(45),
			dsShdslLineParamsTable50(50),
			dsShdslLineParamsTable55(55),
			dsShdslLineParamsTable60(60)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object determines the number of bytes of EOC data that is buffered by the DSP in the transmit direction."
	DEFVAL   { 5 }
	::= { dsShdslLineParamsEntry 8 }


dsShdslRxEOCBufferLen OBJECT-TYPE
	SYNTAX       INTEGER{
			dsShdslLineParamsTable5(5),
			dsShdslLineParamsTable10(10),
			dsShdslLineParamsTable15(15),
			dsShdslLineParamsTable20(20),
			dsShdslLineParamsTable25(25),
			dsShdslLineParamsTable30(30),
			dsShdslLineParamsTable35(35),
			dsShdslLineParamsTable40(40),
			dsShdslLineParamsTable45(45),
			dsShdslLineParamsTable50(50),
			dsShdslLineParamsTable55(55),
			dsShdslLineParamsTable60(60)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object determines the number of bytes of EOC data that is buffered by the DSP in the receive direction."
	DEFVAL   { 5 }
	::= { dsShdslLineParamsEntry 9 }


dsShdslNTR OBJECT-TYPE
	SYNTAX       INTEGER{
			disable(1),
			refClkIp8k(2),
			refClkOp4096k(4)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object defines how network-timing recovery is performed."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 10 }


dsShdslRxUpstreamFrameSync OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Customer-defined value. This object defines the upstream frame sync word."
	DEFVAL   { 13727 }
	::= { dsShdslLineParamsEntry 11 }


dsShdslRxDownstreamFrameSync OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object defines the downstream frame sync word."
	DEFVAL   { 13727 }
	::= { dsShdslLineParamsEntry 12 }


dsShdslRxUpstreamStuffBits OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Customer-defined value. This object defines the upstream."
	DEFVAL   { 15 }
	::= { dsShdslLineParamsEntry 13 }


dsShdslRxDownstreamStuffBits OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object defines the downstream stuff bits."
	DEFVAL   { 15 }
	::= { dsShdslLineParamsEntry 14 }


dsShdslInitiate OBJECT-TYPE
	SYNTAX       INTEGER{
			default(0),
			co(1),
			cpe(2)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object defines which STU initiates a startup. The default is STU-R initiates and STU-C waits."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 15 }


dsShdslFramerRxClockMode OBJECT-TYPE
	SYNTAX       INTEGER{
			slave(2),
			internal(3)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object determines the source of the receive clock."
	DEFVAL   { 2 }
	::= { dsShdslLineParamsEntry 16 }


dsShdslFramerRxPllMode OBJECT-TYPE
	SYNTAX       INTEGER{
			disable(0),
			enable(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object enables or disables the internal PLL."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 17 }


dsShdslSerialAtmCiuBufferSize OBJECT-TYPE
	SYNTAX       INTEGER{
			dsShdslLineParamsTable24(24),
			dsShdslLineParamsTable53(53)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object enables the user to set the size of the framer buffer for serial ATM operation."
	DEFVAL   { 53 }
	::= { dsShdslLineParamsEntry 18 }


dsShdslUtopiaL2TxAddress OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object selects the appropriate UTOPIA Level 2 address for the transmit interface."
	::= { dsShdslLineParamsEntry 19 }


dsShdslUtopiaL2RxAddress OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object selects the appropriate UTOPIA Level 2 address for the receive interface."
	::= { dsShdslLineParamsEntry 20 }


dsShdslTxFramerPulseDelay OBJECT-TYPE
	SYNTAX       INTEGER{
			dsShdslLineParamsTable0(0),
			dsShdslLineParamsTable1(1),
			dsShdslLineParamsTable2(2),
			dsShdslLineParamsTable3(3),
			dsShdslLineParamsTable4(4),
			dsShdslLineParamsTable5(5),
			dsShdslLineParamsTable6(6),
			dsShdslLineParamsTable7(7)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This parameter is for Serial ATM applications only. It is recommended that the default value be used. For special customer configurations, a delay of up to 7 clock cycles can be specified for the transmit frame pulse."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 21 }


dsShdslRxFramerPulseDelay OBJECT-TYPE
	SYNTAX       INTEGER{
			dsShdslLineParamsTable0(0),
			dsShdslLineParamsTable1(1),
			dsShdslLineParamsTable2(2),
			dsShdslLineParamsTable3(3),
			dsShdslLineParamsTable4(4),
			dsShdslLineParamsTable5(5),
			dsShdslLineParamsTable6(6),
			dsShdslLineParamsTable7(7)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This parameter is for Serial ATM applications only. It is recommended that the default value be used. For special customer configurations, a delay of up to 7 clock cycles can be specified for the receive frame pulse."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 22 }


dsShdslMultiFrameMode OBJECT-TYPE
	SYNTAX       INTEGER{
			enable(1),
			disable(0)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object specifies the multi frame operational mode of the transceiver."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 23 }


dsShdslEnable4or6MbpsBitrate OBJECT-TYPE
	SYNTAX       INTEGER{
			disable(0),
			enable(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object specifies the operational state of the 4_6Mbps bit rate."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 24 }


dsShdslTomDataWord1 OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object identifies one of four words of proprietary vendor data, as described in the Vendor Data section of ITU-T G.994.1.bis."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 25 }


dsShdslTomDataWord2 OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object identifies one of four words of proprietary vendor data, as described in the Vendor Data section of ITU-T G.994.1.bis."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 26 }


dsShdslTomDataWord3 OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object identifies one of four words of proprietary vendor data, as described in the Vendor Data section of ITU-T G.994.1.bis."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 27 }


dsShdslTomDataWord4 OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object identifies one of four words of proprietary vendor data, as described in the Vendor Data section of ITU-T G.994.1.bis."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 28 }


dsShdslSetReqSilenceMode OBJECT-TYPE
	SYNTAX       INTEGER{
			enable(4),
			disable(0)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object enables a silent mode for the STU at the opposite end of the loop for approximately one minute. During the silent period, the STU that requested the silent mode could perform whatever operations it wants and the STU at the opposite end will remain in handshake."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 29 }


dsShdslSetIndividualRates1 OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This item enables the user to individually enable or disable base rates for N=1 through N=16. The default is all rates enabled."
	DEFVAL   { 65535 }
	::= { dsShdslLineParamsEntry 30 }


dsShdslSetIndividualRates2 OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This item enables the user to individually enable or disable base rates for N=17 through N=32. The default is all rates enabled."
	DEFVAL   { 65535 }
	::= { dsShdslLineParamsEntry 31 }


dsShdslSetIndividualRates3 OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This item enables the user to individually enable or disable base rates for N=33 through N=36. The default is all rates enabled."
	DEFVAL   { 15 }
	::= { dsShdslLineParamsEntry 32 }


dsShdslSatmCellDelineation OBJECT-TYPE
	SYNTAX       INTEGER{
			disable(0),
			enable(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object enables the user to enable or disable cell delineation for serial ATM operation. This parameter should be set before a startup."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 33 }


dsShdslFramerCellDropOnError OBJECT-TYPE
	SYNTAX       INTEGER{
			enable(1),
			disable(0)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object determines whether cells are dropped, i.e., not passed to the host, or not dropped, i.e., passed to the host. This object must be set prior to startup."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 34 }


dsShdslGearShiftType OBJECT-TYPE
	SYNTAX       INTEGER{
			dsShdslLineParamsTable0(0),
			dsShdslLineParamsTable1(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object specifies the Gear Shift Type."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 35 }


dsShdslHsNsf OBJECT-TYPE
	SYNTAX       INTEGER{
			disable(0),
			enable(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object enables or disables nonstandard Information fields for MP, MS, CL, and CLR messages, as defined in ITU-T G.994.1.bis."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 36 }


dsShdslHsMaxBitsPerBaud OBJECT-TYPE
	SYNTAX       INTEGER{
			default(3),
			dsShdslLineParamsTable2bits(2),
			dsShdslLineParamsTable1bits(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object specifies the maximum bit per baud."
	DEFVAL   { 3 }
	::= { dsShdslLineParamsEntry 37 }


dsShdslHsCusId OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object identifies the customer identification during handshaking, as described in ITU-T G.994.1.bis."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 38 }


dsShdslHsCusData0 OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object identifies two words of customer data during handshaking, as defined in ITU-T G.994.1.bis."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 39 }


dsShdslHsCusData1 OBJECT-TYPE
	SYNTAX       INTEGER
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object identifies two words of customer data during handshaking, as defined in ITU-T G.994.1.bis."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 40 }


dsShdslHsAnnexBType OBJECT-TYPE
	SYNTAX       INTEGER{
			default(1),
			anfp(2),
			annexbOrAnfp(3)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object allows the customer to choose between support for Annex B, Annex B with Access Network Frequency Plan (ANFP), or both."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 41 }


dsShdslAutoRetrain OBJECT-TYPE
	SYNTAX       INTEGER{
			disable(0),
			enable(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Enables or disables auto-retrain."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 42 }


dsShdslArCrcCheck OBJECT-TYPE
	SYNTAX       INTEGER{
			disable(0),
			enable(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Enables or disables auto-retrain based on CRC errors."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 43 }


dsShdslArFramerSyncCheck OBJECT-TYPE
	SYNTAX       INTEGER{
			disable(0),
			enable(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Enables or disables auto-retrain based on framer synchronization."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 44 }


dsShdslArSnrMarginCheck OBJECT-TYPE
	SYNTAX       INTEGER{
			disable(0),
			enable(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Enables or disables auto-retrain based on whether the S/N margin falls below a preset threshold."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 45 }


dsShdslArCrcThreshold OBJECT-TYPE
	SYNTAX       INTEGER ( 0..1024 )
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Sets the threshold for the number of frames with CRC errors for autoretrain."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 46 }


dsShdslArSnrMarginThreshold OBJECT-TYPE
	SYNTAX       INTEGER{
			dsShdslLineParamsTable1(1),
			dsShdslLineParamsTable2(2),
			dsShdslLineParamsTable3(3),
			dsShdslLineParamsTable4(4),
			dsShdslLineParamsTable5(5),
			dsShdslLineParamsTable6(6)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Set the margin threshold for autoretrain."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 47 }


dsShdslArRetrainTime OBJECT-TYPE
	SYNTAX       INTEGER{
			dsShdslLineParamsTable1(1),
			dsShdslLineParamsTable2(2),
			dsShdslLineParamsTable3(3),
			dsShdslLineParamsTable4(4),
			dsShdslLineParamsTable5(5),
			dsShdslLineParamsTable6(6),
			dsShdslLineParamsTable7(7),
			dsShdslLineParamsTable8(8),
			dsShdslLineParamsTable9(9),
			dsShdslLineParamsTable10(10)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Sets the time over which the autoretrain parameters must be outside their normal ranges, so that an auto-retrain occurs."
	DEFVAL   { 3 }
	::= { dsShdslLineParamsEntry 48 }


dsShdslOpStateTrapEnable OBJECT-TYPE
	SYNTAX       INTEGER{
			enable(1),
			disable(2)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Enables/disables trap indicating a change in op state."
	DEFVAL   { 2 }
	::= { dsShdslLineParamsEntry 49 }


dsShdslTxFrmrDataClkEdge OBJECT-TYPE
	SYNTAX       INTEGER{
			negative(0),
			positive(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This parameter is for Serial ATM applications only. It is recommended that the default value be used. For special customer configurations, transmit data can be sampled upon either rising or falling edge of the transmit clock."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 50 }


dsShdslRxFrmrDataClkEdge OBJECT-TYPE
	SYNTAX       INTEGER{
			negative(0),
			positive(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This parameter is for Serial ATM applications only. It is recommended that the default value be used. For special customer configurations, receive data can be valid upon either rising or falling edge of the receive clock."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 51 }


dsShdslTxFrmrPulseClkEdge OBJECT-TYPE
	SYNTAX       INTEGER{
			negative(0),
			positive(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This parameter is for Serial ATM applications only. It is recommended that the default value be used. For special customer configurations, the transmit frame pulse can be active upon either rising or falling edge."
	DEFVAL   { 0 }
	::= { dsShdslLineParamsEntry 52 }


dsShdslRxFrmrPulseClkEdge OBJECT-TYPE
	SYNTAX       INTEGER{
			negative(0),
			positive(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This parameter is for Serial ATM applications only. It is recommended that the default value be used. For special customer configurations, the transmit frame pulse can be active upon either rising or falling edge."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 53 }


dsShdslTxFrmrPulseLvl OBJECT-TYPE
	SYNTAX       INTEGER{
			low(0),
			high(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This parameter is for Serial ATM applications only. It is recommended that the default value be used. For special customer configurations, the transmit frame pulse can be either active high (1) or active low (0)."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 54 }


dsShdslRxFrmrPulseLvl OBJECT-TYPE
	SYNTAX       INTEGER{
			low(0),
			high(1)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This parameter is for Serial ATM applications only. It is recommended that the default value be used. For special customer configurations, the transmit frame pulse can be either active high (1) or active low (0)."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 55 }


dsShdslUtopiaDataBusWidth OBJECT-TYPE
	SYNTAX       INTEGER{
			tx8Rx8(0),
			tx16Rx16(1),
			tx16Rx8(2),
			tx8Rx16(3)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This parameter is used to specify width of UTOPIA data bus."
	::= { dsShdslLineParamsEntry 56 }


dsShdslFrmrOH OBJECT-TYPE
	SYNTAX       INTEGER ( 0..65535 )
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This object specifies framer OverHead Channel."
	DEFVAL   { 15 }
	::= { dsShdslLineParamsEntry 57 }


dsShdslLoopAttenCrossingTrapEnable OBJECT-TYPE
	SYNTAX       INTEGER{
			enable(1),
			disable(2)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This Parameter enables or disables the Trap for Loop Attenuation Threshold crossing."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 58 }


dsShdslSNRMarginCrossingTrapEnable OBJECT-TYPE
	SYNTAX       INTEGER{
			enable(1),
			disable(2)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This Parameter enables or disables the Trap for SNR Margin Threshold crossing."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 59 }


dsShdslFramerOHAndDefectsTrapEnable OBJECT-TYPE
	SYNTAX       INTEGER{
			enable(1),
			disable(2)
		}
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"This Parameter enables or disables the Trap for Framer Overhead and Defects."
	DEFVAL   { 1 }
	::= { dsShdslLineParamsEntry 60 }


dsShdslParametricTestInputFile OBJECT-TYPE
	SYNTAX       DisplayString (SIZE ( 0..56 ) )
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Indicates Name of the Input file from which to take the Mask Array Size, lower and upper mask Array. Null string means no file is specified."
	::= { dsShdslLineParamsEntry 61 }


dsShdslParamHybridLossTestStart OBJECT-TYPE
	SYNTAX       INTEGER ( 0..255 )
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Indicates Start bin for range of bins to be measured. The default value mentioned is an indicative value only, for exact value refer to document number DO-400523-AN and DO-401163-AN."
	DEFVAL   { 2 }
	::= { dsShdslLineParamsEntry 62 }


dsShdslParamHybridLossTestEnd OBJECT-TYPE
	SYNTAX       INTEGER ( 0..255 )
	MAX-ACCESS   read-write
	STATUS       current
	DESCRIPTION
		"Indicates End bin for range of bins to be measured.  The default value mentioned is an indicative value only."
	DEFVAL   { 64 }
	::= { dsShdslLineParamsEntry 63 }



dsShdslSpanStatusExtnTable OBJECT-TYPE
	SYNTAX       SEQUENCE OF GsvHdsl2ShdslSpanStatusExtnEntry
	MAX-ACCESS   not-accessible
	STATUS       current
	DESCRIPTION
		"This table is a proprietary extension of hdsl2ShdslSpanStatusTable"
	::= { dasanShdslMIBObjects 4 }


dsShdslSpanStatusExtnEntry OBJECT-TYPE
	SYNTAX       GsvHdsl2ShdslSpanStatusExtnEntry
	MAX-ACCESS   not-accessible
	STATUS       current
	DESCRIPTION
		"An entry (conceptual row) in the dsShdslSpanStatusExtnTable.
		The Table is indexed by ifIndex."
	INDEX        { ifIndex }
	::= { dsShdslSpanStatusExtnTable 1 }

GsvHdsl2ShdslSpanStatusExtnEntry ::= SEQUENCE {
		dsShdslStatusPMMSMaxLineRate     Unsigned32,
		dsShdslStatus4WireHsMode     INTEGER }


dsShdslStatusPMMSMaxLineRate OBJECT-TYPE
	SYNTAX       Unsigned32 ( 0..4112000 )
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This object provides the maximum PMMS rate the line is capable of achieving"
	::= { dsShdslSpanStatusExtnEntry 1 }


dsShdslStatus4WireHsMode OBJECT-TYPE
	SYNTAX       INTEGER {
			standard(0),
			enhanced(1)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"Contains the current 4 Wire Handshake Mode Configured"
	::= { dsShdslSpanStatusExtnEntry 2 }

dsShdslCapabilityGroup		OBJECT IDENTIFIER ::= { dasanShdslMIBObjects 1 }

dsShdslCapabilityLineTxCap OBJECT-TYPE
	SYNTAX       BITS{
			region1(0),
			region2(1)
		}
	MAX-ACCESS   read-only
	STATUS       current
	DESCRIPTION
		"This bitmap specifies the transmission modes that the STU-C is capable of supporting. Right now, support for Annex A (q9921PotsNonOverlapped(2) and q9921PotsOverlapped(3)) is present.  This value depends on the DSL PHY firmware present on Columbia MxU."
	::= { dsShdslCapabilityGroup 1 }


-- --------- testtesttest


--
--

  
END