summaryrefslogtreecommitdiff
path: root/MIBS/dasan/SLE-MPLS-TP-OAM-MIB
blob: 3b7eceba6785132a7b194dc97f2d612ce263ce60 (plain)
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
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
--
-- sle-mpls-tp-oam-mib.mib
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0  Build 88
-- Friday, February 05, 2016 at 11:01:54
--

	SLE-MPLS-TP-OAM-MIB DEFINITIONS ::= BEGIN
 
		IMPORTS
			sleMgmt			
				FROM DASAN-SMI			
			ifGeneralInformationGroup, ifCounterDiscontinuityGroup			
				FROM IF-MIB			
			mplsStdMIB			
				FROM MPLS-TC-STD-MIB			
			SleControlStatusType, SleControlRequestResultType			
				FROM SLE-TC-MIB			
			SnmpAdminString			
				FROM SNMP-FRAMEWORK-MIB			
			zeroDotZero, TimeTicks, Unsigned32, Gauge32, OBJECT-TYPE, 
			MODULE-IDENTITY, OBJECT-IDENTITY			
				FROM SNMPv2-SMI;
	
	
		sleMplsTpOam MODULE-IDENTITY 
			LAST-UPDATED "201510070000Z"		-- October 07, 2015 at 00:00 GMT
			ORGANIZATION 
				" DASAN Networks"
			CONTACT-INFO 
				"Gyerok Kwon 
				Dasan Networks
				Email:  grkwon@dasannetworks.com
				
				Kantharaj B M
				Dasan Networks
				Email:  kanth@dasannetworks.com
				
				DongChel Shin (Chris)
				Dasan Networks
				Email:  dchshin@dasannetworks.com
				
				Comments about this document should be emailed
				directly to the Dasan support email ID at
				support@dasannetworks.com."
			DESCRIPTION 
				"sleMpls"
			REVISION "201301080000Z"		-- January 08, 2013 at 00:00 GMT
			DESCRIPTION 
				" "
			::= { sleMpls 17 }

		
	
	
