-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-IETF-VDSL-LINE-MIB-V1SMI.my
1380 lines (1235 loc) · 44.6 KB
/
CISCO-IETF-VDSL-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 15-Nov-2002 17:55:21, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-IETF-VDSL-LINE-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-IETF-VDSL-LINE-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
RowStatus, TruthValue
FROM SNMPv2-TC-v1
ifIndex
FROM IF-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
ciscoExperiment
FROM CISCO-SMI
Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoIetfVdslMIB OBJECT IDENTIFIER ::= { ciscoExperiment 87 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200204180000Z
-- OrgName
-- Cisco Systems
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- The MIB module defining objects for the management of a pair of
-- VDSL modems at each end of the VDSL line. Each VDSL line has
-- an entry in an ifTable.
--
-- An agent may reside at either end of the VDSL line however the
-- MIB is designed to require no management communication between
-- them beyond that inherent in the low-level VDSL line protocol.
-- The agent may monitor and control this protocol for its needs.
--
-- VDSL lines may support optional Fast or Interleaved channels.
-- If these are supported, additional entries corresponding to the
-- supported channels must be created in the ifTable. Thus a VDSL
-- line that supports both channels will have three entries in the
-- ifTable, one for each physical, fast, and interleaved, whose
-- ifType values are equal to vdsl(97), fast(125), and
-- interleaved(124), respectively. The ifStackTable is used to
-- represent the relationship between the entries.
--
-- Naming Conventions:
-- Vtuc == (VTUC) modem at near (Central) end of line
-- Vtur == (VTUR) modem at Remote end of line
-- Vtu == One of either Vtuc or Vtur
-- Curr == Current
-- Prev == Previous
-- Atn == Attenuation
-- ES == Errored Second.
-- LCS == Line Code Specific
-- Lof == Loss of Frame
-- Lol == Loss of Link
-- Los == Loss of Signal
-- Lpr == Loss of Power
-- xyzs == interval of Seconds in which xyz occurs
-- (e.g., xyz=Lof, Los, Lpr)
-- Max == Maximum
-- Mgn == Margin
-- Min == Minimum
-- Psd == Power Spectral Density
-- Snr == Signal to Noise Ratio
-- Tx == Transmit
-- Blks == Blocks, a data unit, see cvdslVtuXChanCrcBlockLength
--
-- RevDate
-- 200204180000Z
-- RevDescr
-- This is a cisco version of the Internet draft
cvdslLineMib OBJECT IDENTIFIER ::= { ciscoIetfVdslMIB 1 }
cvdslMibObjects OBJECT IDENTIFIER ::= { cvdslLineMib 1 }
cvdslNotifications OBJECT IDENTIFIER ::= { cvdslLineMib 0 }
cvdslConformance OBJECT IDENTIFIER ::= { cvdslLineMib 3 }
cvdslGroups OBJECT IDENTIFIER ::= { cvdslConformance 1 }
cvdslCompliances OBJECT IDENTIFIER ::= { cvdslConformance 2 }
CVdslLineCodingType ::= INTEGER {
other(1),
mcm(2),
scm(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This data type is used as the syntax for the VDSL
-- Line Code.
CVdslLineEntity ::= INTEGER {
vtuc(1),
vtur(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Identifies a modem as being either Vtuc or Vtur. A
-- VDSL line consists of two modems, a Vtuc and a Vtur.
cvdslLineTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvdslLineEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table includes common attributes describing
both ends of the line. It is required for all VDSL
physical interfaces. VDSL physical interfaces are
those ifEntries where ifType is equal to vdsl(97)."
::= { cvdslMibObjects 1 }
cvdslLineEntry OBJECT-TYPE
SYNTAX CvdslLineEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the cvdslLineTable."
INDEX { ifIndex }
::= { cvdslLineTable 1 }
CvdslLineEntry ::= SEQUENCE {
cvdslLineCoding CVdslLineCodingType,
cvdslLineType INTEGER,
cvdslLineConfProfile INTEGER,
cvdslLineAlarmConfProfile INTEGER
}
cvdslLineCoding OBJECT-TYPE
SYNTAX CVdslLineCodingType
-- Rsyntax INTEGER {
-- other(1),
-- mcm(2),
-- scm(3)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the VDSL coding type used on this line."
::= { cvdslLineEntry 1 }
cvdslLineType OBJECT-TYPE
SYNTAX INTEGER {
noChannel(1),
fastOnly(2),
slowOnly(3),
either(4),
both(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Defines the type of VDSL physical line
entity that exists, by defining whether and how
the line is channelized. If the line is channelized,
the value will be other than noChannel(1). This
object defines which channel type(s) are supported.
In the case that the line is channelized, the manager
can use the ifStackTable to determine the ifIndex for
the associated channel(s)."
::= { cvdslLineEntry 2 }
cvdslLineConfProfile OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object identifies the rows
in the VDSL Line Configuration Profile Table,
( cvdslLineConfProfileTable ), which apply for this
VDSL line, and channels if applicable."
::= { cvdslLineEntry 3 }
cvdslLineAlarmConfProfile OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object identifies the rows in the VDSL
Line Alarm Configuration Profile Table,
( cvdslLineAlarmConfProfileTable ), which apply to this
VDSL line, and channels if applicable."
::= { cvdslLineEntry 4 }
cvdslPhysTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvdslPhysEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides one row for each Vtu. Each row
contains the Physical Layer Parameters table for that
Vtu. VDSL physical interfaces are those ifEntries where
ifType is equal to vdsl(97)."
::= { cvdslMibObjects 2 }
cvdslPhysEntry OBJECT-TYPE
SYNTAX CvdslPhysEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the cvdslPhysTable."
INDEX { ifIndex, cvdslPhysSide }
::= { cvdslPhysTable 1 }
CvdslPhysEntry ::= SEQUENCE {
cvdslPhysSide CVdslLineEntity,
cvdslInvSerialNumber SnmpAdminString,
cvdslInvVendorID SnmpAdminString,
cvdslInvVersionNumber SnmpAdminString,
cvdslCurrSnrMgn INTEGER,
cvdslCurrAtn Gauge,
cvdslCurrStatus OCTET STRING,
cvdslCurrOutputPwr INTEGER,
cvdslCurrAttainableRate Gauge
}
cvdslPhysSide OBJECT-TYPE
SYNTAX CVdslLineEntity
-- Rsyntax INTEGER {
-- vtuc(1),
-- vtur(2)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Identifies whether the modem is the Vtuc or Vtur."
::= { cvdslPhysEntry 1 }
cvdslInvSerialNumber OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(0..32))
-- Rsyntax OCTET STRING(SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The vendor specific string that identifies the
vendor equipment."
::= { cvdslPhysEntry 2 }
cvdslInvVendorID OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(0..16))
-- Rsyntax OCTET STRING(SIZE(0..16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The vendor ID code is a copy of the binary vendor
identification field defined by the PHY[10] and
expressed as readable characters."
::= { cvdslPhysEntry 3 }
cvdslInvVersionNumber OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(0..16))
-- Rsyntax OCTET STRING(SIZE(0..16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The vendor specific version number sent by this Vtu
as part of the initialization messages. It is a copy
of the binary version number field defined by the
PHY[10] and expressed as readable characters."
::= { cvdslPhysEntry 4 }
cvdslCurrSnrMgn OBJECT-TYPE
SYNTAX INTEGER(-640..640)
-- Units
-- tenth dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Noise Margin as seen by this Vtu with respect to its
received signal in tenth dB."
::= { cvdslPhysEntry 5 }
cvdslCurrAtn OBJECT-TYPE
SYNTAX Gauge(0..630)
-- Units
-- tenth dB
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Measured difference in the total power transmitted by
the peer Vtu and the total power received by this Vtu."
::= { cvdslPhysEntry 6 }
cvdslCurrStatus OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- noDefect(0)
-- lossOfFraming(1)
-- lossOfSignal(2)
-- lossOfPower(3)
-- lossOfSignalQuality(4)
-- lossOfLink(5)
-- dataInitFailure(6)
-- configInitFailure(7)
-- protocolInitFailure(8)
-- noPeerVtuPresent(9)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates current state of the Vtu line. This is a
bit-map of possible conditions. The various bit
positions are:
0 noDefect There no defects on the line
1 lossOfFraming Vtu failure due to not receiving
valid frame.
2 lossOfSignal Vtu failure due to not receiving
signal.
3 lossOfPower Vtu failure due to loss of power.
4 lossOfSignalQuality Loss of Signal Quality is declared
when the Noise Margin falls below
the Minimum Noise Margin, or the
bit-error-rate exceeds 10^-7.
5 lossOfLink Vtu failure due to inability to
link with peer Vtu.
6 dataInitFailure Vtu failure during initialization
due to bit errors corrupting
startup exchange data.
7 configInitFailure Vtu failure during initialization
due to peer Vtu not able to support
requested configuration.
8 protocolInitFailure Vtu failure during initialization
due to incompatible protocol used
by the peer Vtu.
9 noPeerVtuPresent Vtu failure during initialization
due to no activation sequence
detected from peer Vtu.
This is intended to supplement ifOperStatus."
::= { cvdslPhysEntry 7 }
cvdslCurrOutputPwr OBJECT-TYPE
SYNTAX INTEGER(-310..310)
-- Units
-- tenth dBm
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Measured total output power transmitted by this ATU.
This is the measurement that was reported during
the last activation sequence."
::= { cvdslPhysEntry 8 }
cvdslCurrAttainableRate OBJECT-TYPE
SYNTAX Gauge
-- Units
-- bps
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the maximum currently attainable data rate
by the Vtu. This value will be equal or greater than
the current line rate."
::= { cvdslPhysEntry 9 }
cvdslChanTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvdslChanEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides one row for each Vtu channel.
VDSL channel interfaces are those ifEntries where
ifType is equal to interleave(124) or fast(125)."
::= { cvdslMibObjects 3 }
cvdslChanEntry OBJECT-TYPE
SYNTAX CvdslChanEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the cvdslChanTable."
INDEX { ifIndex, cvdslPhysSide }
::= { cvdslChanTable 1 }
CvdslChanEntry ::= SEQUENCE {
cvdslChanInterleaveDelay Gauge,
cvdslChanCrcBlockLength Gauge
}
cvdslChanInterleaveDelay OBJECT-TYPE
SYNTAX Gauge
-- Units
-- milli-seconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Interleave Delay for this channel.
Interleave delay applies only to the interleave
(slow) channel and defines the mapping (relative
spacing) between subsequent input bytes at the
interleaver input and their placement in the bit
stream at the interleaver output. Larger numbers
provide greater separation between consecutive
input bytes in the output bit stream allowing for
improved impulse noise immunity at the expense of
payload latency.
In the case where the ifType is fast(125), the
object is not instantiated."
::= { cvdslChanEntry 1 }
cvdslChanCrcBlockLength OBJECT-TYPE
SYNTAX Gauge
-- Units
-- byte
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the length of the channel data-block
on which the CRC operates."
::= { cvdslChanEntry 2 }
cvdslLineConfProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvdslLineConfProfileEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains information on the VDSL line
configuration. One entry in this table reflects a
profile defined by a manager which can be used to
configure the VDSL line."
::= { cvdslMibObjects 8 }
cvdslLineConfProfileEntry OBJECT-TYPE
SYNTAX CvdslLineConfProfileEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry consists of a list of parameters that
represents the configuration of a VDSL modem. A
default profile with an index of 1 will always exist
and its parameters will be set to vendor specific
values, unless otherwise specified in this document."
INDEX { cvdslPhysSide, cvdslLineConfProfileIndex }
::= { cvdslLineConfProfileTable 1 }
CvdslLineConfProfileEntry ::= SEQUENCE {
cvdslLineConfProfileIndex INTEGER,
cvdslLineConfProfileName SnmpAdminString,
cvdslLineConfTargetSnrMgn INTEGER,
cvdslLineConfTxSpeed INTEGER,
cvdslLineConfRxSpeed INTEGER,
cvdslLineConfProfileRowStatus RowStatus
}
cvdslLineConfProfileIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object is used by the line configuration table
in order to identify a row in that table. The system
will always provide a default profile whose value is 1."
::= { cvdslLineConfProfileEntry 1 }
cvdslLineConfProfileName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(1..32))
-- Rsyntax OCTET STRING(SIZE(1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The name for this profile as specified by a user."
::= { cvdslLineConfProfileEntry 2 }
cvdslLineConfTargetSnrMgn OBJECT-TYPE
SYNTAX INTEGER(0..310)
-- Units
-- tenth dB
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Configured Target Signal/Noise Margin. This is the
Noise Margin the modem must achieve with a BER of 10-7
or better to successfully complete initialization."
::= { cvdslLineConfProfileEntry 3 }
cvdslLineConfTxSpeed OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
-- Units
-- bits per second
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Transmit speed for this modem. The corresponding modem
on the other end of the VDSL line will have an equal
cvdslLineConfRxSpeed value."
::= { cvdslLineConfProfileEntry 4 }
cvdslLineConfRxSpeed OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
-- Units
-- bits per second
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Receive speed for this modem. The corresponding modem
on the other end of the VDSL line will have an equal
cvdslLineConfTxSpeed value."
::= { cvdslLineConfProfileEntry 5 }
cvdslLineConfProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table.
A profile activated by setting this object to `active'.
When `active' is set, the system will validate the profile.
Before a profile can be deleted or taken out of
service, (by setting this object to `destroy' or
`outOfService') it must be first unreferenced
from all associated lines.
The DEFVAL profile cannot be deleted."
::= { cvdslLineConfProfileEntry 6 }
cvdslLineMCMConfProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvdslLineMCMConfProfileEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains information on the VDSL line
configuration. One entry in this table reflects a
profile defined by a manager which can be used to
configure the VDSL line."
::= { cvdslMibObjects 9 }
cvdslLineMCMConfProfileEntry OBJECT-TYPE
SYNTAX CvdslLineMCMConfProfileEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry consists of a list of parameters that
represents the configuration of a multiple carrier
modulation VDSL modem. A default profile with an
index of 1 will always exist and its parameters will
be set to vendor specific values, unless otherwise
specified in this document."
INDEX { cvdslPhysSide, cvdslLineConfProfileIndex }
::= { cvdslLineMCMConfProfileTable 1 }
CvdslLineMCMConfProfileEntry ::= SEQUENCE {
cvdslMCMConfProfileTxWindowLength INTEGER,
cvdslMCMConfProfileRowStatus RowStatus
}
cvdslMCMConfProfileTxWindowLength OBJECT-TYPE
SYNTAX INTEGER(1..255)
-- Units
-- samples
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the length of the transmit window, counted
in samples at the sampling rate corresponding to the
negotiated value of N."
::= { cvdslLineMCMConfProfileEntry 1 }
cvdslMCMConfProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table.
A profile activated by setting this object to `active'.
When `active' is set, the system will validate the profile.
Before a profile can be deleted or taken out of
service, (by setting this object to `destroy' or
`outOfService') it must be first unreferenced
from all associated lines."
::= { cvdslLineMCMConfProfileEntry 2 }
cvdslLineMCMConfProfileTxBandTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvdslLineMCMConfProfileTxBandEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains transmit band descriptor configuration
information for a VDSL line. Each entry in this table
reflects the configuration for one of possibly many bands
with a multiple carrier modulation (MCM) VDSL line.
These entries are defined by a manager and can be used to
configure the VDSL line."
::= { cvdslMibObjects 10 }
cvdslLineMCMConfProfileTxBandEntry OBJECT-TYPE
SYNTAX CvdslLineMCMConfProfileTxBandEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry consists of a transmit band descriptor, which
is defined by a start and a stop tone index.
A default profile with an index of 1 will always exist and
its parameters will be set to vendor specific values,
unless otherwise specified in this document."
INDEX { cvdslPhysSide, cvdslLineConfProfileIndex, cvdslMCMConfProfileTxBandNumber }
::= { cvdslLineMCMConfProfileTxBandTable 1 }
CvdslLineMCMConfProfileTxBandEntry ::= SEQUENCE {
cvdslMCMConfProfileTxBandNumber INTEGER,
cvdslMCMConfProfileTxBandStart INTEGER,
cvdslMCMConfProfileTxBandStop INTEGER,
cvdslMCMConfProfileTxBandRowStatus RowStatus
}
cvdslMCMConfProfileTxBandNumber OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The index for this band descriptor entry."
::= { cvdslLineMCMConfProfileTxBandEntry 1 }
cvdslMCMConfProfileTxBandStart OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Start tone index for this band."
::= { cvdslLineMCMConfProfileTxBandEntry 2 }
cvdslMCMConfProfileTxBandStop OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Stop tone index for this band."
::= { cvdslLineMCMConfProfileTxBandEntry 3 }
cvdslMCMConfProfileTxBandRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table.
A profile activated by setting this object to `active'.
When `active' is set, the system will validate the profile.
Before a profile can be deleted or taken out of
service, (by setting this object to `destroy' or
`outOfService') it must be first unreferenced
from all associated lines."
::= { cvdslLineMCMConfProfileTxBandEntry 4 }
cvdslLineMCMConfProfileRxBandTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvdslLineMCMConfProfileRxBandEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains receive band descriptor configuration
information for a VDSL line. Each entry in this table
reflects the configuration for one of possibly many bands
with a multiple carrier modulation (MCM) VDSL line.
These entries are defined by a manager and can be used to
configure the VDSL line."
::= { cvdslMibObjects 11 }
cvdslLineMCMConfProfileRxBandEntry OBJECT-TYPE
SYNTAX CvdslLineMCMConfProfileRxBandEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry consists of a transmit band descriptor, which
defines the start and stop bands and the power spectral
density (PSD) for that band.
A default profile with an index of 1 will always exist and
its parameters will be set to vendor specific values,
unless otherwise specified in this document."
INDEX { cvdslPhysSide, cvdslLineConfProfileIndex, cvdslMCMConfProfileRxBandNumber }
::= { cvdslLineMCMConfProfileRxBandTable 1 }
CvdslLineMCMConfProfileRxBandEntry ::= SEQUENCE {
cvdslMCMConfProfileRxBandNumber INTEGER,
cvdslMCMConfProfileRxBandStart INTEGER,
cvdslMCMConfProfileRxBandStop INTEGER,
cvdslMCMConfProfileRxBandRowStatus RowStatus
}
cvdslMCMConfProfileRxBandNumber OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The index for this band descriptor entry."
::= { cvdslLineMCMConfProfileRxBandEntry 1 }
cvdslMCMConfProfileRxBandStart OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Start tone index for this band."
::= { cvdslLineMCMConfProfileRxBandEntry 2 }
cvdslMCMConfProfileRxBandStop OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Stop tone index for this band."
::= { cvdslLineMCMConfProfileRxBandEntry 3 }
cvdslMCMConfProfileRxBandRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table.
A profile activated by setting this object to `active'.
When `active' is set, the system will validate the profile.
Before a profile can be deleted or taken out of
service, (by setting this object to `destroy' or
`outOfService') it must be first unreferenced
from all associated lines."
::= { cvdslLineMCMConfProfileRxBandEntry 4 }
cvdslLineMCMConfProfileTxPSDTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvdslLineMCMConfProfileTxPSDEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains transmit PSD mask descriptor
configuration information for a VDSL line. Each entry in
this table reflects the configuration for one tone within
a multiple carrier modulation (MCM) VDSL line. These
entries are defined by a manager and can be used to
configure the VDSL line."
::= { cvdslMibObjects 12 }
cvdslLineMCMConfProfileTxPSDEntry OBJECT-TYPE
SYNTAX CvdslLineMCMConfProfileTxPSDEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry consists of a transmit PSD mask descriptor,
which defines the power spectral density (PSD) for a tone.
A default profile with an index of 1 will always exist and
its parameters will be set to vendor specific values,
unless otherwise specified in this document."
INDEX { cvdslPhysSide, cvdslLineConfProfileIndex, cvdslMCMConfProfileTxPSDNumber }
::= { cvdslLineMCMConfProfileTxPSDTable 1 }
CvdslLineMCMConfProfileTxPSDEntry ::= SEQUENCE {
cvdslMCMConfProfileTxPSDNumber INTEGER,
cvdslMCMConfProfileTxPSDTone INTEGER,
cvdslMCMConfProfileTxPSDPSD INTEGER,
cvdslMCMConfProfileTxPSDRowStatus RowStatus
}
cvdslMCMConfProfileTxPSDNumber OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The index for this mask descriptor entry."
::= { cvdslLineMCMConfProfileTxPSDEntry 1 }
cvdslMCMConfProfileTxPSDTone OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The tone index for which the PSD is being specified."
::= { cvdslLineMCMConfProfileTxPSDEntry 2 }
cvdslMCMConfProfileTxPSDPSD OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
-- Units
-- 0.5dB
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Power Spectral Density level in steps of 0.5dB with
an offset of -140dbm/Hz."
::= { cvdslLineMCMConfProfileTxPSDEntry 3 }
cvdslMCMConfProfileTxPSDRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table.
A profile activated by setting this object to `active'.
When `active' is set, the system will validate the profile.
Before a profile can be deleted or taken out of
service, (by setting this object to `destroy' or
`outOfService') it must be first unreferenced
from all associated lines."
::= { cvdslLineMCMConfProfileTxPSDEntry 4 }
cvdslLineMCMConfProfileMaxTxPSDTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvdslLineMCMConfProfileMaxTxPSDEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains transmit maximum PSD mask descriptor
configuration information for a VDSL line. Each entry in
this table reflects the configuration for one tone within
a multiple carrier modulation (MCM) VDSL modem. These
entries are defined by a manager and can be used to
configure the VDSL line."
::= { cvdslMibObjects 13 }
cvdslLineMCMConfProfileMaxTxPSDEntry OBJECT-TYPE
SYNTAX CvdslLineMCMConfProfileMaxTxPSDEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry consists of a transmit PSD mask descriptor,
which defines the maximum power spectral density (PSD)
for a tone.
A default profile with an index of 1 will always exist and
its parameters will be set to vendor specific values,
unless otherwise specified in this document."
INDEX { cvdslPhysSide, cvdslLineConfProfileIndex, cvdslMCMConfProfileMaxTxPSDNumber }
::= { cvdslLineMCMConfProfileMaxTxPSDTable 1 }
CvdslLineMCMConfProfileMaxTxPSDEntry ::= SEQUENCE {
cvdslMCMConfProfileMaxTxPSDNumber INTEGER,
cvdslMCMConfProfileMaxTxPSDTone INTEGER,
cvdslMCMConfProfileMaxTxPSDPSD INTEGER,
cvdslMCMConfProfileMaxTxPSDRowStatus RowStatus
}
cvdslMCMConfProfileMaxTxPSDNumber OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The index for this band descriptor entry."
::= { cvdslLineMCMConfProfileMaxTxPSDEntry 1 }
cvdslMCMConfProfileMaxTxPSDTone OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The tone index for which the PSD is being specified."
::= { cvdslLineMCMConfProfileMaxTxPSDEntry 2 }
cvdslMCMConfProfileMaxTxPSDPSD OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
-- Units
-- 0.5dB
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Power Spectral Density level in steps of 0.5dB with
an offset of -140dbm/Hz."
::= { cvdslLineMCMConfProfileMaxTxPSDEntry 3 }
cvdslMCMConfProfileMaxTxPSDRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table.
A profile activated by setting this object to `active'.
When `active' is set, the system will validate the profile.
Before a profile can be deleted or taken out of
service, (by setting this object to `destroy' or
`outOfService') it must be first unreferenced
from all associated lines."
::= { cvdslLineMCMConfProfileMaxTxPSDEntry 4 }
cvdslLineMCMConfProfileMaxRxPSDTable OBJECT-TYPE
SYNTAX SEQUENCE OF CvdslLineMCMConfProfileMaxRxPSDEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains maximum receive PSD mask descriptor
configuration information for a VDSL line. Each entry in
this table reflects the configuration for one tone within
a multiple carrier modulation (MCM) VDSL modem. These
entries are defined by a manager and can be used to
configure the VDSL line."
::= { cvdslMibObjects 14 }
cvdslLineMCMConfProfileMaxRxPSDEntry OBJECT-TYPE
SYNTAX CvdslLineMCMConfProfileMaxRxPSDEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry consists of a transmit PSD mask descriptor,
which defines the power spectral density (PSD) for a
tone.
A default profile with an index of 1 will always exist and
its parameters will be set to vendor specific values,
unless otherwise specified in this document."
INDEX { cvdslPhysSide, cvdslLineConfProfileIndex, cvdslMCMConfProfileMaxRxPSDNumber }
::= { cvdslLineMCMConfProfileMaxRxPSDTable 1 }
CvdslLineMCMConfProfileMaxRxPSDEntry ::= SEQUENCE {
cvdslMCMConfProfileMaxRxPSDNumber INTEGER,
cvdslMCMConfProfileMaxRxPSDTone INTEGER,
cvdslMCMConfProfileMaxRxPSDPSD INTEGER,
cvdslMCMConfProfileMaxRxPSDRowStatus RowStatus
}
cvdslMCMConfProfileMaxRxPSDNumber OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION