-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathADSL2-LINE-MIB-V1SMI.my
6110 lines (5719 loc) · 208 KB
/
ADSL2-LINE-MIB-V1SMI.my
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
-- MIB file created 28-Oct-2010 14:59:02, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
ADSL2-LINE-MIB DEFINITIONS ::= BEGIN
-- From file: "ADSL2-LINE-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
transmission
FROM SNMPv2-SMI-v1
ifIndex
FROM IF-MIB
TruthValue, RowStatus
FROM SNMPv2-TC-v1
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
HCPerfIntervalThreshold, HCPerfTimeElapsed
FROM HC-PerfHist-TC-MIB
Adsl2Unit, Adsl2Direction, Adsl2TransmissionModeType,
Adsl2RaMode, Adsl2InitResult, Adsl2OperationModes,
Adsl2PowerMngState, Adsl2ConfPmsForce, Adsl2LConfProfPmMode,
Adsl2LineLdsf, Adsl2LdsfResult, Adsl2SymbolProtection,
Adsl2MaxBer, Adsl2ScMaskDs, Adsl2ScMaskUs, Adsl2RfiDs,
Adsl2PsdMaskDs, Adsl2PsdMaskUs, Adsl2Tssi,
Adsl2LastTransmittedState, Adsl2LineStatus, Adsl2ChAtmStatus,
Adsl2ChPtmStatus
FROM ADSL2-LINE-TC-MIB
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
adsl2MIB OBJECT IDENTIFIER ::= { transmission 238 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200610040000Z
-- OrgName
-- ADSLMIB Working Group
-- ContactInfo
-- WG-email: [email protected]
-- Info: https://www1.ietf.org/mailman/listinfo/adslmib
--
--
-- Chair: Mike Sneed
-- Sand Channel Systems
-- Postal: P.O. Box 37324
-- Raleigh NC 27627-732
-- Email: [email protected]
-- Phone: +1 206 600 7022
--
-- Co-Chair & Co-editor:
-- Menachem Dodge
-- ECI Telecom Ltd.
-- Postal: 30 Hasivim St.
-- Petach Tikva 49517,
-- Israel.
-- Email: [email protected]
-- Phone: +972 3 926 8421
--
-- Co-editor: Moti Morgenstern
-- ECI Telecom Ltd.
-- Postal: 30 Hasivim St.
-- Petach Tikva 49517,
-- Israel.
-- Email: [email protected]
-- Phone: +972 3 926 6258
--
-- Co-editor: Scott Baillie
-- NEC Australia
-- Postal: 649-655 Springvale Road,
-- Mulgrave, Victoria 3170,
-- Australia.
-- Email: [email protected]
-- Phone: +61 3 9264 3986
--
-- Co-editor: Umberto Bonollo
-- NEC Australia
-- Postal: 649-655 Springvale Road,
-- Mulgrave, Victoria 3170,
-- Australia.
-- Email: [email protected]
-- Phone: +61 3 9264 3385
-- Descr
-- This document defines a Management Information Base (MIB)
-- module for use with network management protocols in the
-- Internet community for the purpose of managing ADSL, ADSL2,
-- and ADSL2+ lines. The MIB module described in RFC 2662
-- [RFC2662] describes objects used for managing Asymmetric
-- Bit-Rate DSL (ADSL) interfaces per [T1E1.413], [G.992.1],
-- and [G.992.2]. These object descriptions are based upon the
-- specifications for the ADSL Embedded Operations Channel
-- (EOC) as defined in American National Standards Institute
-- (ANSI) T1E1.413/1995 [T1E1.413] and International
-- Telecommunication Union (ITU-T) G.992.1 [G.992.1] and
-- G.992.2 [G.992.2].
--
-- This document does not obsolete RFC 2662 [RFC2662], but
-- rather provides a more comprehensive management model that
-- includes the ADSL2 and ADSL2+ technologies per G.992.3,
-- G.992.4, and G.992.5 ([G.992.3], [G.992.4], and [G.992.5],
-- respectively). In addition, objects have been added to
-- improve the management of ADSL, ADSL2, and ADSL2+ lines.
--
-- Additionally, the management framework for New Generation
-- ADSL lines specified by the Digital Subscriber Line Forum
-- (DSLF) has been taken into consideration [TR-90]. That
-- framework is based on ITU-T G.997.1 standard [G.997.1] as
-- well as two amendments: [G.997.1am1] and [G.997.1am2].
--
-- Note that the revised ITU-T G.997.1 standard also refers to
-- the next generation of VDSL technology, known as VDSL2, per
-- ITU-T G.993.2 [G.993.2]. However, managing VDSL2 lines is
-- currently beyond the scope of this document.
--
-- The MIB module is located in the MIB tree under MIB 2
-- transmission, as discussed in the IANA Considerations section
-- of this document.
--
-- Copyright (C) The Internet Society (2006). This version of
-- this MIB module is part of RFC 4706: see the RFC itself for
-- full legal notices.
-- RevDate
-- 200610040000Z
-- RevDescr
-- Initial version, published as RFC 4706.
adsl2 OBJECT IDENTIFIER ::= { adsl2MIB 1 }
adsl2Line OBJECT IDENTIFIER ::= { adsl2 1 }
adsl2Status OBJECT IDENTIFIER ::= { adsl2 2 }
adsl2Inventory OBJECT IDENTIFIER ::= { adsl2 3 }
adsl2PM OBJECT IDENTIFIER ::= { adsl2 4 }
adsl2Profile OBJECT IDENTIFIER ::= { adsl2 5 }
adsl2Scalar OBJECT IDENTIFIER ::= { adsl2 6 }
adsl2Notifications OBJECT IDENTIFIER ::= { adsl2 0 }
adsl2Conformance OBJECT IDENTIFIER ::= { adsl2 7 }
adsl2PMLine OBJECT IDENTIFIER ::= { adsl2PM 1 }
adsl2PMChannel OBJECT IDENTIFIER ::= { adsl2PM 2 }
adsl2ProfileLine OBJECT IDENTIFIER ::= { adsl2Profile 1 }
adsl2ProfileChannel OBJECT IDENTIFIER ::= { adsl2Profile 2 }
adsl2ProfileAlarmConf OBJECT IDENTIFIER ::= { adsl2Profile 3 }
adsl2ScalarSC OBJECT IDENTIFIER ::= { adsl2Scalar 1 }
adsl2Groups OBJECT IDENTIFIER ::= { adsl2Conformance 1 }
adsl2Compliances OBJECT IDENTIFIER ::= { adsl2Conformance 2 }
adsl2LineTable OBJECT-TYPE
SYNTAX SEQUENCE OF Adsl2LineEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table adsl2LineTable contains configuration,
command, and status parameters of the ADSL2 line.
The index of this table is an interface index where the
interface has an ifType of adsl2plus(238).
Several objects in this table MUST be maintained in a
persistent manner."
::= { adsl2Line 1 }
adsl2LineEntry OBJECT-TYPE
SYNTAX Adsl2LineEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table adsl2LineTable contains configuration,
commands, and status parameters of the ADSL2 line"
INDEX { ifIndex }
::= { adsl2LineTable 1 }
Adsl2LineEntry ::= SEQUENCE {
adsl2LineCnfgTemplate SnmpAdminString,
adsl2LineAlarmCnfgTemplate SnmpAdminString,
adsl2LineCmndConfPmsf Adsl2ConfPmsForce,
adsl2LineCmndConfLdsf Adsl2LineLdsf,
adsl2LineCmndConfLdsfFailReason Adsl2LdsfResult,
adsl2LineCmndAutomodeColdStart TruthValue,
adsl2LineStatusAtuTransSys Adsl2TransmissionModeType,
adsl2LineStatusPwrMngState Adsl2PowerMngState,
adsl2LineStatusInitResult Adsl2InitResult,
adsl2LineStatusLastStateDs Adsl2LastTransmittedState,
adsl2LineStatusLastStateUs Adsl2LastTransmittedState,
adsl2LineStatusAtur Adsl2LineStatus,
adsl2LineStatusAtuc Adsl2LineStatus,
adsl2LineStatusLnAttenDs Gauge,
adsl2LineStatusLnAttenUs Gauge,
adsl2LineStatusSigAttenDs Gauge,
adsl2LineStatusSigAttenUs Gauge,
adsl2LineStatusSnrMarginDs INTEGER,
adsl2LineStatusSnrMarginUs INTEGER,
adsl2LineStatusAttainableRateDs Gauge,
adsl2LineStatusAttainableRateUs Gauge,
adsl2LineStatusActPsdDs INTEGER,
adsl2LineStatusActPsdUs INTEGER,
adsl2LineStatusActAtpDs INTEGER,
adsl2LineStatusActAtpUs INTEGER
}
adsl2LineCnfgTemplate OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(1..32))
-- Rsyntax OCTET STRING(SIZE(1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object identifies the row in the ADSL2 Line
Configuration Templates Table, (adsl2LineConfTemplateTable),
which applies for this ADSL2 line.
This object MUST be maintained in a persistent manner."
REFERENCE
"DSL Forum TR-90, paragraph 5.1.1"
DEFVAL { "DEFVAL" }
::= { adsl2LineEntry 1 }
adsl2LineAlarmCnfgTemplate OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(1..32))
-- Rsyntax OCTET STRING(SIZE(1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object identifies the row in the ADSL2 Line
Alarm Configuration Template Table,
(adsl2LineAlarmConfTemplateTable), which applies to this ADSL2
line.
This object MUST be maintained in a persistent manner."
REFERENCE
"DSL Forum TR-90, paragraph 5.1.1"
DEFVAL { "DEFVAL" }
::= { adsl2LineEntry 2 }
adsl2LineCmndConfPmsf OBJECT-TYPE
SYNTAX Adsl2ConfPmsForce
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- l3toL0(0),
-- l0toL2(2),
-- l0orL2toL3(3)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Power management state forced. Defines the line states to be
forced by the near-end ATU on this line. The various possible
values are:
l3toL0(0),
l0toL2(2), or
l0orL2toL3(3).
This object MUST be maintained in a persistent manner."
REFERENCE
"ITU-T G.997.1, paragraph 7.3.1.1.3"
DEFVAL { l3toL0 }
::= { adsl2LineEntry 3 }
adsl2LineCmndConfLdsf OBJECT-TYPE
SYNTAX Adsl2LineLdsf
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- inhibit(0),
-- force(1)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Loop diagnostics mode forced (LDSF). Defines whether the line
should be forced into the loop diagnostics mode by the
near-end ATU on this line or only be responsive to loop
diagnostics initiated by the far-end ATU.
This object MUST be maintained in a persistent manner.
However, in case the operator forces loop diagnostics mode
then the access node should reset the object (inhibit) when
loop diagnostics mode procedures are completed."
REFERENCE
"ITU-T G.997.1, paragraph 7.3.1.1.8"
DEFVAL { inhibit }
::= { adsl2LineEntry 4 }
adsl2LineCmndConfLdsfFailReason OBJECT-TYPE
SYNTAX Adsl2LdsfResult
-- Rsyntax INTEGER {
-- none(1),
-- success(2),
-- inProgress(3),
-- unsupported(4),
-- cannotRun(5),
-- aborted(6),
-- failed(7),
-- illegalMode(8),
-- adminUp(9),
-- tableFull(10),
-- noResources(11)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the recent occasion the Loop diagnostics mode
forced (LDSF) was issued for the associated line. Possible
values are:
none(1) - The default value in case LDSF was never
requested for the associated line.
success(2) - The recent command completed
successfully.
inProgress(3) - The Loop Diagnostics process is in
progress.
unsupported(4) - The NE or the line card doesn't support
LDSF.
cannotRun(5) - The NE cannot initiate the command, due
to a nonspecific reason.
aborted(6) - The Loop Diagnostics process aborted.
failed(7) - The Loop Diagnostics process failed.
illegalMode(8) - The NE cannot initiate the command, due
to the specific mode of the relevant
line.
adminUp(9) - The NE cannot initiate the command, as
the relevant line is administratively
'Up'.
tableFull(10) - The NE cannot initiate the command, due
to reaching the maximum number of rows
in the results table.
noResources(11) - The NE cannot initiate the command, due
to lack of internal memory resources."
DEFVAL { none }
::= { adsl2LineEntry 5 }
adsl2LineCmndAutomodeColdStart OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Automode cold start forced. This parameter is defined
in order to improve testing of the performance of ATUs
supporting automode when it is enabled in the MIB.
Change the value of this parameter to 'true' indicates
a change in loop conditions applied to the devices under
test. The ATUs shall reset any historical information
used for automode and for shortening G.994.1 handshake
and initialization.
Automode is the case where multiple operation-modes are
enabled through the adsl2LConfProfAtuTransSysEna object
in the line configuration profile being used for the
ADSL line, and where the selection of the actual
operation-mode depends not only on the common
capabilities of both ATUs (as exchanged in G.994.1), but
also on achievable data rates under given loop
conditions.
This object MUST be maintained in a persistent manner."
REFERENCE
"ITU-T G.997.1 (amendment 1), 7.3.1.1.10"
DEFVAL { false }
::= { adsl2LineEntry 6 }
adsl2LineStatusAtuTransSys OBJECT-TYPE
SYNTAX Adsl2TransmissionModeType
-- Rsyntax OCTET STRING(SIZE(1..7))
-- BITS are:
-- ansit1413(0)
-- etsi(1)
-- g9921PotsNonOverlapped(2)
-- g9921PotsOverlapped(3)
-- g9921IsdnNonOverlapped(4)
-- g9921isdnOverlapped(5)
-- g9921tcmIsdnNonOverlapped(6)
-- g9921tcmIsdnOverlapped(7)
-- g9922potsNonOverlapped(8)
-- g9922potsOverlapped(9)
-- g9922tcmIsdnNonOverlapped(10)
-- g9922tcmIsdnOverlapped(11)
-- g9921tcmIsdnSymmetric(12)
-- reserved1(13)
-- reserved2(14)
-- reserved3(15)
-- reserved4(16)
-- reserved5(17)
-- g9923PotsNonOverlapped(18)
-- g9923PotsOverlapped(19)
-- g9923IsdnNonOverlapped(20)
-- g9923isdnOverlapped(21)
-- reserved6(22)
-- reserved7(23)
-- g9924potsNonOverlapped(24)
-- g9924potsOverlapped(25)
-- reserved8(26)
-- reserved9(27)
-- g9923AnnexIAllDigNonOverlapped(28)
-- g9923AnnexIAllDigOverlapped(29)
-- g9923AnnexJAllDigNonOverlapped(30)
-- g9923AnnexJAllDigOverlapped(31)
-- g9924AnnexIAllDigNonOverlapped(32)
-- g9924AnnexIAllDigOverlapped(33)
-- g9923AnnexLMode1NonOverlapped(34)
-- g9923AnnexLMode2NonOverlapped(35)
-- g9923AnnexLMode3Overlapped(36)
-- g9923AnnexLMode4Overlapped(37)
-- g9923AnnexMPotsNonOverlapped(38)
-- g9923AnnexMPotsOverlapped(39)
-- g9925PotsNonOverlapped(40)
-- g9925PotsOverlapped(41)
-- g9925IsdnNonOverlapped(42)
-- g9925isdnOverlapped(43)
-- reserved10(44)
-- reserved11(45)
-- g9925AnnexIAllDigNonOverlapped(46)
-- g9925AnnexIAllDigOverlapped(47)
-- g9925AnnexJAllDigNonOverlapped(48)
-- g9925AnnexJAllDigOverlapped(49)
-- g9925AnnexMPotsNonOverlapped(50)
-- g9925AnnexMPotsOverlapped(51)
-- reserved12(52)
-- reserved13(53)
-- reserved14(54)
-- reserved15(55)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The ATU Transmission System (ATS) in use.
It is coded in a bit-map representation with only a single bit
set to '1' (the selected coding for the ADSL line). This
parameter may be derived from the handshaking procedures
defined in Recommendation G.994.1. A set of ADSL2 line
transmission modes, with one bit per mode."
REFERENCE
"ITU-T G.997.1, paragraph 7.3.1.1.1"
::= { adsl2LineEntry 7 }
adsl2LineStatusPwrMngState OBJECT-TYPE
SYNTAX Adsl2PowerMngState
-- Rsyntax INTEGER {
-- l0(1),
-- l1(2),
-- l2(3),
-- l3(4)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current power management state. One of four possible
power management states:
L0 - Synchronized and full transmission (i.e., Showtime).
L1 - Low Power with reduced net data rate (G.992.2 only).
L2 - Low Power with reduced net data rate (G.992.3 and
G.992.4 only).
L3 - No power.
The various possible values are: l0(1), l1(2), l2(3), or
l3(4)."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.2"
::= { adsl2LineEntry 8 }
adsl2LineStatusInitResult OBJECT-TYPE
SYNTAX Adsl2InitResult
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- noFail(0),
-- configError(1),
-- configNotFeasible(2),
-- commFail(3),
-- noPeerAtu(4),
-- otherCause(5)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the result of the last full initialization performed
on the line. It is an enumeration type with the following
values: noFail(0), configError(1), configNotFeasible(2),
commFail(3), noPeerAtu(4), or otherCause(5)."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.3"
::= { adsl2LineEntry 9 }
adsl2LineStatusLastStateDs OBJECT-TYPE
SYNTAX Adsl2LastTransmittedState
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- atucG9941(0),
-- atucQuiet1(1),
-- atucComb1(2),
-- atucQuiet2(3),
-- atucComb2(4),
-- atucIcomb1(5),
-- atucLineprob(6),
-- atucQuiet3(7),
-- atucComb3(8),
-- atucIComb2(9),
-- atucMsgfmt(10),
-- atucMsgpcb(11),
-- atucQuiet4(12),
-- atucReverb1(13),
-- atucTref1(14),
-- atucReverb2(15),
-- atucEct(16),
-- atucReverb3(17),
-- atucTref2(18),
-- atucReverb4(19),
-- atucSegue1(20),
-- atucMsg1(21),
-- atucReverb5(22),
-- atucSegue2(23),
-- atucMedley(24),
-- atucExchmarker(25),
-- atucMsg2(26),
-- atucReverb6(27),
-- atucSegue3(28),
-- atucParams(29),
-- atucReverb7(30),
-- atucSegue4(31),
-- atucShowtime(32),
-- aturG9941(100),
-- aturQuiet1(101),
-- aturComb1(102),
-- aturQuiet2(103),
-- aturComb2(104),
-- aturIcomb1(105),
-- aturLineprob(106),
-- aturQuiet3(107),
-- aturComb3(108),
-- aturIcomb2(109),
-- aturMsgfmt(110),
-- aturMsgpcb(111),
-- aturReverb1(112),
-- aturQuiet4(113),
-- aturReverb2(114),
-- aturQuiet5(115),
-- aturReverb3(116),
-- aturEct(117),
-- aturReverb4(118),
-- aturSegue1(119),
-- aturReverb5(120),
-- aturSegue2(121),
-- aturMsg1(122),
-- aturMedley(123),
-- aturExchmarker(124),
-- aturMsg2(125),
-- aturReverb6(126),
-- aturSegue3(127),
-- aturParams(128),
-- aturReverb7(129),
-- aturSegue4(130),
-- aturShowtime(131)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last successful transmitted initialization state in
the downstream direction in the last full initialization
performed on the line."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.4"
::= { adsl2LineEntry 10 }
adsl2LineStatusLastStateUs OBJECT-TYPE
SYNTAX Adsl2LastTransmittedState
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- atucG9941(0),
-- atucQuiet1(1),
-- atucComb1(2),
-- atucQuiet2(3),
-- atucComb2(4),
-- atucIcomb1(5),
-- atucLineprob(6),
-- atucQuiet3(7),
-- atucComb3(8),
-- atucIComb2(9),
-- atucMsgfmt(10),
-- atucMsgpcb(11),
-- atucQuiet4(12),
-- atucReverb1(13),
-- atucTref1(14),
-- atucReverb2(15),
-- atucEct(16),
-- atucReverb3(17),
-- atucTref2(18),
-- atucReverb4(19),
-- atucSegue1(20),
-- atucMsg1(21),
-- atucReverb5(22),
-- atucSegue2(23),
-- atucMedley(24),
-- atucExchmarker(25),
-- atucMsg2(26),
-- atucReverb6(27),
-- atucSegue3(28),
-- atucParams(29),
-- atucReverb7(30),
-- atucSegue4(31),
-- atucShowtime(32),
-- aturG9941(100),
-- aturQuiet1(101),
-- aturComb1(102),
-- aturQuiet2(103),
-- aturComb2(104),
-- aturIcomb1(105),
-- aturLineprob(106),
-- aturQuiet3(107),
-- aturComb3(108),
-- aturIcomb2(109),
-- aturMsgfmt(110),
-- aturMsgpcb(111),
-- aturReverb1(112),
-- aturQuiet4(113),
-- aturReverb2(114),
-- aturQuiet5(115),
-- aturReverb3(116),
-- aturEct(117),
-- aturReverb4(118),
-- aturSegue1(119),
-- aturReverb5(120),
-- aturSegue2(121),
-- aturMsg1(122),
-- aturMedley(123),
-- aturExchmarker(124),
-- aturMsg2(125),
-- aturReverb6(126),
-- aturSegue3(127),
-- aturParams(128),
-- aturReverb7(129),
-- aturSegue4(130),
-- aturShowtime(131)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last successful transmitted initialization state in the
upstream direction in the last full initialization performed
on the line."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.5"
::= { adsl2LineEntry 11 }
adsl2LineStatusAtur OBJECT-TYPE
SYNTAX Adsl2LineStatus
-- Rsyntax OCTET STRING(SIZE(1..2))
-- BITS are:
-- noDefect(0)
-- lossOfFrame(1)
-- lossOfSignal(2)
-- lossOfPower(3)
-- initFailure(4)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates current state (existing failures) of the ATU-R.
This is a bit-map of possible conditions."
REFERENCE
"ITU-T G.997.1, paragraph 7.1.1.2"
::= { adsl2LineEntry 12 }
adsl2LineStatusAtuc OBJECT-TYPE
SYNTAX Adsl2LineStatus
-- Rsyntax OCTET STRING(SIZE(1..2))
-- BITS are:
-- noDefect(0)
-- lossOfFrame(1)
-- lossOfSignal(2)
-- lossOfPower(3)
-- initFailure(4)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates current state (existing failures) of the ATU-C.
This is a bit-map of possible conditions."
REFERENCE
"ITU-T G.997.1, paragraph 7.1.1.1"
::= { adsl2LineEntry 13 }
adsl2LineStatusLnAttenDs OBJECT-TYPE
SYNTAX Gauge(0..2147483647)
-- Units
-- 0.1 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured difference in the total power transmitted by the
ATU-C and the total power received by the ATU-R over all sub-
carriers during diagnostics mode and initialization. It
ranges from 0 to 1270 units of 0.1 dB (physical values
are 0 to 127 dB).
A special value of 0x7FFFFFFF (2147483647) indicates the line
attenuation is out of range to be represented.
A special value of 0x7FFFFFFE (2147483646) indicates the line
attenuation measurement is currently unavailable."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.6"
::= { adsl2LineEntry 14 }
adsl2LineStatusLnAttenUs OBJECT-TYPE
SYNTAX Gauge(0..2147483647)
-- Units
-- 0.1 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured difference in the total power transmitted by the
ATU-R and the total power received by the ATU-C over all sub-
carriers during diagnostics mode and initialization.
It ranges from 0 to 1270 units of 0.1 dB (physical values are
0 to 127 dB).
A special value of 0x7FFFFFFF (2147483647) indicates the line
attenuation is out of range to be represented.
A special value of 0x7FFFFFFE (2147483646) indicates the line
attenuation measurement is currently unavailable."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.7"
::= { adsl2LineEntry 15 }
adsl2LineStatusSigAttenDs OBJECT-TYPE
SYNTAX Gauge(0..2147483647)
-- Units
-- 0.1 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured difference in the total power transmitted by the
ATU-C and the total power received by the ATU-R over all sub-
carriers during Showtime. It ranges from 0 to 1270 units of
0.1 dB (physical values are 0 to 127 dB).
A special value of 0x7FFFFFFF (2147483647) indicates the
signal attenuation is out of range to be represented.
A special value of 0x7FFFFFFE (2147483646) indicates the
signal attenuation measurement is currently unavailable."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.8"
::= { adsl2LineEntry 16 }
adsl2LineStatusSigAttenUs OBJECT-TYPE
SYNTAX Gauge(0..2147483647)
-- Units
-- 0.1 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured difference in the total power transmitted by the
ATU-R and the total power received by the ATU-C over all sub-
carriers during Showtime. It ranges from 0 to 1270 units of
0.1 dB (physical values are 0 to 127 dB).
A special value of 0x7FFFFFFF (2147483647) indicates the
signal attenuation is out of range to be represented.
A special value of 0x7FFFFFFE (2147483646) indicates the
signal attenuation measurement is currently unavailable."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.9"
::= { adsl2LineEntry 17 }
adsl2LineStatusSnrMarginDs OBJECT-TYPE
SYNTAX INTEGER(-640..630|2147483646|2147483647)
-- Units
-- 0.1 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Downstream SNR Margin is the maximum increase in dB of the
noise power received at the ATU-R, such that the BER
requirements are met for all downstream bearer channels. It
ranges from -640 to 630 units of 0.1 dB (physical values are
-64 to 63 dB).
A special value of 0x7FFFFFFF (2147483647) indicates the
SNR Margin is out of range to be represented.
A special value of 0x7FFFFFFE (2147483646) indicates the
SNR Margin measurement is currently unavailable."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.10"
::= { adsl2LineEntry 18 }
adsl2LineStatusSnrMarginUs OBJECT-TYPE
SYNTAX INTEGER(-640..630|2147483646|2147483647)
-- Units
-- 0.1 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Upstream SNR Margin is the maximum increase in dB of the noise
power received at the ATU-C, such that the BER requirements
are met for all downstream bearer channels. It ranges from
-640 to 630 units of 0.1 dB (physical values are -64 to
63 dB).
A special value of 0x7FFFFFFF (2147483647) indicates the
SNR Margin is out of range to be represented.
A special value of 0x7FFFFFFE (2147483646) indicates the
SNR Margin measurement is currently unavailable."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.11"
::= { adsl2LineEntry 19 }
adsl2LineStatusAttainableRateDs OBJECT-TYPE
SYNTAX Gauge
-- Units
-- bits/second
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximum Attainable Data Rate Downstream.
The maximum downstream net data rate currently attainable by
the ATU-C transmitter and the ATU-R receiver, coded in
bits/second."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.12"
::= { adsl2LineEntry 20 }
adsl2LineStatusAttainableRateUs OBJECT-TYPE
SYNTAX Gauge
-- Units
-- bits/second
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximum Attainable Data Rate Upstream.
The maximum upstream net data rate currently attainable by the
ATU-R transmitter and the ATU-C receiver, coded in
bits/second."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.13"
::= { adsl2LineEntry 21 }
adsl2LineStatusActPsdDs OBJECT-TYPE
SYNTAX INTEGER(-900..0|2147483647)
-- Units
-- 0.1 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Actual Power Spectrum Density (PSD) Downstream. The average
downstream transmit PSD over the sub-carriers used for
downstream. It ranges from -900 to 0 units of 0.1 dB
(physical values are -90 to 0 dBm/Hz).
A value of 0x7FFFFFFF (2147483647) indicates the measurement
is out of range to be represented."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.14"
::= { adsl2LineEntry 22 }
adsl2LineStatusActPsdUs OBJECT-TYPE
SYNTAX INTEGER(-900..0|2147483647)
-- Units
-- 0.1 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Actual Power Spectrum Density (PSD) Upstream. The average
upstream transmit PSD over the sub-carriers used for upstream.
It ranges from -900 to 0 units of 0.1 dB (physical values
are -90 to 0 dBm/Hz).
A value of 0x7FFFFFFF (2147483647) indicates the measurement
is out of range to be represented."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.15"
::= { adsl2LineEntry 23 }
adsl2LineStatusActAtpDs OBJECT-TYPE
SYNTAX INTEGER(-310..310|2147483647)
-- Units
-- 0.1 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Actual Aggregate Transmit Power Downstream. The total amount
of transmit power delivered by the ATU-C at the U-C reference
point, at the instant of measurement. It ranges from -310 to
310 units of 0.1 dB (physical values are -31 to 31 dBm).
A value of 0x7FFFFFFF (2147483647) indicates the measurement
is out of range to be represented."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.16"
::= { adsl2LineEntry 24 }
adsl2LineStatusActAtpUs OBJECT-TYPE
SYNTAX INTEGER(-310..310|2147483647)
-- Units
-- 0.1 dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Actual Aggregate Transmit Power Upstream. The total amount of
transmit power delivered by the ATU-R at the U-R
reference point, at the instant of measurement. It ranges
from -310 to 310 units of 0.1 dB (physical values are -31
to 31 dBm).
A value of 0x7FFFFFFF (2147483647) indicates the measurement
is out of range to be represented."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.1.17"
::= { adsl2LineEntry 25 }
adsl2ChannelStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF Adsl2ChannelStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table adsl2ChannelStatusTable contains status
parameters of the ADSL2 channel. This table contains live
data from equipment."
::= { adsl2Status 1 }
adsl2ChannelStatusEntry OBJECT-TYPE
SYNTAX Adsl2ChannelStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table adsl2ChannelStatusTable contains status
parameters of the ADSL2 channel.
The index of this table consists of an interface index, where
the interface has an ifType value that is applicable
for a DSL channel, along with a termination unit."
INDEX { ifIndex, adsl2ChStatusUnit }
::= { adsl2ChannelStatusTable 1 }
Adsl2ChannelStatusEntry ::= SEQUENCE {
adsl2ChStatusUnit Adsl2Unit,
adsl2ChStatusChannelNum Gauge,
adsl2ChStatusActDataRate Gauge,
adsl2ChStatusPrevDataRate Gauge,
adsl2ChStatusActDelay Gauge,
adsl2ChStatusAtmStatus Adsl2ChAtmStatus,
adsl2ChStatusPtmStatus Adsl2ChPtmStatus
}
adsl2ChStatusUnit OBJECT-TYPE
SYNTAX Adsl2Unit
-- Rsyntax INTEGER {
-- atuc(1),
-- atur(2)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The termination unit atuc(1) or atur(2)."
::= { adsl2ChannelStatusEntry 1 }
adsl2ChStatusChannelNum OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Provides the bearer channel number associated with this
row (i.e., the channel ifIndex).
This enables determining the channel configuration profile
and the channel thresholds profile applicable for this
bearer channel."
::= { adsl2ChannelStatusEntry 2 }
adsl2ChStatusActDataRate OBJECT-TYPE
SYNTAX Gauge(0..200000000)
-- Units
-- bits/second
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The actual net data rate that the bearer channel is operating
at, if in L0 power management state. In L1 or L2 states, it
relates to the previous L0 state. The data rate is coded in
bits/second."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.2.1"
::= { adsl2ChannelStatusEntry 3 }
adsl2ChStatusPrevDataRate OBJECT-TYPE
SYNTAX Gauge(0..200000000)
-- Units
-- bits/second
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The previous net data rate that the bearer channel was
operating at just before the latest rate change event. This
could be a full or short initialization, fast retrain, DRA or
power management transitions, excluding transitions between L0
state and L1 or L2 states. The data rate is coded in
bits/second."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.2.2"
::= { adsl2ChannelStatusEntry 4 }
adsl2ChStatusActDelay OBJECT-TYPE
SYNTAX Gauge(0..8176)
-- Units
-- milliseconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The actual one-way interleaving delay introduced by the
PMS-TC in the direction of the bearer channel, if in L0
power management state. In L1 or L2 states, it relates to
the previous L0 state. It is coded in ms (rounded to the
nearest ms)."
REFERENCE
"ITU-T G.997.1, paragraph 7.5.2.3"
::= { adsl2ChannelStatusEntry 5 }
adsl2ChStatusAtmStatus OBJECT-TYPE
SYNTAX Adsl2ChAtmStatus
-- Rsyntax OCTET STRING(SIZE(1..2))