--
-- Node definitions
--
	
		sleMpls OBJECT-IDENTITY
			STATUS current
			DESCRIPTION 
				"SLE MPLS."
			::= { sleMgmt 16 }

		
		sleMplsTpOamMeg OBJECT IDENTIFIER ::= { sleMplsTpOam 1 }

		
		sleMplsTpOamMegInfoTable OBJECT-TYPE
			SYNTAX SEQUENCE OF SleMplsTpOamMegInfoEntry
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This table contains information about the Maintenance
				Entity Groups (MEG).
				
				MEG as mentioned in MPLS-TP OAM framework defines a set
				of one or more maintenance entities (ME).
				Maintenance Entities define a relationship between any
				two points of a transport path in an OAM domain to which
				maintenance and monitoring operations apply."
			::= { sleMplsTpOamMeg 1 }

		
		sleMplsTpOamMegInfoEntry OBJECT-TYPE
			SYNTAX SleMplsTpOamMegInfoEntry
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"An entry in this table represents MPLS-TP MEG.
				An entry can be created by a network administrator
				or by an SNMP agent as instructed by an MPLS-TP OAM
				Framework.
				
				When a new entry is created with
				sleMplsTpOamMegOperatorType set to ipCompatible (1),
				then as per [RFC6370] (MEG_ID for LSP is LSP_ID and
				MEG_ID for PW is PW_Path_ID), MEP_ID can be
				automatically formed.
				
				For co-routed bidirectional LSP, MEG_ID is
				A1-{Global_ID::Node_ID::Tunnel_Num}::Z9-{Global_ID::
				Node_ID::Tunnel_Num}::LSP_Num.
				
				For associated bidirectional LSP, MEG_ID is A1-
				{Global_ID::Node_ID::Tunnel_Num::LSP_Num}:: Z9-
				{Global_ID::Node_ID::Tunnel_Num::LSP_Num}
				
				For LSP, MEP_ID is formed using,
				Global_ID::Node_ID::Tunnel_Num::LSP_Num
				
				For PW, MEG_ID is formed using AGI::A1-
				{Global_ID::Node_ID::AC_ID}:: Z9-
				{Global_ID::Node_ID::AC_ID}.
				
				For PW, MEP_ID is formed using
				AGI::Global_ID::Node_ID::AC_ID
				
				MEP_ID is retrieved from the sleMplsTpOamMegServicePointer
				object based on the sleMplsTpOamMegServiceType value.
				ICC MEG_ID for LSP and PW is formed using the objects
				sleMplsTpOamMegIdIcc and sleMplsTpOamMegIdUmc.
				
				MEP_ID can be formed using MEG_ID::MEP_Index."
			REFERENCE
				"1. RFC 5860, Requirements for OAM in MPLS Transport
				Networks, May 2010.
				2. RFC 6371, Operations, Administration, and Maintenance
				Framework for MPLS-Based Transport Networks,
				September 2011.
				3. RFC 6370, MPLS Transport Profile (MPLS-TP) Identifiers.
				4. MPLS-TP Identifiers Following ITU-T Conventions
				[TP-ITUIDS]."
			INDEX { sleMplsTpOamMegInfoIndex }
			::= { sleMplsTpOamMegInfoTable 1 }

		
		SleMplsTpOamMegInfoEntry ::=
			SEQUENCE { 
				sleMplsTpOamMegInfoIndex
					Unsigned32,
				sleMplsTpOamMegInfoName
					OCTET STRING,
				sleMplsTpOamMegInfoOperatorType
					INTEGER,
				sleMplsTpOamMegInfoServiceType
					INTEGER,
				sleMplsTpOamMegInfoMegLevel
					INTEGER,
				sleMplsTpOamMegInfoOperStatus
					INTEGER
			 }

		sleMplsTpOamMegInfoIndex OBJECT-TYPE
			SYNTAX Unsigned32 (0..65535)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Index for the conceptual row identifying a MEG within
				
				this MEG table."
			::= { sleMplsTpOamMegInfoEntry 1 }

		
		sleMplsTpOamMegInfoName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (1..48))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Each Maintenance Entity Group has unique name amongst
				all those used or available to a service provider or
				operator. It facilitates easy identification of
				administrative responsibility for each MEG.
				IETF : MEG Name Max. 48 characters long
				ITUT : MEG Name Max 5 characters(Excluding /)."
			::= { sleMplsTpOamMegInfoEntry 2 }

		
		sleMplsTpOamMegInfoOperatorType OBJECT-TYPE
			SYNTAX INTEGER
				{
				ietf(1),
				itut(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object is used to set the IETF or ITUT.	"
			REFERENCE
				"1. RFC 6370, MPLS Transport Profile (MPLS-TP)
				Identifiers.
				2. MPLS-TP Identifiers Following ITU-T Conventions
				[TP-ITUIDS]."
			::= { sleMplsTpOamMegInfoEntry 3 }

		
		sleMplsTpOamMegInfoServiceType OBJECT-TYPE
			SYNTAX INTEGER
				{
				tunnel(1),
				vc(2),
				datalink(3)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates the service type for which the MEG is created.
				If the service type indicates lsp, the service pointer
				in sleMplsOamMe points to the TE tunnel table entry.
				
				If the value is pseudowire service type, the service
				pointer in sleMplsOamMe points to the pseudowire
				table entry.
				
				If the value is section service type, the service
				pointer in sleMplsOamMe points to a section entry."
			::= { sleMplsTpOamMegInfoEntry 4 }

		
		sleMplsTpOamMegInfoMegLevel OBJECT-TYPE
			SYNTAX INTEGER (0..7)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This variable is used to for level 
				for ITUT. When a row in this table is in active object cannot
				be changed."
			::= { sleMplsTpOamMegInfoEntry 5 }

		
		sleMplsTpOamMegInfoOperStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				up(1),
				down(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object specifies the operational status of the
				Maintenance Entity Group (MEG). This object is used to
				send the notification to the SNMP manager about the MEG.
				
				The value up (1) indicates that the MEG and its monitored
				path are operationally up. The value down (2) indicates
				that the MEG is operationally down.
				
				When the value of mplsOamIdMegOperStatus is up(1), all 
				the bits of mplsOamIdMegSubOperStatus must be cleared.
				When the value of mplsOamIdMegOperStatus is down(2), 
				at least one bit of mplsOamIdMegSubOperStatus must be
				set."
			::= { sleMplsTpOamMegInfoEntry 6 }

		
		sleMplsTpOamMegControl OBJECT IDENTIFIER ::= { sleMplsTpOamMeg 2 }

		
		sleMplsTpOamMegControlRequest OBJECT-TYPE
			SYNTAX INTEGER
				{
				createsleMplsTpOamMegControlEntry(1),
				deletesleMplsTpOamMegControlEntry(2),
				setsleMplsTpOamMegControlServiceType(3),
				setsleMplsTpOamMegControlLevel(4)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"the configuration commands, and user can configure
				functions via setting this entry as proper value."
			::= { sleMplsTpOamMegControl 1 }

		
		sleMplsTpOamMegControlStatus OBJECT-TYPE
			SYNTAX SleControlStatusType
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"status of user command. User have to check this value as .busy. 
				or .idle. before do setRequest."
			::= { sleMplsTpOamMegControl 2 }

		
		sleMplsTpOamMegControlTimer OBJECT-TYPE
			SYNTAX Gauge32
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"the wait-time until setRequest end. In case of short-time command, 
				this value is 0"
			::= { sleMplsTpOamMegControl 3 }

		
		sleMplsTpOamMegControlTimeStamp OBJECT-TYPE
			SYNTAX TimeTicks
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"the time stamp of the last command. (don.t care)"
			::= { sleMplsTpOamMegControl 4 }

		
		sleMplsTpOamMegControlReqResult OBJECT-TYPE
			SYNTAX SleControlRequestResultType
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Result of the last command."
			::= { sleMplsTpOamMegControl 5 }

		
		sleMplsTpOamMegControlName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (1..48))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Each Maintenance Entity Group has unique name amongst
				all those used or available to a service provider or
				operator. It facilitates easy identification of
				administrative responsibility for each MEG."
			::= { sleMplsTpOamMegControl 6 }

		
		sleMplsTpOamMegControlOperatorType OBJECT-TYPE
			SYNTAX INTEGER
				{
				ietf(1),
				itut(2)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates the operator type for MEG. Conceptual rows
				having 'iccBased' as operator type, should have valid
				values for the objects sleMplsTpOamMegControlIdIcc and
				sleMplsTpOamMegControlIdUmc while making the row status active."
			REFERENCE
				"1. RFC 6370, MPLS Transport Profile (MPLS-TP)
				Identifiers.
				2. MPLS-TP Identifiers Following ITU-T Conventions
				[TP-ITUIDS]."
			::= { sleMplsTpOamMegControl 7 }

		
		sleMplsTpOamMegControlServiceType OBJECT-TYPE
			SYNTAX INTEGER
				{
				tunnel(1),
				vc(2),
				datalink(3)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates the service type for which the MEG is created.
				If the service type indicates lsp, the service pointer
				in sleMplsOamMe points to the TE tunnel table entry.
				
				If the value is pseudowire service type, the service
				pointer in sleMplsOamMe points to the pseudowire
				table entry.
				
				If the value is section service type, the service
				pointer in sleMplsOamMe points to a section entry."
			::= { sleMplsTpOamMegControl 8 }

		
		sleMplsTpOamMegControlLevel OBJECT-TYPE
			SYNTAX INTEGER (0..7)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"This variable is used to for level 
				for ITUT. When a row in this table is in active object cannot
				be changed."
			::= { sleMplsTpOamMegControl 9 }

		
		sleMplsTpOamMaintananceEntity OBJECT IDENTIFIER ::= { sleMplsTpOam 2 }

		
		sleMplsTpOamMaintanceEntityInfoTable OBJECT-TYPE
			SYNTAX SEQUENCE OF SleMplsTpOamMaintanceEntityInfoEntry
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This table contains MPLS-TP maintenance entity
				information.
				
				ME is some portion of a transport path that requires
				management bounded by two points (called MEPs), and the
				relationship between those points to which maintenance
				and monitoring operations apply.
				
				This table is generic enough to handle MEPs and MIPs
				information within a MEG."
			::= { sleMplsTpOamMaintananceEntity 1 }

		
		sleMplsTpOamMaintanceEntityInfoEntry OBJECT-TYPE
			SYNTAX SleMplsTpOamMaintanceEntityInfoEntry
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"An entry in this table represents MPLS-TP maintenance
				entity. This entry represents the ME if the source and
				sink MEPs are defined.
				
				A ME is a p2p entity. One ME has two such MEPs.
				A MEG is a group of one or more MEs. One MEG can have
				two or more MEPs.
				
				For P2P LSP, one MEG has one ME and this ME is associated
				two MEPs (source and sink MEPs) within a MEG.
				Each sleMplsOamMeIndex value denotes the ME within a MEG.
				
				In case of unidirectional point-to-point transport paths,
				a single unidirectional Maintenance Entity is defined to
				monitor it and sleMplsOamMeServicePointer points to
				unidirectional point-to-point path.
				
				In case of associated bidirectional point-to-point
				transport paths, two independent unidirectional
				Maintenance Entities are defined to independently monitor
				each direction and each sleMplsOamMeServicePointer MIB
				object points to unique unidirectional transport path.
				This has implications for transactions that terminate at
				or query a MIP, as a return path from MIP to source MEP
				does not necessarily exist within the MEG.
				
				In case of co-routed bidirectional point-to-point
				transport paths, a single bidirectional Maintenance Entity
				
				
				
				is defined to monitor both directions congruently and
				sleMplsOamMeServicePointer MIB object points to co-routed
				bidirectional point-to-point transport path.
				
				In case of unidirectional point-to-multipoint transport
				paths, a single unidirectional Maintenance entity for each
				leaf is defined to monitor the transport path from the
				root to that leaf and each leaf has different transport
				path information in sleMplsOamMeServicePointer MIB object."
			INDEX { sleMplsTpOamMaintanceEntityInfoMeIndex, sleMplsTpOamMaintanceEntityInfoMpIndex }
			::= { sleMplsTpOamMaintanceEntityInfoTable 1 }

		
		SleMplsTpOamMaintanceEntityInfoEntry ::=
			SEQUENCE { 
				sleMplsTpOamMaintanceEntityInfoMeIndex
					Unsigned32,
				sleMplsTpOamMaintanceEntityInfoMpIndex
					Unsigned32,
				sleMplsOamMaintenanceEntityInfoMeName
					SnmpAdminString,
				sleMplsTpOamMaintanceEntityInfoMpType
					INTEGER,
				sleMplsOamMaintenanceEntityInfoServiceTunnelName
					OCTET STRING,
				sleMplsOamMaintenanceEntityInfoServiceVcId
					Unsigned32,
				sleMplsOamMaintenanceEntityInfoServiceDatalink
					OCTET STRING,
				sleMplsTpOamMaintanceEntityInfoCcInterval
					Unsigned32,
				sleMplsTpOamMaintanceEntityInfoRemoteMpId
					Unsigned32,
				sleMplsTpOamMaintanceEntityInfoRemoteCc
					OCTET STRING,
				sleMplsTpOamMaintanceEntityInfoRemoteIcc
					OCTET STRING,
				sleMplsTpOamMaintanceEntityInfoRemoteMeg
					OCTET STRING,
				sleMplsTpOamMaintanceEntityInfoRemoteMpdirection
					INTEGER
			 }

		sleMplsTpOamMaintanceEntityInfoMeIndex OBJECT-TYPE
			SYNTAX Unsigned32 (0..65535)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Uniquely identifies a maintenance entity index within
				a MEG."
			::= { sleMplsTpOamMaintanceEntityInfoEntry 1 }

		
		sleMplsTpOamMaintanceEntityInfoMpIndex OBJECT-TYPE
			SYNTAX Unsigned32 (1..8191)
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Indicates the maintenance point index, used to create
				multiple MEPs in a node of single ME. The value of this
				object can be MEP index or MIP index. Managers should 
				obtain new values for row creation in this table by reading
				mplsOamIdMeMpIndexNext."
			::= { sleMplsTpOamMaintanceEntityInfoEntry 2 }

		
		sleMplsOamMaintenanceEntityInfoMeName OBJECT-TYPE
			SYNTAX SnmpAdminString (SIZE (1..48))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object denotes the ME name, each
				Maintenance Entity has unique name within MEG."
			::= { sleMplsTpOamMaintanceEntityInfoEntry 3 }

		
		sleMplsTpOamMaintanceEntityInfoMpType OBJECT-TYPE
			SYNTAX INTEGER
				{
				mep(1),
				mip(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates the maintenance point type within the MEG.
				The object should have the value mep (1),  only in the
				Ingress or Egress nodes of the transport path.
				The object can have the value mip (2),
				in the intermediate nodes and possibly in the end nodes
				of the transport path."
			::= { sleMplsTpOamMaintanceEntityInfoEntry 4 }

		
		sleMplsOamMaintenanceEntityInfoServiceTunnelName OBJECT-TYPE
			SYNTAX OCTET STRING
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This variable represents a pointer to the MPLS-TP
				transport path. This value may point at an entry in the
				sleMplsTunnelEntry ifsleMplsOamMaintenanceEntitygServiceType is configured
				as lsp (1) or at an entry in the pwEntry if
				sleMplsOamMaintenanceEntitygServiceType is configured as pseudowire (2).
				
				Note: This service pointer object, is placed in ME table
				instead of MEG table, since it will be useful in case of
				point-to-multipoint, where each ME will point to different
				branches of a P2MP tree."
			::= { sleMplsTpOamMaintanceEntityInfoEntry 5 }

		
		sleMplsOamMaintenanceEntityInfoServiceVcId OBJECT-TYPE
			SYNTAX Unsigned32
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This variable represents a pointer to the MPLS-TP
				transport path. This value may point at an entry in the
				sleMplsTunnelEntry ifsleMplsOamMaintenanceEntitygServiceType is configured
				as lsp (1) or at an entry in the pwEntry if
				sleMplsOamMaintenanceEntitygServiceType is configured as pseudowire (2).
				
				Note: This service pointer object, is placed in ME table
				instead of MEG table, since it will be useful in case of
				point-to-multipoint, where each ME will point to different
				branches of a P2MP tree."
			::= { sleMplsTpOamMaintanceEntityInfoEntry 6 }

		
		sleMplsOamMaintenanceEntityInfoServiceDatalink OBJECT-TYPE
			SYNTAX OCTET STRING
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This variable represents a pointer to the MPLS-TP
				transport path. This value may point at an entry in the
				sleMplsTunnelEntry ifsleMplsOamMaintenanceEntitygServiceType is configured
				as lsp (1) or at an entry in the pwEntry if
				sleMplsOamMaintenanceEntitygServiceType is configured as pseudowire (2).
				
				Note: This service pointer object, is placed in ME table
				instead of MEG table, since it will be useful in case of
				point-to-multipoint, where each ME will point to different
				branches of a P2MP tree."
			::= { sleMplsTpOamMaintanceEntityInfoEntry 7 }

		
		sleMplsTpOamMaintanceEntityInfoCcInterval OBJECT-TYPE
			SYNTAX Unsigned32 (1..7)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This variable is used to keep the continuty check interval
				for ITUT. When a row in this table is in active object cannot
				be changed."
			::= { sleMplsTpOamMaintanceEntityInfoEntry 8 }

		
		sleMplsTpOamMaintanceEntityInfoRemoteMpId OBJECT-TYPE
			SYNTAX Unsigned32 (1..8191)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This variable is used for setting the remote mep id "
			::= { sleMplsTpOamMaintanceEntityInfoEntry 9 }

		
		sleMplsTpOamMaintanceEntityInfoRemoteCc OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..2))
			MAX-ACCESS read-create
			STATUS current
			DESCRIPTION
				"Global uniqueness is assured by concatenating the ICC 
				with a Country Code (CC).  The Country Code (alpha-2) 
				is a string of two alphabetic characters represented 
				with upper case letters (i.e., A-Z).
				
				This object MUST contain a non-null ICC value if
				the MplsOamIdMegOperatorType value is iccBased(2),
				otherwise a null ICC value with octet size 0
				should be assigned."
			REFERENCE
				"RFC6923, MPLS Transport Profile (MPLS-TP) Identifiers
				Following ITU-T Conventions. Section 3."
			DEFVAL { "" }
			::= { sleMplsTpOamMaintanceEntityInfoEntry 10 }

		
		sleMplsTpOamMaintanceEntityInfoRemoteIcc OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..6))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Unique code assigned to Network Operator or Service
				Provider maintained by ITU-T. The ITU Carrier Code
				used to form MEGID.
				
				This object MUST contain a non-null ICC value if
				the MplsOamIdMegOperatorType value is iccBased(2),
				otherwise a null ICC value with octet size 0
				should be assigned."
			REFERENCE
				"RFC6923, MPLS Transport Profile (MPLS-TP) Identifiers
				Following ITU-T Conventions. Section 3.1."
			DEFVAL { "" }
			::= { sleMplsTpOamMaintanceEntityInfoEntry 11 }

		
		sleMplsTpOamMaintanceEntityInfoRemoteMeg OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..6))
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Unique code assigned by Network Operator or Service
				Provider and is appended to mplsOamIdMegIdIcc to form
				the MEGID.
				This object MUST contain a non-null ICC value if
				the MplsOamIdMegOperatorType value is iccBased(2),
				otherwise a null ICC value with octet size 0
				should be assigned."
			REFERENCE
				"RFC6923, MPLS Transport Profile (MPLS-TP) Identifiers
				Following ITU-T Conventions. Section 7.1."
			DEFVAL { "" }
			::= { sleMplsTpOamMaintanceEntityInfoEntry 12 }

		
		sleMplsTpOamMaintanceEntityInfoRemoteMpdirection OBJECT-TYPE
			SYNTAX INTEGER
				{
				forward(1),
				reverse(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Indicates the maintenance point type within the MEG.
				This object is used to display the forward and reverse remote mep of 
				Transist router ."
			::= { sleMplsTpOamMaintanceEntityInfoEntry 13 }

		
		sleMplsTpOamMaintanceEntityControl OBJECT IDENTIFIER ::= { sleMplsTpOamMaintananceEntity 2 }

		
		sleMplsTpOamMaintanceEntityRequest OBJECT-TYPE
			SYNTAX INTEGER
				{
				createsleMplsTpOamMaintanceEntityControlEntry(1),
				deletesleMplsTpOamMaintanceEntityControlEntry(2),
				setsleMplsTpOamMaintanceEntityControlServiceValue(3),
				setSleMplsTpOamMepControlCCInterval(4),
				unsetSleMplsTpOamMepControlCCInterval(5),
				setsleMplsTpOamMaintanceEntityControlRmepId(6),
				unsetsleMplsTpOamMaintanceEntityControlRmepId(7)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"the configuration commands, and user can configure functions 
				via setting this entry as proper value."
			::= { sleMplsTpOamMaintanceEntityControl 1 }

		
		sleMplsTpOamMaintanceEntityControlStatus OBJECT-TYPE
			SYNTAX SleControlStatusType
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"status of user command. User have to check this value as 
				.busy. or .idle. before do setRequest."
			::= { sleMplsTpOamMaintanceEntityControl 2 }

		
		sleMplsTpOamMaintanceEntityControlTimer OBJECT-TYPE
			SYNTAX Gauge32
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"the wait-time until setRequest end. In case of short-time
				command, this value is 0"
			::= { sleMplsTpOamMaintanceEntityControl 3 }

		
		sleMplsTpOamMaintanceEntityControlTimeStamp OBJECT-TYPE
			SYNTAX TimeTicks
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"the time stamp of the last command. (don.t care)"
			::= { sleMplsTpOamMaintanceEntityControl 4 }

		
		sleMplsTpOamMaintanceEntityControlReqResult OBJECT-TYPE
			SYNTAX SleControlRequestResultType
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Result of the last command."
			::= { sleMplsTpOamMaintanceEntityControl 5 }

		
		sleMplsTpOamMaintanceEntityControlMegName OBJECT-TYPE
			SYNTAX OCTET STRING
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Uniquely identifies a maintenance entity index within
				a MEG."
			::= { sleMplsTpOamMaintanceEntityControl 6 }

		
		sleMplsTpOamMaintanceEntityControlMeName OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (1..48))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"This object denotes the ME name, each
				Maintenance Entity has unique name within MEG."
			::= { sleMplsTpOamMaintanceEntityControl 7 }

		
		sleMplsTpOamMaintanceEntityControlMepId OBJECT-TYPE
			SYNTAX Unsigned32 (1..8191)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Uniquely identifies a maintenance entity index within
				a MEP ."
			::= { sleMplsTpOamMaintanceEntityControl 8 }

		
		sleMplsTpOamMaintanceEntityControlMpType OBJECT-TYPE
			SYNTAX INTEGER
				{
				mep(1),
				mip(2)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates the maintenance point type within the MEG.
				
				The object should have the value mep (1),  only in the
				Ingress or Egress nodes of the transport path.
				
				The object can have the value mip (2),
				in the intermediate nodes and possibly in the end nodes
				of the transport path."
			::= { sleMplsTpOamMaintanceEntityControl 9 }

		
		sleMplsTpOamMaintanceEntityControlServiceValue OBJECT-TYPE
			SYNTAX OCTET STRING
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"This variable represents a pointer to the MPLS-TP
				transport path. This value may point at an entry in the
				sleMplsTunnelEntry if sleMplsOamMeControlgServiceType is configured
				as lsp (1) or at an entry in the pwEntry if
				sleMplsOamMeControlgServiceType is configured as pseudowire (2).
				
				Note: This service pointer object, is placed in ME table
				instead of MEG table, since it will be useful in case of
				point-to-multipoint, where each ME will point to different
				branches of a P2MP tree."
			::= { sleMplsTpOamMaintanceEntityControl 10 }

		
		sleMplsTpOamMaintanceEntityControlCcInterval OBJECT-TYPE
			SYNTAX Unsigned32 (1..7)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"This variable is used to keep the continuty check interval
				for ITUT. When a row in this table is in active object cannot
				be changed."
			::= { sleMplsTpOamMaintanceEntityControl 11 }

		
		sleMplsTpOamMaintanceEntityControlRemoteMpId OBJECT-TYPE
			SYNTAX Unsigned32 (1..8191)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This variable is used for setting the remote mep id "
			::= { sleMplsTpOamMaintanceEntityControl 12 }

		
		sleMplsTpOamMaintanceEntityControlRemoteCc OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..2))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Global uniqueness is assured by concatenating the ICC 
				with a Country Code (CC).  The Country Code (alpha-2) 
				is a string of two alphabetic characters represented 
				with upper case letters (i.e., A-Z).
				
				This object MUST contain a non-null ICC value if
				the MplsOamIdMegOperatorType value is iccBased(2),
				otherwise a null ICC value with octet size 0
				should be assigned."
			REFERENCE
				"RFC6923, MPLS Transport Profile (MPLS-TP) Identifiers
				Following ITU-T Conventions. Section 3."
			DEFVAL { "" }
			::= { sleMplsTpOamMaintanceEntityControl 13 }

		
		sleMplsTpOamMaintanceEntityControlRemoteIcc OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..6))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Unique code assigned to Network Operator or Service
				Provider maintained by ITU-T. The ITU Carrier Code
				used to form MEGID.
				
				This object MUST contain a non-null ICC value if
				the MplsOamIdMegOperatorType value is iccBased(2),
				otherwise a null ICC value with octet size 0
				should be assigned."
			REFERENCE
				"RFC6923, MPLS Transport Profile (MPLS-TP) Identifiers
				Following ITU-T Conventions. Section 3.1."
			DEFVAL { "" }
			::= { sleMplsTpOamMaintanceEntityControl 14 }

		
		sleMplsTpOamMaintanceEntityControlRemoteMeg OBJECT-TYPE
			SYNTAX OCTET STRING (SIZE (0..7))
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Unique code assigned by Network Operator or Service
				Provider and is appended to mplsOamIdMegIdIcc to form
				the MEGID.
				This object MUST contain a non-null ICC value if
				the MplsOamIdMegOperatorType value is iccBased(2),
				otherwise a null ICC value with octet size 0
				should be assigned."
			REFERENCE
				"RFC6923, MPLS Transport Profile (MPLS-TP) Identifiers
				Following ITU-T Conventions. Section 7.1."
			DEFVAL { "" }
			::= { sleMplsTpOamMaintanceEntityControl 15 }

		
		sleMplsTpOamMaintanceEntityControlRemoteMpDirection OBJECT-TYPE
			SYNTAX INTEGER
				{
				fwd(1),
				rev(2)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Indicates the direction of the MEP. This object
				should be configured if sleMplsOamMeControlMpType is
				configured as mep (1)."
			::= { sleMplsTpOamMaintanceEntityControl 16 }

		
		sleMplsTpOamFm OBJECT IDENTIFIER ::= { sleMplsTpOam 3 }

		
		sleMplsTpOamFmInfoTable OBJECT-TYPE
			SYNTAX SEQUENCE OF SleMplsTpOamFmInfoEntry
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION			" "
			::= { sleMplsTpOamFm 1 }

		
		sleMplsTpOamFmInfoEntry OBJECT-TYPE
			SYNTAX SleMplsTpOamFmInfoEntry
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"An entry in this table represents MPLS-TP maintenance
				entity."
			INDEX { sleMplsTpOamFmInfoMegIndex, sleMplsTpOamFmInfoMeIndex, sleMplsTpOamFmInfoMpIndex }
			::= { sleMplsTpOamFmInfoTable 1 }

		
		SleMplsTpOamFmInfoEntry ::=
			SEQUENCE { 
				sleMplsTpOamFmInfoMeIndex
					Unsigned32,
				sleMplsTpOamFmInfoMpIndex
					Unsigned32,
				sleMplsTpOamFmInfoFaultManagement
					INTEGER,
				sleMplsTpOamFmInfoRefreshTime
					Unsigned32,
				sleMplsTpOamFmInfoLockInstruct
					INTEGER,
				sleMplsTpOamFmInfoLockInstructRefreshTime
					Unsigned32,
				sleMplsTpOamFmInfoAlarmIndication
					INTEGER,
				sleMplsTpOamFmInfoAlarmIndicationInterval
					INTEGER,
				sleMplsTpOamFmInfoAlarmIndicationLevel
					INTEGER,
				sleMplsTpOamFmInfoLock
					INTEGER,
				sleMplsTpOamFmInfoLockInterval
					INTEGER,
				sleMplsTpOamFmInfoLockLevel
					INTEGER,
				sleMplsTpOamFmInfoLoopBack
					INTEGER,
				sleMplsTpOamFmInfoLoopBackStatus
					INTEGER,
				sleMplsTpOamFmInfoLockInstructStatus
					INTEGER,
				sleMplsTpOamFmInfoFaultManagementStatus
					INTEGER,
				sleMplsTpOamFmInfoCcCvStatus
					INTEGER,
				sleMplsTpOamFmInfoStatus
					INTEGER
			 }

		sleMplsTpOamFmInfoMeIndex OBJECT-TYPE
			SYNTAX Unsigned32 (0..65535)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Uniquely identifies a maintenance entity index within
				a MEG."
			::= { sleMplsTpOamFmInfoEntry 1 }

		
		sleMplsTpOamFmInfoMpIndex OBJECT-TYPE
			SYNTAX Unsigned32 (1..8191)
			MAX-ACCESS not-accessible
			STATUS current
			DESCRIPTION
				"Indicates the maintenance point index, used to create
				multiple MEPs in a node of single ME. The value of this
				object can be MEP index or MIP index. Managers should 
				obtain new values for row creation in this table by reading
				mplsOamIdMeMpIndexNext."
			::= { sleMplsTpOamFmInfoEntry 2 }

		
		sleMplsTpOamFmInfoFaultManagement OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Fault Managment for IETF shows enable or disable"
			DEFVAL { disable }
			::= { sleMplsTpOamFmInfoEntry 3 }

		
		sleMplsTpOamFmInfoRefreshTime OBJECT-TYPE
			SYNTAX Unsigned32 (1..20)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This Object is used in IETF-based Fault Management RefreshTimer."
			DEFVAL { 0 }
			::= { sleMplsTpOamFmInfoEntry 4 }

		
		sleMplsTpOamFmInfoLockInstruct OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Lock instruct for IETF shows enable or disable"
			DEFVAL { disable }
			::= { sleMplsTpOamFmInfoEntry 5 }

		
		sleMplsTpOamFmInfoLockInstructRefreshTime OBJECT-TYPE
			SYNTAX Unsigned32 (1..20)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This Object is used in IETF-based lock RefreshTimer."
			DEFVAL { 0 }
			::= { sleMplsTpOamFmInfoEntry 6 }

		
		sleMplsTpOamFmInfoAlarmIndication OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Alarm indication for ITUT shows enable or disable."
			DEFVAL { disable }
			::= { sleMplsTpOamFmInfoEntry 7 }

		
		sleMplsTpOamFmInfoAlarmIndicationInterval OBJECT-TYPE
			SYNTAX INTEGER
				{
				oneSecond(1),
				sixtySeconds(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This is object to display the itut alarm indication interval value. "
			::= { sleMplsTpOamFmInfoEntry 8 }

		
		sleMplsTpOamFmInfoAlarmIndicationLevel OBJECT-TYPE
			SYNTAX INTEGER (0..7)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object to display the Itut alarm indication Level value. "
			::= { sleMplsTpOamFmInfoEntry 9 }

		
		sleMplsTpOamFmInfoLock OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This Object is used in ITUT-based lock. This object will enable/disable the lock"
			DEFVAL { disable }
			::= { sleMplsTpOamFmInfoEntry 10 }

		
		sleMplsTpOamFmInfoLockInterval OBJECT-TYPE
			SYNTAX INTEGER
				{
				oneSecond(1),
				sixtySeconds(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object is used to display the ITUT based Lock Interval. "
			::= { sleMplsTpOamFmInfoEntry 11 }

		
		sleMplsTpOamFmInfoLockLevel OBJECT-TYPE
			SYNTAX INTEGER (0..7)
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object is used to Display the ITUT based Lock Level. "
			::= { sleMplsTpOamFmInfoEntry 12 }

		
		sleMplsTpOamFmInfoLoopBack OBJECT-TYPE
			SYNTAX INTEGER
				{
				enable(1),
				disable(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This Object is used in IETF-based loop back. This will show enable/disable loop back ."
			DEFVAL { 2 }
			::= { sleMplsTpOamFmInfoEntry 13 }

		
		sleMplsTpOamFmInfoLoopBackStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				up(1),
				down(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object to display the Status of IETF Based LoopBackStatus."
			DEFVAL { 2 }
			::= { sleMplsTpOamFmInfoEntry 14 }

		
		sleMplsTpOamFmInfoLockInstructStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				up(1),
				down(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object to display the Status of IETF Based LockInstruct."
			DEFVAL { 2 }
			::= { sleMplsTpOamFmInfoEntry 15 }

		
		sleMplsTpOamFmInfoFaultManagementStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				up(1),
				down(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object to display the Status of IETF Based FaultManagement."
			DEFVAL { 2 }
			::= { sleMplsTpOamFmInfoEntry 16 }

		
		sleMplsTpOamFmInfoCcCvStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				enabled(1),
				disabled(2)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object to display the Status of IETF Based CC-CV."
			DEFVAL { 2 }
			::= { sleMplsTpOamFmInfoEntry 17 }

		
		sleMplsTpOamFmInfoStatus OBJECT-TYPE
			SYNTAX INTEGER
				{
				pathNotAssociated(1),
				pathAssociateWithAnotherMe(2),
				pathDown(3),
				receivedAisFmMessage(4),
				receviedLkrFmMessage(5),
				bfdDetecLoc(6),
				serverLayerDown(7),
				invalidMe(8)
				}
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"This object is used to display the IETF Status  
				1- path not Associated.
				2- path associated with another me.
				3- path down
				4- received AIS Message.
				5- received LKR FM Message.
				6- Bfd Detected Loc.
				7- Server Layer Down.
				8- Invalid Me."
			::= { sleMplsTpOamFmInfoEntry 18 }

		
		sleMplsTpOamFmControlTable OBJECT IDENTIFIER ::= { sleMplsTpOamFm 2 }

		
		sleMplsTpOamFmControlRequest OBJECT-TYPE
			SYNTAX INTEGER
				{
				setSleMplsTpOamFmControlInit(1),
				unsetSleMplsTpOamFmControlInit(2),
				setSleMplsTpOamItutAis(3),
				unsetSleMplsTpOamItutAis(4),
				setSleMplsTpOamItutLockInterval(5),
				unsetSleMplsTpOamItutLockInterval(6)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"the configuration commands, and user can configure functions via setting this entry as proper value."
			::= { sleMplsTpOamFmControlTable 1 }

		
		sleMplsTpOamFmControlStatus OBJECT-TYPE
			SYNTAX SleControlStatusType
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"status of user command. User have to check this value as .busy. or .idle. before do setRequest."
			::= { sleMplsTpOamFmControlTable 2 }

		
		sleMplsTpOamFmControlTimer OBJECT-TYPE
			SYNTAX Gauge32
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"the wait-time until setRequest end. In case of short-time command, this value is 0"
			::= { sleMplsTpOamFmControlTable 3 }

		
		sleMplsTpOamFmControlTimeStamp OBJECT-TYPE
			SYNTAX TimeTicks
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"the time stamp of the last command. (don.t care)"
			::= { sleMplsTpOamFmControlTable 4 }

		
		sleMplsTpOamFmControlReqResult OBJECT-TYPE
			SYNTAX SleControlRequestResultType
			MAX-ACCESS read-only
			STATUS current
			DESCRIPTION
				"Result of the last command."
			::= { sleMplsTpOamFmControlTable 5 }

		
		sleMplsTpOamFmControlMegName OBJECT-TYPE
			SYNTAX OCTET STRING
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Uniquely identifies a maintenance entity index within
				a MEG."
			::= { sleMplsTpOamFmControlTable 6 }

		
		sleMplsTpOamFmControlMeName OBJECT-TYPE
			SYNTAX OCTET STRING
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Uniquely identifies a maintenance entity index within
				a ME."
			::= { sleMplsTpOamFmControlTable 7 }

		
		sleMplsTpOamFmControlMepId OBJECT-TYPE
			SYNTAX Unsigned32 (1..8191)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"Uniquely identifies a maintenance entity index within
				a MEP."
			::= { sleMplsTpOamFmControlTable 8 }

		
		sleMplsTpOamFmInit OBJECT-TYPE
			SYNTAX INTEGER
				{
				faultMeasurment(1),
				lockInstruct(2),
				loopBack(3)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"This variable is used for setting the fault Measurments for IETF/ITUT based upon gloable configuration
				1) Fault measurment is for IETF 
				2) Lock-Instruct is for IETF 
				3) LoopBack to configure for IETF "
			::= { sleMplsTpOamFmControlTable 9 }

		
		sleMplsTpOamFmControlRefreshTime OBJECT-TYPE
			SYNTAX Unsigned32 (1..255)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"This varible is used to set the Refresh Time for IETF of 2 objects ie., Fault managment and Lock Instruct
				1) Fault managment range (1-20)
				2) Lock-Instruct range (1-255)"
			::= { sleMplsTpOamFmControlTable 10 }

		
		sleMplsTpOamFmControlInterval OBJECT-TYPE
			SYNTAX INTEGER
				{
				oneOne(1),
				sixtyOne(2)
				}
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"This variable is used to set the interval for 2 alarm-inidaction and lock objects of ITUT"
			::= { sleMplsTpOamFmControlTable 11 }

		
		sleMplsTpOamFmControlLevel OBJECT-TYPE
			SYNTAX INTEGER (0..7)
			MAX-ACCESS read-write
			STATUS current
			DESCRIPTION
				"This varible is used to set the level for Alarm indication and lock objects of ITUT"
			::= { sleMplsTpOamFmControlTable 12 }

		
	
	END

--
-- sle-mpls-tp-oam-mib.mib
--