-
Notifications
You must be signed in to change notification settings - Fork 29
/
ACD-TWAMP-GEN-MIB.mib
1904 lines (1671 loc) · 67.6 KB
/
ACD-TWAMP-GEN-MIB.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
--
-- Accedian Enterprise Specific MIB
--
-- Copyright (c) 2004-2016, Accedian Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
ACD-TWAMP-GEN-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
IpAddress, Integer32, Unsigned32, Counter64
FROM SNMPv2-SMI
DisplayString, TruthValue, DateAndTime
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
acdMibs
FROM ACCEDIAN-SMI;
acdTwampGen MODULE-IDENTITY
LAST-UPDATED "201609230100Z"
ORGANIZATION "Accedian Networks, Inc."
CONTACT-INFO
"Accedian Technical Assistance Center
Accedian Networks, Inc.
2351 Alfred-Nobel blvd., Suite N-410
Saint-Laurent, Quebec Canada H4S 2A9
E-mail: [email protected]"
DESCRIPTION
"TWAMP-Generator database for this Accedian Networks device."
REVISION "201609230100Z" -- 23 September 2016
DESCRIPTION
"Add acdTwampGenHistResultID and acdTwampGenHistResultSampleIndex
to acdTwampGenHistResultGroup."
REVISION "201605260100Z" -- 26 May 2016
DESCRIPTION
"Set access level to read-only for acdTwampGenHistResultID,
acdTwampGenHistResultSampleIndex."
REVISION "201402240000Z" -- Feb. 24 2014
DESCRIPTION
"Initial version of MIB module ACD-TWAMP-GEN-MIB."
::= { acdMibs 19}
acdTwampGenNotifications OBJECT IDENTIFIER ::= { acdTwampGen 5 }
acdTwampGenMIBObjects OBJECT IDENTIFIER ::= { acdTwampGen 6 }
acdTwampGenConformance OBJECT IDENTIFIER ::= { acdTwampGen 7 }
---------------------------------------------------------------------------
-- The TWAMP-Generator Results table
-- This table contains all TWAMP-Generator entry results.
---------------------------------------------------------------------------
acdTwampGenResultTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdTwampGenResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Result table of all TWAMP-Generator entries"
::= { acdTwampGen 1 }
acdTwampGenResultEntry OBJECT-TYPE
SYNTAX AcdTwampGenResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of results for a TWAMP-Generator instance."
INDEX { acdTwampGenResultID }
::= { acdTwampGenResultTable 1 }
AcdTwampGenResultEntry ::= SEQUENCE {
acdTwampGenResultID Unsigned32,
acdTwampGenResultInstName DisplayString,
acdTwampGenResultPeriodNb Unsigned32,
acdTwampGenResultPeriodTime DateAndTime,
acdTwampGenResultCurrTxPacketCount Counter64,
acdTwampGenResultCurrRxPacketCount Counter64,
acdTwampGenResultTwoWayDelayValid TruthValue,
acdTwampGenResultTwoWayDelayInstValue Integer32,
acdTwampGenResultTwoWayDelayCurrSamples Unsigned32,
acdTwampGenResultTwoWayDelayCurrMinValue Integer32,
acdTwampGenResultTwoWayDelayCurrMaxValue Integer32,
acdTwampGenResultTwoWayDelayCurrAvgValue Integer32,
acdTwampGenResultTwoWayDelayCurrThreshEx Unsigned32,
acdTwampGenResultTwoWayDvValid TruthValue,
acdTwampGenResultTwoWayDvInstValue Integer32,
acdTwampGenResultTwoWayDvCurrSamples Unsigned32,
acdTwampGenResultTwoWayDvCurrMinValue Integer32,
acdTwampGenResultTwoWayDvCurrMaxValue Integer32,
acdTwampGenResultTwoWayDvCurrAvgValue Integer32,
acdTwampGenResultTwoWayDvCurrThreshEx Unsigned32,
acdTwampGenResultOneWayNeDelayValid TruthValue,
acdTwampGenResultOneWayNeDelayInstValue Integer32,
acdTwampGenResultOneWayNeDelayCurrSamples Unsigned32,
acdTwampGenResultOneWayNeDelayCurrMinValue Integer32,
acdTwampGenResultOneWayNeDelayCurrMaxValue Integer32,
acdTwampGenResultOneWayNeDelayCurrAvgValue Integer32,
acdTwampGenResultOneWayNeDelayCurrThreshEx Unsigned32,
acdTwampGenResultOneWayNeDvValid TruthValue,
acdTwampGenResultOneWayNeDvInstValue Integer32,
acdTwampGenResultOneWayNeDvCurrSamples Unsigned32,
acdTwampGenResultOneWayNeDvCurrMinValue Integer32,
acdTwampGenResultOneWayNeDvCurrMaxValue Integer32,
acdTwampGenResultOneWayNeDvCurrAvgValue Integer32,
acdTwampGenResultOneWayNeDvCurrThreshEx Unsigned32,
acdTwampGenResultOneWayFeDelayValid TruthValue,
acdTwampGenResultOneWayFeDelayInstValue Integer32,
acdTwampGenResultOneWayFeDelayCurrSamples Unsigned32,
acdTwampGenResultOneWayFeDelayCurrMinValue Integer32,
acdTwampGenResultOneWayFeDelayCurrMaxValue Integer32,
acdTwampGenResultOneWayFeDelayCurrAvgValue Integer32,
acdTwampGenResultOneWayFeDelayCurrThreshEx Unsigned32,
acdTwampGenResultOneWayFeDvValid TruthValue,
acdTwampGenResultOneWayFeDvInstValue Integer32,
acdTwampGenResultOneWayFeDvCurrSamples Unsigned32,
acdTwampGenResultOneWayFeDvCurrMinValue Integer32,
acdTwampGenResultOneWayFeDvCurrMaxValue Integer32,
acdTwampGenResultOneWayFeDvCurrAvgValue Integer32,
acdTwampGenResultOneWayFeDvCurrThreshEx Unsigned32,
acdTwampGenResultPktLossCurrSamples Unsigned32,
acdTwampGenResultPktLossCurrLostPackets Unsigned32,
acdTwampGenResultPktLossCurrLossRatio Unsigned32,
acdTwampGenResultPktLossCurrOutOfOrder Unsigned32,
acdTwampGenResultPktLossCurrDuplicate Unsigned32,
acdTwampGenResultPktLossCurrGaps Unsigned32,
acdTwampGenResultPktLossCurrLargestGap Unsigned32
}
acdTwampGenResultID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique value for each TWAMP-Generator instance. Its value ranges from 1 to
MAXINT (4 bytes). "
::= { acdTwampGenResultEntry 1 }
acdTwampGenResultInstName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the associated TWAMP-Generator instance."
::= { acdTwampGenResultEntry 2 }
acdTwampGenResultPeriodNb OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of periods that have elapsed since the probe was enabled."
::= { acdTwampGenResultEntry 3 }
acdTwampGenResultPeriodTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The start time of the current period."
::= { acdTwampGenResultEntry 4 }
acdTwampGenResultCurrTxPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of TWAMP packets that have been sent in the current period."
::= { acdTwampGenResultEntry 5 }
acdTwampGenResultCurrRxPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of TWAMP packets that have been received in the current period."
::= { acdTwampGenResultEntry 6 }
acdTwampGenResultTwoWayDelayValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate the validity of the Two-way instantaneous delay measurements."
::= { acdTwampGenResultEntry 7 }
acdTwampGenResultTwoWayDelayInstValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the Two-way delay instantaneous value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 8 }
acdTwampGenResultTwoWayDelayCurrSamples OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of samples gathered to calculate
the current period two-way delay results."
::= { acdTwampGenResultEntry 9 }
acdTwampGenResultTwoWayDelayCurrMinValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current Two-way delay minimum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 10 }
acdTwampGenResultTwoWayDelayCurrMaxValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current Two-way delay maximum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 11 }
acdTwampGenResultTwoWayDelayCurrAvgValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current Two-way delay average value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 12 }
acdTwampGenResultTwoWayDelayCurrThreshEx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current number of samples exceeding the limit."
::= { acdTwampGenResultEntry 13 }
acdTwampGenResultTwoWayDvValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate the validity of the Two-way instantaneous delay variation measurements."
::= { acdTwampGenResultEntry 14 }
acdTwampGenResultTwoWayDvInstValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the Two-way delay variation instantaneous value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 15 }
acdTwampGenResultTwoWayDvCurrSamples OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of samples gathered to calculate
the current period two-way delay variation results."
::= { acdTwampGenResultEntry 16 }
acdTwampGenResultTwoWayDvCurrMinValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current Two-way delay variation minimum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 17 }
acdTwampGenResultTwoWayDvCurrMaxValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current Two-way delay variation maximum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 18 }
acdTwampGenResultTwoWayDvCurrAvgValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current Two-way delay variation average value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 19 }
acdTwampGenResultTwoWayDvCurrThreshEx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current number of samples exceeding the limit."
::= { acdTwampGenResultEntry 20 }
acdTwampGenResultOneWayNeDelayValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate the validity of the One-way near-end instantaneous delay measurements."
::= { acdTwampGenResultEntry 21 }
acdTwampGenResultOneWayNeDelayInstValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the One-way near-end delay instantaneous value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 22 }
acdTwampGenResultOneWayNeDelayCurrSamples OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of samples gathered to calculate
the current period One-way near-end delay results."
::= { acdTwampGenResultEntry 23 }
acdTwampGenResultOneWayNeDelayCurrMinValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way near-end delay minimum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 24 }
acdTwampGenResultOneWayNeDelayCurrMaxValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way near-end delay maximum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 25 }
acdTwampGenResultOneWayNeDelayCurrAvgValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way near-end delay average value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 26 }
acdTwampGenResultOneWayNeDelayCurrThreshEx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current number of samples exceeding the limit."
::= { acdTwampGenResultEntry 27 }
acdTwampGenResultOneWayNeDvValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate the validity of the One-way near-end instantaneous delay variation measurements."
::= { acdTwampGenResultEntry 28 }
acdTwampGenResultOneWayNeDvInstValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the One-way near-end delay variation instantaneous value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 29 }
acdTwampGenResultOneWayNeDvCurrSamples OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of samples gathered to calculate
the current period One-way near-end delay variation results."
::= { acdTwampGenResultEntry 30 }
acdTwampGenResultOneWayNeDvCurrMinValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way near-end delay variation minimum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 31 }
acdTwampGenResultOneWayNeDvCurrMaxValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way near-end delay variation maximum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 32 }
acdTwampGenResultOneWayNeDvCurrAvgValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way near-end delay variation average value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 33 }
acdTwampGenResultOneWayNeDvCurrThreshEx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current number of samples exceeding the limit."
::= { acdTwampGenResultEntry 34 }
acdTwampGenResultOneWayFeDelayValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate the validity of the One-way far-end instantaneous delay measurements."
::= { acdTwampGenResultEntry 35 }
acdTwampGenResultOneWayFeDelayInstValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the One-way far-end delay instantaneous value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 36 }
acdTwampGenResultOneWayFeDelayCurrSamples OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of samples gathered to calculate
the current period One-way far-end delay results."
::= { acdTwampGenResultEntry 37 }
acdTwampGenResultOneWayFeDelayCurrMinValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way far-end delay minimum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 38 }
acdTwampGenResultOneWayFeDelayCurrMaxValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way far-end delay maximum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 39 }
acdTwampGenResultOneWayFeDelayCurrAvgValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way far-end delay average value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 40 }
acdTwampGenResultOneWayFeDelayCurrThreshEx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current number of samples exceeding the limit."
::= { acdTwampGenResultEntry 41 }
acdTwampGenResultOneWayFeDvValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate the validity of the One-way far-end instantaneous delay variation measurements."
::= { acdTwampGenResultEntry 42 }
acdTwampGenResultOneWayFeDvInstValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the One-way far-end delay variation instantaneous value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 43 }
acdTwampGenResultOneWayFeDvCurrSamples OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of samples gathered to calculate
the current period One-way far-end delay variation results."
::= { acdTwampGenResultEntry 44 }
acdTwampGenResultOneWayFeDvCurrMinValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way far-end delay variation minimum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 45 }
acdTwampGenResultOneWayFeDvCurrMaxValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way far-end delay variation maximum value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 46 }
acdTwampGenResultOneWayFeDvCurrAvgValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current One-way far-end delay variation average value. The value
is expressed in micro-seconds."
::= { acdTwampGenResultEntry 47 }
acdTwampGenResultOneWayFeDvCurrThreshEx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current number of samples exceeding the limit."
::= { acdTwampGenResultEntry 48 }
acdTwampGenResultPktLossCurrSamples OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of TWAMP packets that have been sent in the current period."
::= { acdTwampGenResultEntry 49 }
acdTwampGenResultPktLossCurrLostPackets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of TWAMP packets that have been lost in the current period."
::= { acdTwampGenResultEntry 50 }
acdTwampGenResultPktLossCurrLossRatio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet loss ratio expressed in hundreth of percent (100 is 1%)."
::= { acdTwampGenResultEntry 51 }
acdTwampGenResultPktLossCurrOutOfOrder OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of out-of-order TWAMP packets in the current period."
::= { acdTwampGenResultEntry 52 }
acdTwampGenResultPktLossCurrDuplicate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of duplicate TWAMP packets in the current period."
::= { acdTwampGenResultEntry 53 }
acdTwampGenResultPktLossCurrGaps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of gaps that were registered during the period."
::= { acdTwampGenResultEntry 54 }
acdTwampGenResultPktLossCurrLargestGap OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The largest number of consecutive packets that were detected as missing."
::= { acdTwampGenResultEntry 55 }
---------------------------------------------------------------------------
-- The TWAMP-Generator status table
-- This table contains all TWAMP-Generator entry statuses.
---------------------------------------------------------------------------
acdTwampGenStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdTwampGenStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Status table of all TWAMP-Generator entries"
::= { acdTwampGen 2 }
acdTwampGenStatusEntry OBJECT-TYPE
SYNTAX AcdTwampGenStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of the status for a TWAMP-Generator instance."
INDEX { acdTwampGenStatusID }
::= { acdTwampGenStatusTable 1 }
AcdTwampGenStatusEntry ::= SEQUENCE {
acdTwampGenStatusID Unsigned32,
acdTwampGenStatusInstName DisplayString,
acdTwampGenStatusTwoWayDelayAlert TruthValue,
acdTwampGenStatusTwoWayAvgDelayAlert TruthValue,
acdTwampGenStatusTwoWayDvAlert TruthValue,
acdTwampGenStatusTwoWayAvgDvAlert TruthValue,
acdTwampGenStatusOneWayNeDelayAlert TruthValue,
acdTwampGenStatusOneWayNeAvgDelayAlert TruthValue,
acdTwampGenStatusOneWayNeDvAlert TruthValue,
acdTwampGenStatusOneWayNeAvgDvAlert TruthValue,
acdTwampGenStatusOneWayFeDelayAlert TruthValue,
acdTwampGenStatusOneWayFeAvgDelayAlert TruthValue,
acdTwampGenStatusOneWayFeDvAlert TruthValue,
acdTwampGenStatusOneWayFeAvgDvAlert TruthValue,
acdTwampGenStatusPacketLossContinuityCheckAlert TruthValue,
acdTwampGenStatusPacketLossExcessivePacketLossAlert TruthValue
}
acdTwampGenStatusID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique value for each TWAMP-Generator instance. Its value ranges from 1 to
MAXINT (4 bytes). "
::= { acdTwampGenStatusEntry 1 }
acdTwampGenStatusInstName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the associated TWAMP-Generator instance."
::= { acdTwampGenStatusEntry 2 }
acdTwampGenStatusTwoWayDelayAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the Two-way Delay alert."
::= { acdTwampGenStatusEntry 3 }
acdTwampGenStatusTwoWayAvgDelayAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the Two-way Average Delay alert."
::= { acdTwampGenStatusEntry 4 }
acdTwampGenStatusTwoWayDvAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the Two-way Delay Variation alert."
::= { acdTwampGenStatusEntry 5 }
acdTwampGenStatusTwoWayAvgDvAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the Two-way Average Delay Variation alert."
::= { acdTwampGenStatusEntry 6 }
acdTwampGenStatusOneWayNeDelayAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the One-way near-end Delay alert."
::= { acdTwampGenStatusEntry 7 }
acdTwampGenStatusOneWayNeAvgDelayAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the One-way near-end Average Delay alert."
::= { acdTwampGenStatusEntry 8 }
acdTwampGenStatusOneWayNeDvAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the One-way near-end Delay Variation alert."
::= { acdTwampGenStatusEntry 9 }
acdTwampGenStatusOneWayNeAvgDvAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the One-way near-end Average Delay Variation alert."
::= { acdTwampGenStatusEntry 10 }
acdTwampGenStatusOneWayFeDelayAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the One-way far-end Delay alert."
::= { acdTwampGenStatusEntry 11 }
acdTwampGenStatusOneWayFeAvgDelayAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the One-way far-end Average Delay alert."
::= { acdTwampGenStatusEntry 12 }
acdTwampGenStatusOneWayFeDvAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the One-way far-end Delay Variation alert."
::= { acdTwampGenStatusEntry 13 }
acdTwampGenStatusOneWayFeAvgDvAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the One-way far-end Average Delay Variation alert."
::= { acdTwampGenStatusEntry 14 }
acdTwampGenStatusPacketLossContinuityCheckAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the packet loss continuity check alert."
::= { acdTwampGenStatusEntry 15 }
acdTwampGenStatusPacketLossExcessivePacketLossAlert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the presence of the excessive packet loss alert."
::= { acdTwampGenStatusEntry 16 }
---------------------------------------------------------------------------
-- The TWAMP-Generator configuration table
-- This table contains all TWAMP-Generator entry configurations.
---------------------------------------------------------------------------
acdTwampGenCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF AcdTwampGenCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configuration table of all TWAMP-Generator entries."
::= { acdTwampGen 3 }
acdTwampGenCfgEntry OBJECT-TYPE
SYNTAX AcdTwampGenCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry consisting of all settings to manage a TWAMP-Generator instance."
INDEX { acdTwampGenCfgID }
::= { acdTwampGenCfgTable 1 }
AcdTwampGenCfgEntry ::= SEQUENCE {
acdTwampGenCfgID Unsigned32,
acdTwampGenCfgName DisplayString,
acdTwampGenCfgState INTEGER,
acdTwampGenCfgInterval Unsigned32,
acdTwampGenCfgReferencePeriod Unsigned32,
acdTwampGenCfgPktSize Unsigned32,
acdTwampGenCfgDestIPv4Addr IpAddress,
acdTwampGenCfgSourcePortNumber Unsigned32,
acdTwampGenCfgDestPortNumber Unsigned32,
acdTwampGenCfgDscp Unsigned32,
acdTwampGenCfgEcn Unsigned32,
acdTwampGenCfgVlan1Priority Unsigned32,
acdTwampGenCfgTwoWayMaxDelay Unsigned32,
acdTwampGenCfgTwoWayMaxDelayThrs Unsigned32,
acdTwampGenCfgTwoWayAvgDelayThrs Unsigned32,
acdTwampGenCfgTwoWayMaxDv Unsigned32,
acdTwampGenCfgTwoWayMaxDvThrs Unsigned32,
acdTwampGenCfgTwoWayAvgDvThrs Unsigned32,
acdTwampGenCfgOneWayNearEndMaxDelay Unsigned32,
acdTwampGenCfgOneWayNearEndMaxDelayThrs Unsigned32,
acdTwampGenCfgOneWayNearEndAvgDelayThrs Unsigned32,
acdTwampGenCfgOneWayNearEndMaxDv Unsigned32,
acdTwampGenCfgOneWayNearEndMaxDvThrs Unsigned32,
acdTwampGenCfgOneWayNearEndAvgDvThrs Unsigned32,
acdTwampGenCfgOneWayFarEndMaxDelay Unsigned32,
acdTwampGenCfgOneWayFarEndMaxDelayThrs Unsigned32,
acdTwampGenCfgOneWayFarEndAvgDelayThrs Unsigned32,
acdTwampGenCfgOneWayFarEndMaxDv Unsigned32,
acdTwampGenCfgOneWayFarEndMaxDvThrs Unsigned32,
acdTwampGenCfgOneWayFarEndAvgDvThrs Unsigned32,
acdTwampGenCfgPacketLossContinuityCheck Unsigned32,
acdTwampGenCfgPacketLossRate Unsigned32
}
acdTwampGenCfgID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique value for each TWAMP-Generator instance. This value follows the ordering
of the status and the results table. Its value ranges from 1 to
MAXINT (4 bytes)."
::= { acdTwampGenCfgEntry 1 }
acdTwampGenCfgName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is a string to identify this TWAMP-Generator instance."
::= { acdTwampGenCfgEntry 2 }
acdTwampGenCfgState OBJECT-TYPE
SYNTAX INTEGER {
enable(0),
disable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configuration state of this TWAMP-Generator entry."
::= { acdTwampGenCfgEntry 3 }
acdTwampGenCfgInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Interval in milliseconds at which TWAMP-Generator packets should be sent."
::= { acdTwampGenCfgEntry 4 }
acdTwampGenCfgReferencePeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reference period in minutes."
::= { acdTwampGenCfgEntry 5 }
acdTwampGenCfgTwoWayMaxDelay OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum two-way delay allowed. (in usec)"
::= { acdTwampGenCfgEntry 13 }
acdTwampGenCfgTwoWayMaxDv OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum two-way delay variation allowed.(in usec)"
::= { acdTwampGenCfgEntry 16 }
acdTwampGenCfgTwoWayMaxDelayThrs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum consecutive two-way delay samples allowed greater than tw-max-delay."
::= { acdTwampGenCfgEntry 14 }
acdTwampGenCfgTwoWayMaxDvThrs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum consecutive two-way delay samples allowed greater than tw-max-dv."
::= { acdTwampGenCfgEntry 17 }
acdTwampGenCfgTwoWayAvgDelayThrs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum two-way average delay.(in usec)"
::= { acdTwampGenCfgEntry 15 }
acdTwampGenCfgTwoWayAvgDvThrs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum two-way average delay variation.(in usec)"
::= { acdTwampGenCfgEntry 18 }
acdTwampGenCfgOneWayNearEndMaxDelay OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum one-way near-end delay allowed.(in usec)"
::= { acdTwampGenCfgEntry 19 }
acdTwampGenCfgOneWayNearEndMaxDv OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum one-way near-end delay variation allowed.(in usec)"
::= { acdTwampGenCfgEntry 22 }
acdTwampGenCfgOneWayNearEndMaxDelayThrs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum consecutive one-way near-end delay samples allowed greater than ow-near-end-max-delay."
::= { acdTwampGenCfgEntry 20 }
acdTwampGenCfgOneWayNearEndMaxDvThrs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum consecutive one-way near-end delay samples allowed greater than ow-near-end-max-dv."
::= { acdTwampGenCfgEntry 23 }
acdTwampGenCfgOneWayNearEndAvgDelayThrs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum one-way near-end average delay.(in usec)"
::= { acdTwampGenCfgEntry 21 }
acdTwampGenCfgOneWayNearEndAvgDvThrs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum one-way near-end average delay variation.(in usec)"
::= { acdTwampGenCfgEntry 24 }
acdTwampGenCfgOneWayFarEndMaxDelay OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum one-way far-end delay allowed.(in usec)"
::= { acdTwampGenCfgEntry 25 }
acdTwampGenCfgOneWayFarEndMaxDv OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION