1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
|
-- *********************************************************************
-- *********************************************************************
-- ** Filename: PRVT-CFM-MIB.mib
-- ** Project: T - Ethernet and Fast Ethernet IP Switches.
-- ** Purpose: Private MIB
-- *********************************************************************
-- (c) Copyright, 2001, BATM Advanced Communications. All rights reserved.
-- WARNING:
--
-- BY UTILIZING THIS FILE, YOU AGREE TO THE FOLLOWING:
--
-- This file is the property of BATM Advanced Communications.
-- BATM Advanced Communications retains all title and
-- ownership in the Specification, including any revisions.
-- BATM Advanced Communications grants all interested parties a non-exclusive
-- license to use and distribute an unmodified copy of this
-- Specification in connection with management of BATM Advanced Communications
-- and Telco Systems products, and without fee, provided that the following
-- conditions are met:
-- 1. Redistributions of this specification must retain the above copyright
-- notice, this list of conditions and the following disclaimer.
-- 2. Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
-- 3. The name of the BATM Advanced Communications MAY NOT be used to endorse
-- or promote products derived from this specification without specific prior written
-- permission.
--
-- EXCEPT AS RESTRICTED BY LAW, OR AS PROVIDED IN BATM'S LIMITED
-- WARRANTY, THE SPECIFICATIONS CONTAINED IN THIS FILE ARE
-- PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES
-- OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-- IN NO EVENT SHALL BATM BE LIABLE FOR ANY DAMAGES WHATSOEVER
-- INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS
-- PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION OR
-- OTHER CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE, OR INABILITY
-- TO USE, THE SPECIFICATION CONTAINED IN THIS FILE.
PRVT-CFM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Unsigned32 FROM SNMPv2-SMI -- [RFC2578]
DisplayString,
RowStatus,
TruthValue,
MacAddress
FROM SNMPv2-TC -- [RFC2579]
Dot1afCfmIndexIntegerNextFree,
Dot1agCfmMDLevelOrNone,
dot1agCfmMaCompEntry,
dot1agCfmMepEntry,
dot1agCfmLtrEntry,
dot1agCfmMdIndex,
dot1agCfmMaIndex,
dot1agCfmMepIdentifier,
dot1agCfmMepDbRMepIdentifier
FROM IEEE8021-CFM-MIB
switch
FROM PRVT-SWITCH-MIB
VlanId FROM Q-BRIDGE-MIB -- [RFC4363]
;
prvtCfmMib MODULE-IDENTITY
LAST-UPDATED "201101180000Z"
ORGANIZATION "BATM Advanced Communication"
CONTACT-INFO
" BATM/Telco Systems Support team
Email:
For North America: techsupport@telco.com
For North Europe: support@batm.de, info@batm.de
For the rest of the world: techsupport@telco.com"
DESCRIPTION
"Prvt extension of Connectivity Fault Management module for managing IEEE 802.1ag"
-- revision history
REVISION "201209120000Z"
DESCRIPTION
"Added prvtCfmMepManageCCMTLV"
REVISION "201104180000Z"
DESCRIPTION
"Added prvtCfmMepSuportedRemoteMepsNo"
REVISION "201101180000Z"
DESCRIPTION
"Added AIS/LCK traps"
REVISION "201007080000Z"
DESCRIPTION
"Added prvtCfmMaAisLckVlan table"
REVISION "201004080000Z"
DESCRIPTION
"Changed description for prvtCfmMepAisCondition"
REVISION "201003170000Z"
DESCRIPTION
"Add posibility to enable/disable 1wJitter, 2wJitter, FrameLoss and Latency
on a CFM profile."
REVISION "200906200000Z"
DESCRIPTION
"Fixed some minor description issues, removed prvtCfmProfileFrameLossBucketSize"
REVISION "200808190000Z"
DESCRIPTION
"Added prvtCfmMepTransmitLbmSuccessRate, prvtCfmMepTransmitLbmMinTime,
prvtCfmMepTransmitLbmAvgTime, prvtCfmMepTransmitLbmMaxTime,
prvtCfmLbrBadMsdu."
REVISION "200806240000Z"
DESCRIPTION
"Added prvtCfmStatus"
REVISION "200801200000Z"
DESCRIPTION
"Initial"
::= { switch 131 }
prvtCfmMibNotifications OBJECT IDENTIFIER ::= { prvtCfmMib 0 }
prvtCfmMibObjects OBJECT IDENTIFIER ::= { prvtCfmMib 1 }
prvtCfmMibConformance OBJECT IDENTIFIER ::= { prvtCfmMib 2 }
prvtCfmUpdateInterval OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time between monitoring parameters update (in seconds).
A value of 0 suspends the monitoring task and a
value different from 0 resumes it. Default is 20 seconds."
DEFVAL { 20 }
::= { prvtCfmMibObjects 1 }
prvtCfmStatus OBJECT-TYPE
SYNTAX INTEGER {
enable ( 1 ),
disable ( 2 )
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable cfm."
::= { prvtCfmMibObjects 2 }
prvtCfmProfile OBJECT IDENTIFIER ::= { prvtCfmMibObjects 3 }
prvtCfmProfileTableNextIndex OBJECT-TYPE
SYNTAX Dot1afCfmIndexIntegerNextFree
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains an unused value for prvtCfmProfileIndex in
the prvtCfmProfileTable, or a zero to indicate that none exist."
::= { prvtCfmProfile 1 }
-- ----------------------------------------------------
-- ----------------------------------------------------
prvtCfmProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtCfmProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains loopback results from all remote MEPs in the MA."
::= { prvtCfmProfile 2 }
prvtCfmProfileEntry OBJECT-TYPE
SYNTAX PrvtCfmProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "a"
INDEX { prvtCfmProfileIndex }
::= { prvtCfmProfileTable 1 }
PrvtCfmProfileEntry ::= SEQUENCE {
prvtCfmProfileIndex Unsigned32,
prvtCfmProfileName DisplayString,
prvtCfmProfilePriority Unsigned32,
prvtCfmProfileRate Unsigned32,
prvtCfmProfileSize Unsigned32,
prvtCfmProfileBucketSize Unsigned32,
prvtCfmProfile1wJitterError Unsigned32,
prvtCfmProfile1wJitterWarning Unsigned32,
prvtCfmProfileJitterError Unsigned32,
prvtCfmProfileJitterErrorPeriod Unsigned32,
prvtCfmProfileJitterWarning Unsigned32,
prvtCfmProfileJitterWarningPeriod Unsigned32,
prvtCfmProfileFrameLossError Unsigned32,
prvtCfmProfileFrameLossWarning Unsigned32,
prvtCfmProfileLatencyError Unsigned32,
prvtCfmProfileLatencyErrorPeriod Unsigned32,
prvtCfmProfileLatencyWarning Unsigned32,
prvtCfmProfileLatencyWarningPeriod Unsigned32,
prvtCfmProfileRowStatus RowStatus,
prvtCfmProfile1wJitterEnable TruthValue,
prvtCfmProfileJitterEnable TruthValue,
prvtCfmProfileFrameLossEnable TruthValue,
prvtCfmProfileLatencyEnable TruthValue
}
prvtCfmProfileIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table index."
::= { prvtCfmProfileEntry 1 }
prvtCfmProfileName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Profile name."
::= { prvtCfmProfileEntry 2 }
prvtCfmProfilePriority OBJECT-TYPE
SYNTAX Unsigned32 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.1p class-of-service setting."
DEFVAL { 0 }
::= { prvtCfmProfileEntry 3 }
prvtCfmProfileRate OBJECT-TYPE
SYNTAX Unsigned32 (1..3)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of Request packets to send each time."
DEFVAL { 1 }
::= { prvtCfmProfileEntry 4 }
prvtCfmProfileSize OBJECT-TYPE
SYNTAX Unsigned32 (0..1462)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Size of data TLV included in probe packets (in octets)."
DEFVAL { 0 }
::= { prvtCfmProfileEntry 5 }
prvtCfmProfileBucketSize OBJECT-TYPE
SYNTAX Unsigned32 (2..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of the results to save for results calculation."
DEFVAL { 20 }
::= { prvtCfmProfileEntry 6 }
prvtCfmProfile1wJitterError OBJECT-TYPE
SYNTAX Unsigned32 (1..10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies one-way jitter error values to monitor in milliseconds."
DEFVAL { 350 }
::= { prvtCfmProfileEntry 7 }
prvtCfmProfile1wJitterWarning OBJECT-TYPE
SYNTAX Unsigned32 (1..10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies one-way jitter warning values to monitor in milliseconds."
DEFVAL { 300 }
::= { prvtCfmProfileEntry 8 }
prvtCfmProfileJitterError OBJECT-TYPE
SYNTAX Unsigned32 (1..10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies round-trip jitter error values to monitor in milliseconds."
DEFVAL { 700 }
::= { prvtCfmProfileEntry 9 }
prvtCfmProfileJitterErrorPeriod OBJECT-TYPE
SYNTAX Unsigned32 (1..3600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the duration jitter occurs in seconds."
DEFVAL { 90 }
::= { prvtCfmProfileEntry 10 }
prvtCfmProfileJitterWarning OBJECT-TYPE
SYNTAX Unsigned32 (1..10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies round-trip jitter warning values
to monitor in milliseconds. If set value is greater than the
jitter-error it means that the warning is disabled."
DEFVAL { 600 }
::= { prvtCfmProfileEntry 11 }
prvtCfmProfileJitterWarningPeriod OBJECT-TYPE
SYNTAX Unsigned32 (1..3600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the duration jitter occurs in seconds."
DEFVAL { 180 }
::= { prvtCfmProfileEntry 12 }
prvtCfmProfileFrameLossError OBJECT-TYPE
SYNTAX Unsigned32 (0..99)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies round-trip frame-loss error
values to monitor. The default is
frame-loss of 10% is reported."
DEFVAL { 10 }
::= { prvtCfmProfileEntry 13 }
prvtCfmProfileFrameLossWarning OBJECT-TYPE
SYNTAX Unsigned32 (0..99)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies round-trip frame-loss warning
values to monitor. The default is frame-loss
of 8% is reported. If set value is greater
than the frame-loss-error it means
that the warning is disable."
DEFVAL { 8 }
::= { prvtCfmProfileEntry 14 }
prvtCfmProfileLatencyError OBJECT-TYPE
SYNTAX Unsigned32 (1..10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies round-trip latency error values to monitor in milliseconds."
DEFVAL { 2000 }
::= { prvtCfmProfileEntry 15 }
prvtCfmProfileLatencyErrorPeriod OBJECT-TYPE
SYNTAX Unsigned32 (1..3600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the duration latency increase occurs in seconds."
DEFVAL { 90 }
::= { prvtCfmProfileEntry 16 }
prvtCfmProfileLatencyWarning OBJECT-TYPE
SYNTAX Unsigned32 (1..10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies round-trip latency error values to
monitor in milliseconds. If set value is greater than the
latency-error it means that the warning is disabled."
DEFVAL { 1600 }
::= { prvtCfmProfileEntry 17 }
prvtCfmProfileLatencyWarningPeriod OBJECT-TYPE
SYNTAX Unsigned32 (1..3600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the duration latency increase occurs in seconds."
DEFVAL { 180 }
::= { prvtCfmProfileEntry 18 }
prvtCfmProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row.
The writable columns in a row can not be changed if the row
is active. All columns must have a valid value before a row
can be activated.
"
::= { prvtCfmProfileEntry 19 }
prvtCfmProfile1wJitterEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A boolean showing if one way jitter calculation is enabled."
DEFVAL { true }
::= { prvtCfmProfileEntry 20 }
prvtCfmProfileJitterEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A boolean showing if two way jitter calculation is enabled."
DEFVAL { true }
::= { prvtCfmProfileEntry 21 }
prvtCfmProfileFrameLossEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A boolean showing if frame loss calculation is enabled."
DEFVAL { true }
::= { prvtCfmProfileEntry 22 }
prvtCfmProfileLatencyEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A boolean showing if latency calculation is enabled."
DEFVAL { true }
::= { prvtCfmProfileEntry 23 }
prvtCfmProcess OBJECT IDENTIFIER ::= { prvtCfmMibObjects 4 }
prvtCfmProcessTableNextIndex OBJECT-TYPE
SYNTAX Dot1afCfmIndexIntegerNextFree
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains an unused value for prvtCfmProcessIndex in
the prvtCfmProcessTable, or a zero to indicate that none exists."
::= { prvtCfmProcess 1 }
-- ----------------------------------------------------
-- ----------------------------------------------------
prvtCfmProcessTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtCfmProcessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Private extension of dot1agCfmMaNetTable.
Controls the two-way monitoring process
for MEP's in the MA."
::= { prvtCfmProcess 2 }
prvtCfmProcessEntry OBJECT-TYPE
SYNTAX PrvtCfmProcessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "a"
INDEX { dot1agCfmMdIndex, dot1agCfmMaIndex, prvtCfmProcessIndex }
::= { prvtCfmProcessTable 1 }
PrvtCfmProcessEntry ::= SEQUENCE {
prvtCfmProcessIndex Unsigned32,
prvtCfmProcessProfileIndex Unsigned32,
prvtCfmProcessName OCTET STRING,
prvtCfmProcessStatus TruthValue,
prvtCfmProcessRepeatInterval Unsigned32,
prvtCfmProcessPacketType INTEGER,
prvtCfmProcessUnreturnedPkts Unsigned32,
prvtCfmProcessRowStatus RowStatus
}
prvtCfmProcessIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table index."
::= { prvtCfmProcessEntry 1 }
prvtCfmProcessProfileIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Index of the monitoring profile to be used."
DEFVAL { 1 }
::= { prvtCfmProcessEntry 2 }
prvtCfmProcessName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..20))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the process. Should be unique per domain/MA"
::= { prvtCfmProcessEntry 3 }
prvtCfmProcessStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable two-way monitoring process for MEP's in the MA."
DEFVAL { true }
::= { prvtCfmProcessEntry 4 }
prvtCfmProcessRepeatInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..420)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Repeating frequency of the monitoring process."
DEFVAL { 60 }
::= { prvtCfmProcessEntry 5 }
prvtCfmProcessPacketType OBJECT-TYPE
SYNTAX INTEGER {
cfm (1),
y1731 (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Use CFM Loopback or Y.1731 LMMs and DMMs packets."
DEFVAL { cfm }
::= { prvtCfmProcessEntry 6 }
prvtCfmProcessUnreturnedPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of requests for which a reply hasn't been
received. These packets will be counted as lost
when they enter timeout."
DEFVAL { 0 }
::= { prvtCfmProcessEntry 7 }
prvtCfmProcessRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row.
The writable columns in a row can not be changed if the row
is active. All columns must have a valid value before a row
can be activated."
::= { prvtCfmProcessEntry 8 }
-- ------------------------------------------------
-- ------------------------------------------------
prvtCfmProcessResult OBJECT IDENTIFIER ::= { prvtCfmMibObjects 5 }
prvtCfmProcessResultTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtCfmProcessResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains process results."
::= { prvtCfmProcessResult 1 }
prvtCfmProcessResultEntry OBJECT-TYPE
SYNTAX PrvtCfmProcessResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "a"
INDEX { dot1agCfmMdIndex, dot1agCfmMaIndex,
prvtCfmProcessIndex, dot1agCfmMepDbRMepIdentifier }
::= { prvtCfmProcessResultTable 1 }
PrvtCfmProcessResultEntry ::= SEQUENCE {
prvtCfmProcessResultOneWayJitter Unsigned32,
prvtCfmProcessResultTwoWayJitter Unsigned32,
prvtCfmProcessResultLatency Unsigned32,
prvtCfmProcessResultFrameloss Unsigned32
}
prvtCfmProcessResultOneWayJitter OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"One way jitter calculated for a specific remote MEP in milliseconds"
::= { prvtCfmProcessResultEntry 1 }
prvtCfmProcessResultTwoWayJitter OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Two way jitter calculated for a specific remote MEP in milliseconds"
::= { prvtCfmProcessResultEntry 2 }
prvtCfmProcessResultLatency OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Two way latency calculated for a specific remote MEP
in milliseconds"
::= { prvtCfmProcessResultEntry 3 }
prvtCfmProcessResultFrameloss OBJECT-TYPE
SYNTAX Unsigned32 (0..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Two way frameloss calculated for a specific remote MEP
in units of hundredths of percent.
Note: When prvtCfmProcessResultFrameloss has value of 10000, all the values of
prvtCfmProcessResultOneWayJitter, prvtCfmProcessResultTwoWayJitter and
prvtCfmProcessResultLatency are irrelevant."
::= { prvtCfmProcessResultEntry 4 }
-- ------------------------------------------------
-- ------------------------------------------------
prvtCfmMa OBJECT IDENTIFIER ::= { prvtCfmMibObjects 6 }
prvtCfmMaTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtCfmMaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table includes extra variables needed for Y.1731
support and service awareness"
::= { prvtCfmMa 1 }
prvtCfmMaEntry OBJECT-TYPE
SYNTAX PrvtCfmMaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "a"
AUGMENTS { dot1agCfmMaCompEntry }
::= { prvtCfmMaTable 1 }
PrvtCfmMaEntry ::= SEQUENCE {
prvtCfmMaCompAisLckEnabled TruthValue,
prvtCfmMaCompAisLckLevel Dot1agCfmMDLevelOrNone,
prvtCfmMaCompAisLckInterval INTEGER,
prvtCfmMaCompAisLckPriority Unsigned32,
prvtCfmMaCompServiceId Unsigned32,
prvtCfmMaCompNumberOfServices Unsigned32,
prvtCfmMaCompClearConnectivity Unsigned32
}
prvtCfmMaCompAisLckEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Turn the AIS & LCK features on/off."
DEFVAL { false }
::= { prvtCfmMaEntry 1 }
prvtCfmMaCompAisLckLevel OBJECT-TYPE
SYNTAX Dot1agCfmMDLevelOrNone
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MD level at which AIS & LCK frames will be sent.
It should be greater then that of the current domain.
The default value is '-1' representing 'not-configured'."
DEFVAL {-1}
::= { prvtCfmMaEntry 2 }
prvtCfmMaCompAisLckInterval OBJECT-TYPE
SYNTAX INTEGER {
interval1s (1),
interval1min (2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time interval at which AIS and LCK frames will be sent"
DEFVAL { interval1s }
::= { prvtCfmMaEntry 3 }
prvtCfmMaCompAisLckPriority OBJECT-TYPE
SYNTAX Unsigned32 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"COS parameter for the outgoing AIS & LCK frames.
The default value is '6'"
DEFVAL { 6 }
::= { prvtCfmMaEntry 4 }
prvtCfmMaCompServiceId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The primary service ID attached to this MA"
DEFVAL { 0 }
::= { prvtCfmMaEntry 5 }
prvtCfmMaCompNumberOfServices OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of services attached to this MA"
DEFVAL { 1 }
::= { prvtCfmMaEntry 6 }
prvtCfmMaCompClearConnectivity OBJECT-TYPE
SYNTAX Unsigned32 (0..8191)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of MEP or 0 for all"
DEFVAL { 0 }
::= { prvtCfmMaEntry 7 }
-- ----------------------------------------------------
-- ----------------------------------------------------
prvtCfmMep OBJECT IDENTIFIER ::= { prvtCfmMibObjects 7 }
prvtCfmMepTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtCfmMepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "a"
::= { prvtCfmMep 1 }
prvtCfmMepEntry OBJECT-TYPE
SYNTAX PrvtCfmMepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "a"
AUGMENTS { dot1agCfmMepEntry }
::= { prvtCfmMepTable 1 }
PrvtCfmMepEntry ::= SEQUENCE {
prvtCfmMepAlarmSupressed TruthValue,
prvtCfmMepAisCondition TruthValue,
prvtCfmMepLckCondition TruthValue,
prvtCfmMepAisLifetime INTEGER,
prvtCfmMepLckLifetime INTEGER,
prvtCfmMepTransmitMcastLbm TruthValue,
prvtCfmMepTransmitLbmInfinite TruthValue,
prvtCfmMepTransmitLbmDelay Unsigned32,
prvtCfmMepTransmitLbmTimeout Unsigned32,
prvtCfmMepTransmitLtmTimeout Unsigned32,
prvtCfmMepTransmitLbmSentPkts Unsigned32,
prvtCfmMepTransmitLbmSuccessRate Unsigned32,
prvtCfmMepTransmitLbmMinTime Unsigned32,
prvtCfmMepTransmitLbmAvgTime Unsigned32,
prvtCfmMepTransmitLbmMaxTime Unsigned32,
prvtCfmMepSuportedRemoteMepsNo INTEGER,
prvtCfmMepExcludeCCMTLV DisplayString
}
prvtCfmMepAlarmSupressed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A boolean showing if an AIS or LCK packet
was received from a lower level"
DEFVAL { false }
::= { prvtCfmMepEntry 1 }
prvtCfmMepAisCondition OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A boolean showing if there is AIS condition. The value of the object is true (an AIS condition), when
there is a detection of signal-fail condition at a Server layer or reception of AIS at a server (sub-) layer MEP [AIS condition/Rec.
ITU-T Y.1731].
The AIS condition will exit when following criteria is met: During an interval equal to 3.5 times the AIS transmission
period indicated in the AIS frames received earlier, the MEP does not receive AIS frames or, when ETH-CC is used,
upon clearing of LOC defect at MEP /Appendix I/Rec. ITU-T Y.1731.
If prvtCfmMaCompAisLckLevel is configured the MEP should send AIS packets."
DEFVAL { false }
::= { prvtCfmMepEntry 2 }
prvtCfmMepLckCondition OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A boolean showing if the MEP should lock the service
towards the client and send LCK packets"
DEFVAL { false }
::= { prvtCfmMepEntry 3 }
prvtCfmMepAisLifetime OBJECT-TYPE
SYNTAX INTEGER {
nolifetime (0),
lifetime35s (1),
lifetime35min (2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lifetime of the last received AIS packet.
During an interval equal to 3.5 times the AIS transmission period indicated
in the AIS frames received earlier, the MEP does not receive AIS frames.
The value is valid (non-zero) if AIS packets are being received."
::= { prvtCfmMepEntry 4 }
prvtCfmMepLckLifetime OBJECT-TYPE
SYNTAX INTEGER {
nolifetime (0),
lifetime35s (1),
lifetime35min (2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lifetime of the last received LCK packet.
During an interval equal to 3.5 times the LCK transmission period indicated
in the LCK frames received earlier, the MEP does not receive LCK frames.
The value is valid (non-zero) if AIS packets are being received."
::= { prvtCfmMepEntry 5 }
prvtCfmMepTransmitMcastLbm OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A boolean to control sending Y.1731 multicast loopback."
DEFVAL { false }
::= { prvtCfmMepEntry 6 }
prvtCfmMepTransmitLbmInfinite OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A boolean to control sending LBMs continuously until the
operation is explicitly stopped by setting this back to false"
DEFVAL { false }
::= { prvtCfmMepEntry 7 }
prvtCfmMepTransmitLbmDelay OBJECT-TYPE
SYNTAX Unsigned32 (0..60)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An amount of time to wait between sent LBMs (in seconds)."
DEFVAL { 1 }
::= { prvtCfmMepEntry 8 }
prvtCfmMepTransmitLbmTimeout OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An amount of time to wait after the last sent LBM if no
LBR is received (in seconds)."
DEFVAL { 5 }
::= { prvtCfmMepEntry 9 }
prvtCfmMepTransmitLtmTimeout OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An amount of time to wait after the last sent LTM if no
LTR is received (in seconds)."
DEFVAL { 5 }
::= { prvtCfmMepEntry 10 }
prvtCfmMepTransmitLbmSentPkts OBJECT-TYPE
SYNTAX Unsigned32 (1..1024)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of successfully sent packets in the current LBM
session."
::= { prvtCfmMepEntry 11 }
prvtCfmMepTransmitLbmSuccessRate OBJECT-TYPE
SYNTAX Unsigned32 (1..10000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Success rate of the current LBM session (in percentage*100)."
::= { prvtCfmMepEntry 12 }
prvtCfmMepTransmitLbmMinTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum LBR response time (in msec)."
::= { prvtCfmMepEntry 13 }
prvtCfmMepTransmitLbmAvgTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average LBR response time (in msec)."
::= { prvtCfmMepEntry 14 }
prvtCfmMepTransmitLbmMaxTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum LBR response time (in msec)."
::= { prvtCfmMepEntry 15 }
prvtCfmMepSuportedRemoteMepsNo OBJECT-TYPE
SYNTAX INTEGER{
remoteMeps8 (8),
remoteMeps16 (16),
remoteMeps24 (24),
remoteMeps32 (32)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of suported remote meps (for TMarc3x0 and TMarc280 devices)"
DEFVAL {remoteMeps8}
::= { prvtCfmMepEntry 16 }
prvtCfmMepExcludeCCMTLV OBJECT-TYPE
SYNTAX DisplayString (SIZE(2))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Bitmask that specifies what TLVs should be excluded(for TMarc3x0 and TMarc280 devices):
On set opertaion:
BIT4 = MSB Include/Exclude bit - if it is 1 the tlv is excluded from the specific CCM packet,if it is 0 the tlv will be included in the specific CCM packet
BIT3 = If set 1 the OrgSpecific TLV will be excluded or included
BIT2 = If set 1 the InterfaceStatus TLV will be excluded or included
BIT1 = If set 1 the PortStatus TLV will be excluded or included
BIT0 = LSB If set 1 the Sender ID TLV will be excluded or included
Examples:
If Interface Status and Port Status will be excluded the bitmask will look like this:
16 in hexadecimal BIT4 BIT3 BIT2 BIT1 BIT0
1 0 1 1 0
If Interface Status and Port Status will be included the bitmask will look like this:
06 in hexadecimal BIT4 BIT3 BIT2 BIT1 BIT0
0 0 1 1 0
On get operation it shows the bits corresponding to the excluded tlvs
If Interface Status and Port Status are excluded:
06 in hexadecimal - 0 1 1 0
"
::= { prvtCfmMepEntry 17 }
-- ------------------------------------------------
-- ------------------------------------------------
prvtCfmLbrTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtCfmLbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains loopback results following the last loopback operation."
::= { prvtCfmMep 2 }
prvtCfmLbrEntry OBJECT-TYPE
SYNTAX PrvtCfmLbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "a"
INDEX { dot1agCfmMdIndex, dot1agCfmMaIndex, dot1agCfmMepIdentifier,
prvtCfmLbrSeqNumber, prvtCfmLbrReceiveOrder }
::= { prvtCfmLbrTable 1 }
PrvtCfmLbrEntry ::= SEQUENCE {
prvtCfmLbrSeqNumber Unsigned32,
prvtCfmLbrReceiveOrder Unsigned32,
prvtCfmLbrTime Unsigned32,
prvtCfmLbrMacAddress MacAddress,
prvtCfmLbrBadMsdu TruthValue
}
prvtCfmLbrSeqNumber OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Transaction identifier/Sequence number of the received LBR."
::= { prvtCfmLbrEntry 1}
prvtCfmLbrReceiveOrder OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index to distinguish among multiple LBRs with the same LBR
Transaction Identifier field value. This situation can appear
in the case of multicast loopback.
"
::= { prvtCfmLbrEntry 2 }
prvtCfmLbrTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Remote MEPs response time in milliseconds."
::= { prvtCfmLbrEntry 3 }
prvtCfmLbrMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Remote MEPs mac address. For unicast loopback
this is the same as dot1agCfmMepTransmitLbmDestMacAddress,
but for multicast loopback there will be different entries."
::= { prvtCfmLbrEntry 4 }
prvtCfmLbrBadMsdu OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result of the Data TLV verification."
::= { prvtCfmLbrEntry 5 }
-- ------------------------------------------------
-- ------------------------------------------------
prvtCfmLtrTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtCfmLtrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table adds the possibility to measure the response
time to a linktrace request."
::= { prvtCfmMep 3 }
prvtCfmLtrEntry OBJECT-TYPE
SYNTAX PrvtCfmLtrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "a"
AUGMENTS { dot1agCfmLtrEntry }
::= { prvtCfmLtrTable 1 }
PrvtCfmLtrEntry ::= SEQUENCE {
prvtCfmLtrTime Unsigned32
}
prvtCfmLtrTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Remote MPs response time in milliseconds."
::= { prvtCfmLtrEntry 1 }
-- ----------------------------------------------------
-- ----------------------------------------------------
prvtCfmMaAisLckVlan OBJECT IDENTIFIER ::= { prvtCfmMibObjects 8 }
prvtCfmMaAisLckVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrvtCfmMaAisLckVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table includes extra variables needed for AIS/LCK configurable vlans"
::= { prvtCfmMaAisLckVlan 1 }
prvtCfmMaAisLckVlanEntry OBJECT-TYPE
SYNTAX PrvtCfmMaAisLckVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table includes extra variables needed for AIS/LCK configurable vlans"
INDEX {dot1agCfmMdIndex, dot1agCfmMaIndex, prvtCfmMaAisLckVlanId }
::= { prvtCfmMaAisLckVlanTable 1 }
PrvtCfmMaAisLckVlanEntry ::= SEQUENCE {
prvtCfmMaAisLckVlanId VlanId,
prvtCfmMaAisLckVlanRowStatus RowStatus
}
prvtCfmMaAisLckVlanId OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Vlan ID (towards customer level) that the generated AIS/LCK packets should use."
::= { prvtCfmMaAisLckVlanEntry 1 }
prvtCfmMaAisLckVlanRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row."
::= { prvtCfmMaAisLckVlanEntry 2 }
-- ------------------------------------------------
-- ------------------------------------------------
-- ***********************************************
-- **************** Notification *****************
-- ***********************************************
prvtCfm1wJitterThreshold NOTIFICATION-TYPE
OBJECTS {
prvtCfmProcessResultOneWayJitter,
prvtCfmProfile1wJitterWarning,
prvtCfmProfile1wJitterError
}
STATUS current
DESCRIPTION
"This trap should be sent whenever the one way jitter
on a CFM test will surpass one of the 2 defined thresholds."
::= { prvtCfmMibNotifications 1 }
prvtCfmJitterThreshold NOTIFICATION-TYPE
OBJECTS {
prvtCfmProcessResultTwoWayJitter,
prvtCfmProfileJitterWarning,
prvtCfmProfileJitterWarningPeriod,
prvtCfmProfileJitterError,
prvtCfmProfileJitterErrorPeriod
}
STATUS current
DESCRIPTION
"This trap should be sent whenever the two way jitter
on a CFM test will surpass one of the 2 defined thresholds."
::= { prvtCfmMibNotifications 2 }
prvtCfmFrameLossThreshold NOTIFICATION-TYPE
OBJECTS {
prvtCfmProcessResultFrameloss,
prvtCfmProfileFrameLossWarning,
prvtCfmProfileFrameLossError
}
STATUS current
DESCRIPTION
"This trap should be sent whenever the frame loss
on a CFM test will surpass one of the 2 defined
thresholds."
::= { prvtCfmMibNotifications 3 }
prvtCfmLatencyThreshold NOTIFICATION-TYPE
OBJECTS {
prvtCfmProcessResultLatency,
prvtCfmProfileLatencyWarning,
prvtCfmProfileLatencyWarningPeriod,
prvtCfmProfileLatencyError,
prvtCfmProfileLatencyErrorPeriod
}
STATUS current
DESCRIPTION
"This trap should be sent whenever the latency
on a CFM test will surpass one of the 2 defined
thresholds."
::= { prvtCfmMibNotifications 4 }
prvtCfmAisReceived NOTIFICATION-TYPE
OBJECTS {
prvtCfmMepAisLifetime
}
STATUS current
DESCRIPTION
"This trap is issued whenever an AIS condition with specified lifetime on a MEP is met."
::= { prvtCfmMibNotifications 5 }
prvtCfmLckReceived NOTIFICATION-TYPE
OBJECTS {
prvtCfmMepLckLifetime
}
STATUS current
DESCRIPTION
"This trap is issued whenever an LCK condition with specified lifetime on a MEP is met."
::= { prvtCfmMibNotifications 6 }
END
|