forked from JoshLipps/mibbrowser-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRFC1406-MIB
1547 lines (1362 loc) · 56.2 KB
/
RFC1406-MIB
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
-- Changes to rfc1406 (DS1/E1 MIB):
-- No changes needed.
RFC1406-MIB DEFINITIONS ::= BEGIN
IMPORTS
Gauge
FROM RFC1155-SMI
transmission, DisplayString
FROM RFC1213-MIB
OBJECT-TYPE
FROM RFC-1212;
-- This MIB module uses the extended OBJECT-TYPE macro as
-- defined in RFC 1212.
-- this is the MIB module for the DS1 objects
ds1 OBJECT IDENTIFIER ::= { transmission 18 }
-- note that this subsumes cept (19); there is no separate CEPT MIB
-- The DS1 Near End Group
-- Implementation of this group is mandatory for all systems
-- that attach to a DS1 Interface.
-- The DS1 Near End Group consists of four tables:
-- DS1 Configuration
-- DS1 Current
-- DS1 Interval
-- DS1 Total
-- the DS1 Configuration Table
dsx1ConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dsx1ConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The DS1 Configuration table."
::= { ds1 6 }
dsx1ConfigEntry OBJECT-TYPE
SYNTAX Dsx1ConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the DS1 Configuration table."
INDEX { dsx1LineIndex }
::= { dsx1ConfigTable 1 }
Dsx1ConfigEntry ::=
SEQUENCE {
dsx1LineIndex
INTEGER,
dsx1IfIndex
INTEGER,
dsx1TimeElapsed
INTEGER,
dsx1ValidIntervals
INTEGER,
dsx1LineType
INTEGER,
dsx1LineCoding
INTEGER,
dsx1SendCode
INTEGER,
dsx1CircuitIdentifier
DisplayString,
dsx1LoopbackConfig
INTEGER,
dsx1LineStatus
INTEGER,
dsx1SignalMode
INTEGER,
dsx1TransmitClockSource
INTEGER,
dsx1Fdl
INTEGER
}
dsx1LineIndex OBJECT-TYPE
SYNTAX INTEGER (1..'7fffffff'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is the identifier of a DS1 Inter-
face on a managed device. If there is an ifEn-
try that is directly associated with this and
only this DS1 interface, it should have the
same value as ifIndex. Otherwise, the value
exceeds ifNumber, and is a unique identifier
following this rule: inside interfaces (e.g.,
equipment side) with even numbers and outside
interfaces (e.g., network side) with odd
numbers."
::= { dsx1ConfigEntry 1 }
dsx1IfIndex OBJECT-TYPE
SYNTAX INTEGER (1..'7fffffff'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value for this object is equal to the
value of ifIndex from the Interfaces table of
MIB II (RFC 1213)."
::= { dsx1ConfigEntry 2 }
dsx1TimeElapsed OBJECT-TYPE
SYNTAX INTEGER (0..899)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of seconds that have elapsed since
the beginning of the current error-measurement
period."
::= { dsx1ConfigEntry 3 }
dsx1ValidIntervals OBJECT-TYPE
SYNTAX INTEGER (0..96)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of previous intervals for which
valid data was collected. The value will be 96
unless the interface was brought on-line within
the last 24 hours, in which case the value will
be the number of complete 15 minute intervals
the since interface has been online."
::= { dsx1ConfigEntry 4 }
dsx1LineType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
dsx1ESF(2),
dsx1D4(3),
dsx1E1(4),
dsx1E1-CRC(5),
dsx1E1-MF(6),
dsx1E1-CRC-MF(7)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable indicates the variety of DS1
Line implementing this circuit. The type of
circuit affects the number of bits per second
that the circuit can reasonably carry, as well
as the interpretation of the usage and error
statistics. The values, in sequence, describe:
TITLE: SPECIFICATION:
dsx1ESF Extended SuperFrame DS1
dsx1D4 AT&T D4 format DS1
dsx1E1 CCITT Recommendation G.704
(Table 4a)
dsx1E1-CRC CCITT Recommendation G.704
(Table 4b)
dsxE1-MF G.704 (Table 4a) with TS16
multiframing enabled
dsx1E1-CRC-MF G.704 (Table 4b) with TS16
multiframing enabled"
::= { dsx1ConfigEntry 5 }
dsx1LineCoding OBJECT-TYPE
SYNTAX INTEGER {
dsx1JBZS (1),
dsx1B8ZS (2),
dsx1HDB3 (3),
dsx1ZBTSI (4),
dsx1AMI (5),
other(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable describes the variety of Zero
Code Suppression used on the link, which in
turn affects a number of its characteristics.
dsx1JBZS refers the Jammed Bit Zero Suppres-
sion, in which the AT&T specification of at
least one pulse every 8 bit periods is literal-
ly implemented by forcing a pulse in bit 8 of
each channel. Thus, only seven bits per chan-
nel, or 1.344 Mbps, is available for data.
dsx1B8ZS refers to the use of a specified pat-
tern of normal bits and bipolar violations
which are used to replace a sequence of eight
zero bits.
ANSI Clear Channels may use dsx1ZBTSI, or Zero
Byte Time Slot Interchange.
E1 links, with or without CRC, use dsx1HDB3 or
dsx1AMI.
dsx1AMI refers to a mode wherein no zero code
suppression is present and the line encoding
does not solve the problem directly. In this
application, the higher layer must provide data
which meets or exceeds the pulse density re-
quirements, such as inverting HDLC data."
::= { dsx1ConfigEntry 6 }
dsx1SendCode OBJECT-TYPE
SYNTAX INTEGER {
dsx1SendNoCode(1),
dsx1SendLineCode(2),
dsx1SendPayloadCode(3),
dsx1SendResetCode(4),
dsx1SendQRS(5),
dsx1Send511Pattern(6),
dsx1Send3in24Pattern(7),
dsx1SendOtherTestPattern(8)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable indicates what type of code is
being sent across the DS1 interface by the dev-
ice. The values mean:
dsx1SendNoCode
sending looped or normal data
dsx1SendLineCode
sending a request for a line loopback
dsx1SendPayloadCode
sending a request for a payload loopback
dsx1SendResetCode
sending a loopback termination request
dsx1SendQRS
sending a Quasi-Random Signal (QRS) test
pattern
dsx1Send511Pattern
sending a 511 bit fixed test pattern
dsx1Send3in24Pattern
sending a fixed test pattern of 3 bits set
in 24
dsx1SendOtherTestPattern
sending a test pattern other than those
described by this object"
::= { dsx1ConfigEntry 7 }
dsx1CircuitIdentifier OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable contains the transmission
vendor's circuit identifier, for the purpose of
facilitating troubleshooting."
::= { dsx1ConfigEntry 8 }
dsx1LoopbackConfig OBJECT-TYPE
SYNTAX INTEGER {
dsx1NoLoop(1),
dsx1PayloadLoop(2),
dsx1LineLoop(3),
dsx1OtherLoop(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable represents the loopback confi-
guration of the DS1 interface. Agents support-
ing read/write access should return badValue in
response to a requested loopback state that the
interface does not support. The values mean:
dsx1NoLoop
Not in the loopback state. A device that
is not capable of performing a loopback on
the interface shall always return this as
it's value.
dsx1PayloadLoop
The received signal at this interface is
looped through the device. Typically the
received signal is looped back for re-
transmission after it has passed through
the device's framing function.
dsx1LineLoop
The received signal at this interface does
not go through the device (minimum pene-
tration) but is looped back out.
dsx1OtherLoop
Loopbacks that are not defined here."
::= { dsx1ConfigEntry 9 }
dsx1LineStatus OBJECT-TYPE
SYNTAX INTEGER (1..8191)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the Line Status of the
interface. It contains loopback, failure, re-
ceived 'alarm' and transmitted 'alarm' infor-
mation.
The dsx1LineStatus is a bit map represented as a sum,
therefore, it can represent multiple failures (alarms) and
a LoopbackState simultaneously.
dsx1NoAlarm should be set if and only if no other flag is
set.
If the dsx1LoopbackState bit is set, the loopback in ef-
fect can be determined from the dsx1LoopbackConfig object.
The various bit positions are:
1 dsx1NoAlarm No Alarm Present
2 dsx1RcvFarEndLOF Far end LOF (a.k.a., Yellow Alarm)
4 dsx1XmtFarEndLOF Near end sending LOF Indication
8 dsx1RcvAIS Far end sending AIS
16 dsx1XmtAIS Near end sending AIS
32 dsx1LossOfFrame Near end LOF (a.k.a., Red Alarm)
64 dsx1LossOfSignal Near end Loss Of Signal
128 dsx1LoopbackState Near end is looped
256 dsx1T16AIS E1 TS16 AIS
512 dsx1RcvFarEndLOMF Far End Sending TS16 LOMF
1024 dsx1XmtFarEndLOMF Near End Sending TS16 LOMF
2048 dsx1RcvTestCode Near End detects a test code
4096 dsx1OtherFailure any line status not defined here"
::= { dsx1ConfigEntry 10 }
dsx1SignalMode OBJECT-TYPE
SYNTAX INTEGER {
none (1),
robbedBit (2),
bitOriented (3),
messageOriented (4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"'none' indicates that no bits are reserved for
signaling on this channel.
'robbedBit' indicates that T1 Robbed Bit Sig-
naling is in use.
'bitOriented' indicates that E1 Channel Asso-
ciated Signaling is in use.
'messageOriented' indicates that Common Chan-
nel Signaling is in use either on channel 16 of
an E1 link or channel 24 of a T1."
::= { dsx1ConfigEntry 11 }
dsx1TransmitClockSource OBJECT-TYPE
SYNTAX INTEGER {
loopTiming (1),
localTiming (2),
throughTiming (3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The source of Tranmit Clock.
'loopTiming' indicates that the recovered re-
ceive clock is used as the transmit clock.
'localTiming' indicates that a local clock
source is used.
'throughTiming' indicates that recovered re-
ceive clock from another interface is used as
the transmit clock."
::= { dsx1ConfigEntry 12 }
dsx1Fdl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
dsx1Ansi-T1-403(2),
dsx1Att-54016(4),
dsx1Fdl-none(8)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This bitmap describes the use of the facili-
ties data link, and is the sum of the capabili-
ties:
'other' indicates that a protocol other than
one following is used.
'dsx1Ansi-T1-403' refers to the FDL exchange
recommended by ANSI.
'dsx1Att-54016' refers to ESF FDL exchanges.
'dsx1Fdl-none' indicates that the device does
not use the FDL."
::= { dsx1ConfigEntry 13 }
-- the DS1 Current Table
-- The DS1 current table contains various statistics being
-- collected for the current 15 minute interval.
dsx1CurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dsx1CurrentEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The DS1 Current table."
::= { ds1 7 }
dsx1CurrentEntry OBJECT-TYPE
SYNTAX Dsx1CurrentEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the DS1 Current table."
INDEX { dsx1CurrentIndex }
::= { dsx1CurrentTable 1 }
Dsx1CurrentEntry ::=
SEQUENCE {
dsx1CurrentIndex
INTEGER,
dsx1CurrentESs
Gauge,
dsx1CurrentSESs
Gauge,
dsx1CurrentSEFSs
Gauge,
dsx1CurrentUASs
Gauge,
dsx1CurrentCSSs
Gauge,
dsx1CurrentPCVs
Gauge,
dsx1CurrentLESs
Gauge,
dsx1CurrentBESs
Gauge,
dsx1CurrentDMs
Gauge,
dsx1CurrentLCVs
Gauge
}
dsx1CurrentIndex OBJECT-TYPE
SYNTAX INTEGER (1..'7fffffff'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index value which uniquely identifies the
DS1 interface to which this entry is applica-
ble. The interface identified by a particular
value of this index is the same interface as
identified by the same value as a dsx1LineIndex
object instance."
::= { dsx1CurrentEntry 1 }
dsx1CurrentESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Errored Seconds, encountered by
a DS1 interface in the current 15 minute inter-
val."
::= { dsx1CurrentEntry 2 }
dsx1CurrentSESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Severely Errored Seconds encoun-
tered by a DS1 interface in the current 15
minute interval."
::= { dsx1CurrentEntry 3 }
dsx1CurrentSEFSs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Severely Errored Framing Seconds
encountered by a DS1 interface in the current
15 minute interval."
::= { dsx1CurrentEntry 4 }
dsx1CurrentUASs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Unavailable Seconds encountered
by a DS1 interface in the current 15 minute in-
terval."
::= { dsx1CurrentEntry 5 }
dsx1CurrentCSSs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Controlled Slip Seconds encoun-
tered by a DS1 interface in the current 15
minute interval."
::= { dsx1CurrentEntry 6 }
dsx1CurrentPCVs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Path Coding Violations encoun-
tered by a DS1 interface in the current 15
minute interval."
::= { dsx1CurrentEntry 7 }
dsx1CurrentLESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Line Errored Seconds encountered
by a DS1 interface in the current 15 minute in-
terval."
::= { dsx1CurrentEntry 8 }
dsx1CurrentBESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Bursty Errored Seconds (BESs)
encountered by a DS1 interface in the current
15 minute interval."
::= {dsx1CurrentEntry 9 }
dsx1CurrentDMs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Degraded Minutes (DMs) encoun-
tered by a DS1 interface in the current 15
minute interval."
::= { dsx1CurrentEntry 10 }
dsx1CurrentLCVs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Line Code Violations (LCVs) en-
countered by a DS1 interface in the current 15
minute interval."
::= {dsx1CurrentEntry 11 }
-- the DS1 Interval
-- The DS1 Interval Table contains various statistics
-- collected by each DS1 Interface over the previous 24 hours of
-- operation. The past 24 hours are broken into 96 completed
-- 15 minute intervals.
dsx1IntervalTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dsx1IntervalEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The DS1 Interval table."
::= { ds1 8 }
dsx1IntervalEntry OBJECT-TYPE
SYNTAX Dsx1IntervalEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the DS1 Interval table."
INDEX { dsx1IntervalIndex, dsx1IntervalNumber }
::= { dsx1IntervalTable 1 }
Dsx1IntervalEntry ::=
SEQUENCE {
dsx1IntervalIndex
INTEGER,
dsx1IntervalNumber
INTEGER,
dsx1IntervalESs
Gauge,
dsx1IntervalSESs
Gauge,
dsx1IntervalSEFSs
Gauge,
dsx1IntervalUASs
Gauge,
dsx1IntervalCSSs
Gauge,
dsx1IntervalPCVs
Gauge,
dsx1IntervalLESs
Gauge,
dsx1IntervalBESs
Gauge,
dsx1IntervalDMs
Gauge,
dsx1IntervalLCVs
Gauge
}
dsx1IntervalIndex OBJECT-TYPE
SYNTAX INTEGER (1..'7fffffff'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index value which uniquely identifies the
DS1 interface to which this entry is applica-
ble. The interface identified by a particular
value of this index is the same interface as
identified by the same value as a dsx1LineIndex
object instance."
::= { dsx1IntervalEntry 1 }
dsx1IntervalNumber OBJECT-TYPE
SYNTAX INTEGER (1..96)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A number between 1 and 96, where 1 is the most
recently completed 15 minute interval and 96 is
the least recently completed 15 minutes inter-
val (assuming that all 96 intervals are
valid)."
::= { dsx1IntervalEntry 2 }
dsx1IntervalESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Errored Seconds encountered by a
DS1 interface in one of the previous 96, indi-
vidual 15 minute, intervals."
::= { dsx1IntervalEntry 3 }
dsx1IntervalSESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Severely Errored Seconds encoun-
tered by a DS1 interface in one of the previous
96, individual 15 minute, intervals."
::= { dsx1IntervalEntry 4 }
dsx1IntervalSEFSs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Severely Errored Framing Seconds
encountered by a DS1 interface in one of the
previous 96, individual 15 minute, intervals."
::= { dsx1IntervalEntry 5 }
dsx1IntervalUASs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Unavailable Seconds encountered
by a DS1 interface in one of the previous 96,
individual 15 minute, intervals."
::= { dsx1IntervalEntry 6 }
dsx1IntervalCSSs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Controlled Slip Seconds encoun-
tered by a DS1 interface in one of the previous
96, individual 15 minute, intervals."
::= { dsx1IntervalEntry 7 }
dsx1IntervalPCVs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Path Coding Violations encoun-
tered by a DS1 interface in one of the previous
96, individual 15 minute, intervals."
::= { dsx1IntervalEntry 8 }
dsx1IntervalLESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Line Errored Seconds encountered
by a DS1 interface in one of the previous 96,
individual 15 minute, intervals."
::= { dsx1IntervalEntry 9 }
dsx1IntervalBESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Bursty Errored Seconds (BESs)
encountered by a DS1 interface in one of the
previous 96, individual 15 minute, intervals."
::= {dsx1IntervalEntry 10 }
dsx1IntervalDMs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Degraded Minutes (DMs) encoun-
tered by a DS1 interface in one of the previous
96, individual 15 minute, intervals."
::= { dsx1IntervalEntry 11 }
dsx1IntervalLCVs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Line Code Violations (LCVs) en-
countered by a DS1 interface in the current 15
minute interval."
::= {dsx1IntervalEntry 12 }
-- the DS1 Total
-- The DS1 Total Table contains the cumulative sum of the
-- various statistics for the 24 hour period preceding the
-- current interval.
dsx1TotalTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dsx1TotalEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The DS1 Total table. 24 hour interval."
::= { ds1 9 }
dsx1TotalEntry OBJECT-TYPE
SYNTAX Dsx1TotalEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the DS1 Total table."
INDEX { dsx1TotalIndex }
::= { dsx1TotalTable 1 }
Dsx1TotalEntry ::=
SEQUENCE {
dsx1TotalIndex
INTEGER,
dsx1TotalESs
Gauge,
dsx1TotalSESs
Gauge,
dsx1TotalSEFSs
Gauge,
dsx1TotalUASs
Gauge,
dsx1TotalCSSs
Gauge,
dsx1TotalPCVs
Gauge,
dsx1TotalLESs
Gauge,
dsx1TotalBESs
Gauge,
dsx1TotalDMs
Gauge,
dsx1TotalLCVs
Gauge
}
dsx1TotalIndex OBJECT-TYPE
SYNTAX INTEGER (1..'7fffffff'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index value which uniquely identifies the
DS1 interface to which this entry is applica-
ble. The interface identified by a particular
value of this index is the same interface as
identified by the same value as a dsx1LineIndex
object instance."
::= { dsx1TotalEntry 1 }
dsx1TotalESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Errored Seconds encountered by a
DS1 interface in the previous 24 hour interval"
::= { dsx1TotalEntry 2 }
dsx1TotalSESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Severely Errored Seconds encoun-
tered by a DS1 interface in the previous 24
hour interval."
::= { dsx1TotalEntry 3 }
dsx1TotalSEFSs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Severely Errored Framing Seconds
encountered by a DS1 interface in the previous
24 hour interval."
::= { dsx1TotalEntry 4 }
dsx1TotalUASs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Unavailable Seconds encountered
by a DS1 interface in the previous 24 hour in-
terval."
::= { dsx1TotalEntry 5 }
dsx1TotalCSSs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Controlled Slip Seconds encoun-
tered by a DS1 interface in the previous 24
hour interval."
::= { dsx1TotalEntry 6 }
dsx1TotalPCVs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Path Coding Violations encoun-
tered by a DS1 interface in the previous 24
hour interval."
::= { dsx1TotalEntry 7 }
dsx1TotalLESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Line Errored Seconds encountered
by a DS1 interface in the previous 24 hour in-
terval."
::= { dsx1TotalEntry 8 }
dsx1TotalBESs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Bursty Errored Seconds (BESs)
encountered by a DS1 interface in the previous
24 hour interval."
::= { dsx1TotalEntry 9 }
dsx1TotalDMs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Degraded Minutes (DMs) encoun-
tered by a DS1 interface in the previous 24
hour interval."
::= { dsx1TotalEntry 10 }
dsx1TotalLCVs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Line Code Violations (LCVs) en-
countered by a DS1 interface in the current 15
minute interval."
::= {dsx1TotalEntry 11 }
-- The DS1 Far End Group
-- Implementation of this group is optional for all systems
-- that attach to a DS1 Interface.
-- The DS1 Far End Group consists of three tables:
-- DS1 Far End Current
-- DS1 Far End Interval
-- DS1 Far End Total
-- The DS1 Far End Current Table
-- The DS1 Far End Current table contains various statistics
-- being collected for the current 15 minute interval.
-- The statistics are collected from the far end messages on the
-- Facilities Data Link. The definitions are the same as
-- described for the near-end information.
dsx1FarEndCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dsx1FarEndCurrentEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The DS1 Far End Current table."
::= { ds1 10 }
dsx1FarEndCurrentEntry OBJECT-TYPE
SYNTAX Dsx1FarEndCurrentEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the DS1 Far End Current table."
INDEX { dsx1FarEndCurrentIndex }
::= { dsx1FarEndCurrentTable 1 }
Dsx1FarEndCurrentEntry ::=
SEQUENCE {
dsx1FarEndCurrentIndex
INTEGER,
dsx1FarEndTimeElapsed
INTEGER,
dsx1FarEndValidIntervals
INTEGER,
dsx1FarEndCurrentESs
Gauge,
dsx1FarEndCurrentSESs
Gauge,
dsx1FarEndCurrentSEFSs
Gauge,
dsx1FarEndCurrentUASs
Gauge,
dsx1FarEndCurrentCSSs
Gauge,
dsx1FarEndCurrentLESs
Gauge,
dsx1FarEndCurrentPCVs
Gauge,
dsx1FarEndCurrentBESs
Gauge,
dsx1FarEndCurrentDMs
Gauge
}
dsx1FarEndCurrentIndex OBJECT-TYPE
SYNTAX INTEGER (1..'7fffffff'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index value which uniquely identifies the
DS1 interface to which this entry is applica-
ble. The interface identified by a particular
value of this index is the same interface as
identified by the same value an dsx1LineIndex
object instance."
::= { dsx1FarEndCurrentEntry 1 }
dsx1FarEndTimeElapsed OBJECT-TYPE
SYNTAX INTEGER (0..899)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of seconds that have elapsed
since the beginning of the far end current
error-measurement period."
::= { dsx1FarEndCurrentEntry 2 }