summaryrefslogtreecommitdiff
path: root/MIBS/ubiquoss/UBQS-QOS-MIB
blob: c36e789b1a19cbec3aae319ec2ac23a1a7ae0546 (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
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
-- *****************************************************************
-- UBQS-QOS-MIB  : Ubiquoss QOS MIB
--
-- Nov 2010, boo kn kim
--
-- Copyright (c) 2010 by Ubiquoss, Corp.
-- All rights reserved.    
--
-- *****************************************************************
--

UBQS-QOS-MIB	DEFINITIONS ::= BEGIN
	IMPORTS
		ubiMgmtv2
		FROM UBQS-SMI
				
		MODULE-IDENTITY, OBJECT-TYPE, IpAddress, 
		Integer32,Counter32
		FROM SNMPv2-SMI     
		
		DisplayString, PhysAddress 			
		FROM RFC1213-MIB   
		         
    	InetAddress, InetAddressType,
    	InetAddressPrefixLength,
    	InetVersion        
    	FROM INET-ADDRESS-MIB   

   		VlanIndex
    	FROM Q-BRIDGE-MIB
    	    			         
		RowStatus, TruthValue
		FROM SNMPv2-TC;
			    
    ubiQosMIB MODULE-IDENTITY
        LAST-UPDATED    "201011052000Z"
        ORGANIZATION 	"Ubiquoss Corp."
	    CONTACT-INFO
		"	Ubiquoss
			Customer Service

		 Postal: 24F Milennium B/D,
		 	467-12, Dogok-Dong,
			GangNam-Gu, Seoul 135-270
			Korea

		   Tel: 82-2-2190-3100"   
    DESCRIPTION
        "This UBQS-QOS-MIB mib contains the information 
        about Quality of Service(QoS)."
     ::= { ubiMgmtv2 12 }
     

-- ***********************************************************   
-- TEXTUAL-CONVENTION
-- ***********************************************************

-- ***********************************************************
-- ubiQoSMIB
-- *********************************************************** 
ubiQosMIBNotificationsPrefix        OBJECT IDENTIFIER ::= { ubiQosMIB  0 }
ubiClassMapMIBObjects   			OBJECT IDENTIFIER ::= { ubiQosMIB  1 }   
ubiPolicyMapMIBObjects   			OBJECT IDENTIFIER ::= { ubiQosMIB  2 }     
ubiServicePolicyMIBObjects   		OBJECT IDENTIFIER ::= { ubiQosMIB  3 }
ubiQosMIBObjects   					OBJECT IDENTIFIER ::= { ubiQosMIB  4 }
ubiQosMIBConformance				OBJECT IDENTIFIER ::= { ubiQosMIB  5 }

ubiPolicyGlobal 					OBJECT IDENTIFIER ::= { ubiPolicyMapMIBObjects  5 }                               

ubiQosMap 							OBJECT IDENTIFIER ::= { ubiQosMIBObjects  1 } 
ubiQosGlobal						OBJECT IDENTIFIER ::= { ubiQosMIBObjects  10 }		
ubiTxSchedule 						OBJECT IDENTIFIER ::= { ubiQosMap  3 }
--
-- Class Map Objects
--
                               
-- ***********************************************************
-- ubiClassMapTable
-- ***********************************************************  
	ubiClassMapTable	OBJECT-TYPE
		SYNTAX			SEQUENCE  OF  UbiClassMapEntry
		MAX-ACCESS		not-accessible
		STATUS			current
		DESCRIPTION	
		"The table of class map about QOS"
		::=  { ubiClassMapMIBObjects 1 }

	ubiClassMapEntry	OBJECT-TYPE
		SYNTAX			UbiClassMapEntry
		MAX-ACCESS		not-accessible
		STATUS			current
		DESCRIPTION	
		"An entry in ubiClassMapTable,
		 representing class map list created.
		 can create or remove class map entry."
		INDEX		{ ubiClassMapName }
		::=  { ubiClassMapTable 1 }

    UbiClassMapEntry	::=	SEQUENCE {
		ubiClassMapName				DisplayString,
		ubiClassMapRowStatus		RowStatus
	}
	
	ubiClassMapName	OBJECT-TYPE
   		SYNTAX		DisplayString
   		MAX-ACCESS	read-only
   		STATUS		current
   		DESCRIPTION
   		"Class map name"
   		::= { ubiClassMapEntry 1 }
   		
   	ubiClassMapRowStatus	OBJECT-TYPE
   		SYNTAX		RowStatus
   		MAX-ACCESS	read-create
   		STATUS		current
   		DESCRIPTION
   		"Create or remove class map"
   		::= { ubiClassMapEntry 2 }
                                      
                                      
-- ***********************************************************
-- ubiClassMapMatchTable
-- ***********************************************************   
 
	ubiClassMapMatchTable OBJECT-TYPE
		SYNTAX		SEQUENCE OF UbiClassMapMatchEntry                   
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"The table of matching entrys of class map"
		::= { ubiClassMapMIBObjects 2 }
		
	ubiClassMapMatchEntry	OBJECT-TYPE
		SYNTAX		UbiClassMapMatchEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"An entry in ubiClassMapMatchTable,
		 representing each matching entry of class map."
		INDEX	{ ubiClassMapName }
		::= { ubiClassMapMatchTable 1 }
		
	UbiClassMapMatchEntry ::= SEQUENCE { 
		ubiCmMatchType				INTEGER,
 		ubiCmMatchAcl				DisplayString,
 		ubiCmMatchCos				Integer32,
 		ubiCmMatchEtherType			DisplayString,       	-- << Integer32
 		ubiCmMatchIpDscp			Integer32,
 		ubiCmMatchIpPrecedence		Integer32,
 		ubiCmMatchSourcePort		Integer32,
 		ubiCmMatchDestPort			Integer32,
 		ubiCmMatchMplsExp			Integer32,
 		ubiCmMatchProtocol			Integer32,
 		ubiCmMatchTagType			INTEGER,
 		ubiCmMatchTcpControl		DisplayString,
 		ubiCmMatchArp				DisplayString,
 		ubiCmMatchVlan				Integer32,
 		ubiCmMatchVlanInner			Integer32
  	}                                    
      			 			
   	ubiCmMatchType	OBJECT-TYPE
   		SYNTAX		INTEGER
   		{
   			match-all(0),
   			match-any(1)
   		}(0..1)
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Matching entry type"       
   		DEFVAL 		{ match_all }
   		::= { ubiClassMapMatchEntry 1 }
   		
   	ubiCmMatchAcl				OBJECT-TYPE
   		SYNTAX		DisplayString
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Access-list name. 
   		 If need to unset access-list, set NULL string."
   		::= { ubiClassMapMatchEntry 2 }
   		
   	ubiCmMatchCos				OBJECT-TYPE
   		SYNTAX		Integer32
   		{
   			none(-1)
   		}(-1..7)
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Cos matching value" 
   		::= { ubiClassMapMatchEntry 3 }
   		
   	ubiCmMatchEtherType			OBJECT-TYPE
   		SYNTAX		DisplayString
   		MAX-ACCESS	read-write 
   		STATUS		current
   		DESCRIPTION
   		"Ethernet type matching value. 
   		 For example, '80dd'"
   		::= { ubiClassMapMatchEntry 4 }   		                               
   		
   	ubiCmMatchIpDscp			OBJECT-TYPE
   		SYNTAX		Integer32
   		{
   			none(-1)
   		}(-1..63)       
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"DSCP matching value" 
   		::= { ubiClassMapMatchEntry 5 }                                    
   		
   		
   	ubiCmMatchIpPrecedence			OBJECT-TYPE
   		SYNTAX		Integer32
   		{
   			none(-1)
   		}(-1..7)
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"IP Precedence matching value" 
   		::= { ubiClassMapMatchEntry 6 } 
   		                  
   		
   	ubiCmMatchSourcePort		OBJECT-TYPE
   		SYNTAX		Integer32   		
   		{
   			none(0)
   		}(0..65535)
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Source port matching value" 
   		::= { ubiClassMapMatchEntry 7 }
   		
   	ubiCmMatchDestPort		OBJECT-TYPE
   		SYNTAX		Integer32
   		{
   			none(0)
   		}(0..65535)
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Destination matching value" 
   		::= { ubiClassMapMatchEntry 8 }
   		
   	ubiCmMatchMplsExp			OBJECT-TYPE
   		SYNTAX		Integer32
   		{
   			none(-1)
   		}(-1..7)
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"MPLS experimental bit matching value" 
   		::= { ubiClassMapMatchEntry 9 }
   		
   	ubiCmMatchProtocol		OBJECT-TYPE
		SYNTAX		Integer32
		{
   			none(-1)
   		}(-1..255)
		MAX-ACCESS	read-write
		STATUS		current
		DESCRIPTION
		"Protocol number matching value.
		 well-known value for protocol below:
		 
		 	1		icmp        Internet Control Management Protocol
 		 	2		igmp        Internet Group Management Protocol
 		 	0		ip          Any Internat Protocol
 		 	103		ospf        OSPF routing protocol
 		 	89		pim         Protocol Independent Protocol
 		 	6 		tcp         Transmission Control Protocol
 		 	17 		udp        	User Datagram Protocol
 			and so on.	 	
 		 "
 		::= { ubiClassMapMatchEntry 10 }  
 		
 	ubiCmMatchTagType			OBJECT-TYPE
   		SYNTAX		INTEGER
   		{   
   			none(-1),
     		untagged(0),
   			tagged(1),
   			double-tagged (3)
   		}
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Tagging type matching value" 
   		::= { ubiClassMapMatchEntry 11 }
   		
   	ubiCmMatchTcpControl		OBJECT-TYPE
   		SYNTAX		DisplayString
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"TCP Control bit matching value.
   		 available value for TCP Control below:
   		 
   		 	URG		32	100000
   		 	ACK		16	010000
   		 	PSH		8	001000
   		 	RST		4	000100
   		 	SYN		2	000010
   		 	FIN		1	000001
   		 
   		 '' : no tcp control" 
   		::= { ubiClassMapMatchEntry 12 }
   	     
   	ubiCmMatchArp	OBJECT-TYPE
   		SYNTAX		DisplayString
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"The types of arp configuration are:
   		 
   		 	1) SET arp
   		 		(0.0.0.0/0 0.0.0.0/0)                 
   		 	
   			2) SET arp with a particular source/destination address 
   				('%d.%d.%d.%d/%d %d.%d.%d.%d/%d')

    		3) Unset arp 
    			(empty string(''))				
   		"       
   		::= { ubiClassMapMatchEntry 13 }  	  
  
   		   
   	ubiCmMatchVlan	OBJECT-TYPE
   		SYNTAX		Integer32 
		{
   			none(0)
   		}(0..4094)
   		MAX-ACCESS	read-write
   		STATUS		deprecated
   		DESCRIPTION
   		"Vlan matching value"       
   		::= { ubiClassMapMatchEntry 14 }  	     
   		                                       
	ubiCmMatchVlanInner	OBJECT-TYPE
   		SYNTAX		Integer32 
		{
   			none(0)
   		}(0..4094)
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Inner Vlan matching value"       
   		::= { ubiClassMapMatchEntry 15 }

   	     
-- ***********************************************************
-- ubiClassMapMatchVlanTable
-- *********************************************************** 
 	ubiClassMapMatchVlanTable	OBJECT-TYPE
 		SYNTAX		SEQUENCE OF	UbiClassMapMatchVlanEntry
 		MAX-ACCESS	not-accessible
 		STATUS		current
 		DESCRIPTION
 		"The table of vlan matching value of class map"
 		::= { ubiClassMapMIBObjects 3 }
 		
 	ubiClassMapMatchVlanEntry	OBJECT-TYPE
 		SYNTAX		UbiClassMapMatchVlanEntry
 		MAX-ACCESS	not-accessible
 		STATUS		current
 		DESCRIPTION
 	  	"An entry in ubiClassMapVlanTable,
 	  	 representing vlan matching list entry."
 	  	INDEX	{ ubiClassMapName, ubiCmVlanIndex }
 	  	::= { ubiClassMapMatchVlanTable 1 }
 	  	
	UbiClassMapMatchVlanEntry ::= SEQUENCE {
		ubiCmMatchVlanIndex			Integer32,
--		ubiCmMatchVlanID				Integer32,
		ubiCmMatchVlanRowStatus   	RowStatus
	}
	
   	ubiCmMatchVlanIndex		OBJECT-TYPE
   		SYNTAX	    Integer32
   		MAX-ACCESS	not-accessible
   		STATUS		current
   		DESCRIPTION
   		"The index of vlan matching on class map"
   		::= { ubiClassMapMatchVlanEntry 1 }
   		
--  	ubiCmMatchVlanID			OBJECT-TYPE
--  		SYNTAX		Integer32
--  		MAX-ACCESS	read-create
-- 		STATUS		current
--  		DESCRIPTION
--  		"The ID of vlan matching on class map"
--  		::= { ubiClassMapMatchVlanEntry 2 }
   		
   	ubiCmMatchVlanRowStatus	OBJECT-TYPE
   		SYNTAX		RowStatus
   		MAX-ACCESS	read-create
   		STATUS		current
   		DESCRIPTION
   		"create or remove vlan matching entry"
   		::= { ubiClassMapMatchVlanEntry 2 }


--
-- Policy Map Objects
--
-- ***********************************************************
-- ubiPolicyMapTable
-- ***********************************************************  

	ubiPolicyMapTable	OBJECT-TYPE
		SYNTAX			SEQUENCE  OF  UbiPolicyMapEntry
		MAX-ACCESS		not-accessible
		STATUS			current
		DESCRIPTION	
		"The table of policy map about QOS"
		::=  { ubiPolicyMapMIBObjects 1 }

	ubiPolicyMapEntry	OBJECT-TYPE
		SYNTAX			UbiPolicyMapEntry
		MAX-ACCESS		not-accessible
		STATUS			current
		DESCRIPTION	
		"An entry in ubiPolicyMapTable,
		 representing policy map list created."
		INDEX		{ ubiPolicyMapName }
		::=  { ubiPolicyMapTable 1 }

    UbiPolicyMapEntry	::=	SEQUENCE {
		ubiPolicyMapName		DisplayString,
		ubiPolicyMapRowStatus	RowStatus
	}
	
	ubiPolicyMapName	OBJECT-TYPE
   		SYNTAX		DisplayString
   		MAX-ACCESS	read-only
   		STATUS		current
   		DESCRIPTION
   		"Policy map name created"
   		::= { ubiPolicyMapEntry 1 }
   		
   	ubiPolicyMapRowStatus	OBJECT-TYPE
  		SYNTAX		RowStatus
  		MAX-ACCESS	read-create
  		STATUS		current
  		DESCRIPTION
  		"Create or remove a policy map entry."
  		::= { ubiPolicyMapEntry 2 }
   		         

-- ***********************************************************
-- ubiPolicyMapClassTable
-- ***********************************************************    		         
   		         
	ubiPolicyMapClassTable	OBJECT-TYPE
		SYNTAX		SEQUENCE OF UbiPolicyMapClassEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"The table of class map of policy map"
		::= { ubiPolicyMapMIBObjects 2 }
		
	ubiPolicyMapClassEntry	OBJECT-TYPE
		SYNTAX		UbiPolicyMapClassEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"An entry in ubiPolicyMapClassTable,
		 representing class map entry of policy map."
		INDEX	{ ubiPolicyMapName, ubiPolicyMapClassIndex }
		::= { ubiPolicyMapClassTable 1 }
		
	UbiPolicyMapClassEntry ::= SEQUENCE {
		ubiPolicyMapClassIndex			Integer32,
		ubiPolicyMapClassName			DisplayString,
		ubiPolicyMapClassRowStatus		RowStatus
	}
	  	
  	ubiPolicyMapClassIndex		OBJECT-TYPE
  		SYNTAX		Integer32
  		MAX-ACCESS	not-accessible
  		STATUS		current
  		DESCRIPTION
  		"Class map index in policy map structure.
  		 If a class index is zero, it means that the smallest 
  		 index that can be used is assigned when the new 
  		 instance is created."
  		::= { ubiPolicyMapClassEntry 1 }
  			                        
   	ubiPolicyMapClassName	OBJECT-TYPE
   		SYNTAX		DisplayString
   		MAX-ACCESS	read-create
   		STATUS		current
   		DESCRIPTION
   		"Class map name of policy map"
   		::= { ubiPolicyMapClassEntry 2 }
   		
   	ubiPolicyMapClassRowStatus	OBJECT-TYPE
 		SYNTAX		RowStatus
 		MAX-ACCESS	read-create         
 		STATUS		current
 		DESCRIPTION
 		"Create or remove a class map entry."
 		::= { ubiPolicyMapClassEntry 3 }


-- ***********************************************************
-- ubiPolicyMapActionTable
-- ***********************************************************       
	ubiPolicyMapActionTable	OBJECT-TYPE
		SYNTAX		SEQUENCE OF UbiPolicyMapActionEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"The table of action set of policy map"
		::= { ubiPolicyMapMIBObjects 3 }
		
	ubiPolicyMapActionEntry	OBJECT-TYPE
		SYNTAX		UbiPolicyMapActionEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"An entry in ubiPolicyMapActionTable,
		 representing action set entry of policy map."
		INDEX	{ ubiPolicyMapName, ubiPolicyMapClassIndex }
		::= { ubiPolicyMapActionTable 1 }
		
 	UbiPolicyMapActionEntry ::= SEQUENCE {        
        ubiPmActionDrop      			INTEGER,
        ubiPmActionMirror    			INTEGER,
        ubiPmActionNetFlow   			INTEGER,
        ubiPmActionRedirectifIndex  	Integer32,
        ubiPmActionTrapCpu  			INTEGER,
  		ubiPmActionTrustDscp			INTEGER,
        ubiPmActionPoliceRate			DisplayString,
        ubiPmActionPoliceAggName		DisplayString,
  		ubiPmActionCos					Integer32,
  		ubiPmActionDropPrecedence		INTEGER,
  		ubiPmActionIpDscp				Integer32,
  		ubiPmActionIpPrecedence			Integer32,
  		ubiPmActionQueueing				Integer32,
  		ubiPmActionVlanPriority			DisplayString,     
  		ubiPmActionPoliceCirPir			DisplayString,
  		ubiPmActionTagVlan   			DisplayString
  	}
		   			                        
   	ubiPmActionDrop		OBJECT-TYPE
   		SYNTAX		INTEGER
   		{
   			off(0),
   			on(1)
   		}
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Drop the packet"
   		::= { ubiPolicyMapActionEntry 1 }
   		
   	ubiPmActionMirror		OBJECT-TYPE
   		SYNTAX		INTEGER
   		{
   			off(0),
   			on(1)
   		}
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Mirror the packet to another interface" 
   		::= { ubiPolicyMapActionEntry 2 }
 		
   	ubiPmActionNetFlow		OBJECT-TYPE
   		SYNTAX		INTEGER
   		{
   			off(0),
   			on(1)
   		}
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Send packets to netflow device" 
   		::= { ubiPolicyMapActionEntry 3 }                                    
  		
   	ubiPmActionRedirectifIndex		OBJECT-TYPE
   		SYNTAX		Integer32
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Redirect the packet to another interface.
   		 if need to unset, set a value 0" 
   		::= { ubiPolicyMapActionEntry 4 }
   		
   	ubiPmActionTrapCpu		OBJECT-TYPE
   		SYNTAX		INTEGER
   		{
   			off(0),
   			normal(1),
   			high(2)
   		}
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Trap the packet to CPU" 
   		::= { ubiPolicyMapActionEntry 5 }
   		
   	ubiPmActionTrustDscp	OBJECT-TYPE
   		SYNTAX		INTEGER
   		{          
   			off(0),
   			on(1)
   		}
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Specify trust state for policy-map" 
   		::= { ubiPolicyMapActionEntry 6 } 
   		
   	ubiPmActionPoliceRate	OBJECT-TYPE
   		SYNTAX		DisplayString 
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"Policy rate set value.
   		 input avg-rate and ' '(space) and bur-rate.
   		
   		 example :
   		 111111 222222
   		 
   		 if need to unset, set a value ''(empty string)"
   		::= { ubiPolicyMapActionEntry 7 }
   	  		
   	ubiPmActionPoliceAggName		OBJECT-TYPE
   		SYNTAX		DisplayString
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"You could set aggregate policer instead of policy rate.
   		 if need to unset, set a value ''(empty string)"
   		::= { ubiPolicyMapActionEntry 8 }
   		
   	ubiPmActionCos			OBJECT-TYPE
   		SYNTAX		Integer32
   		{       
   			none(-1),
   			cos_inner(100)
   		}(-1..8)
   		MAX-ACCESS	read-write
   		STATUS		current
   		DESCRIPTION
   		"COS set value of VLAN tag.
   		 if need to unset, set a value -1."
   		::= { ubiPolicyMapActionEntry 9 }
  
  	ubiPmActionDropPrecedence	OBJECT-TYPE
  		SYNTAX		INTEGER
  		{         
  			 none(-1),
  			 green(0),
  			 yellow(1),
  			 red(2)
  		}
  		MAX-ACCESS	read-write
  		STATUS		current
  		DESCRIPTION
  		"Drop precedence set value of Diffserv.
  		 if need to unset, set a value 0."
  		::= { ubiPolicyMapActionEntry 10 }
  		
  	ubiPmActionIpDscp		OBJECT-TYPE
  		SYNTAX		Integer32
  		{
  			none(-1)
  		}(-1..63)
  		MAX-ACCESS	read-write
  		STATUS		current
  		DESCRIPTION 
  		"DSCP set value.
  		 if need to unset, set a value -1."
  		::= { ubiPolicyMapActionEntry 11 }
  		
  	ubiPmActionIpPrecedence		OBJECT-TYPE
  		SYNTAX		Integer32
  		{
  			none(-1)
  		}(-1..7)
  		MAX-ACCESS	read-write
  		STATUS		current
  		DESCRIPTION
  		"IP precedence set value.
  		 if need to unset, set a value -1."
  		::= { ubiPolicyMapActionEntry 12 }
  
  	ubiPmActionQueueing	OBJECT-TYPE
  		SYNTAX		Integer32
  		{
  			none(-1)
  		}(-1..7)
  		MAX-ACCESS	read-write
  		STATUS		current
  		DESCRIPTION
  		"Queue set value.
  		 if need to unset, set a value -1."
  		::= { ubiPolicyMapActionEntry 13 }		
  	
 	ubiPmActionVlanPriority	OBJECT-TYPE      
 		SYNTAX		DisplayString    		
 		MAX-ACCESS	read-write
 		STATUS		current
 		DESCRIPTION
 		"Represents the vlan priority for each queue:
        '%d %d %d %d %d %d %d %d'  
        
            # Queue 	vlan prirory        
            --------    -------------       
                0     		<0-7>    
                1     		<0-7> 
                2     		<0-7>  
                3     		<0-7> 
                4     		<0-7> 
                5     		<0-7> 
                6     		<0-7> 
                7     		<0-7>    
 		 
 		 if need to unset, set a value ''(empty string).
 		 "      
 		::= { ubiPolicyMapActionEntry 14 }   

 	ubiPmActionPoliceCirPir	OBJECT-TYPE      
 		SYNTAX		DisplayString    		
 		MAX-ACCESS	read-write
 		STATUS		current
 		DESCRIPTION
 		"Represents the CIR and PIR configuration:
        '%d %d %d %d'  
        
			  #   	Description
			 ----------------------------------------
			  1 	Committed information rate (kbps)
			  2 	Conform burst (kbps)
			  3 	PIR (kbps)
			  4 	Excess burst (kbps)    
			  
   		 if need to unset, set a value ''(empty string)
		"      
 		::= { ubiPolicyMapActionEntry 15 } 
                         
                         
	ubiPmActionTagVlan  OBJECT-TYPE      
 		SYNTAX		DisplayString 
 		MAX-ACCESS	read-write
 		STATUS		current
 		DESCRIPTION
 		"Represents the tag vlan:      
 		'%d %d'
 		
		 #   	Description
		 ----------------------------------------
         1      Inner tag vlan ID
         2      Outer tag vlan ID
         
         The second value could be zero (0) when get/set 
"      
 		::= { ubiPolicyMapActionEntry 16 } 

                         
                         
-- ***********************************************************
-- ubiPolicyMapActionNexthopTable
-- *********************************************************** 

	ubiPolicyMapActionNexthopTable	OBJECT-TYPE
		SYNTAX		SEQUENCE OF UbiPolicyMapActionNexthopEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"The table of nexthop IP address of policy map"
		::= { ubiPolicyMapMIBObjects 4 }
		
	ubiPolicyMapActionNexthopEntry	OBJECT-TYPE
		SYNTAX		UbiPolicyMapActionNexthopEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"An entry in ubiPolicyMapActionNexthopTable,
		 representing nexthop IP address entry of policy map."
		INDEX	{ ubiPolicyMapName, ubiPolicyMapClassIndex, 
					ubiPmActionNexthopIndex }
		::= { ubiPolicyMapActionNexthopTable 1 }
		
	UbiPolicyMapActionNexthopEntry ::= SEQUENCE {
		ubiPmActionNexthopIndex			Integer32,   
		ubiPmActionNextHopAddrType		InetAddressType,
		ubiPmActionNexthopAddress		InetAddress,
		ubiPmActionNexthopPriority		Integer32,
		ubiPmActionNexthopRowStatus		RowStatus
	}			
    
    ubiPmActionNexthopIndex		OBJECT-TYPE
    	SYNTAX		Integer32
    	MAX-ACCESS	not-accessible
    	STATUS		current
    	DESCRIPTION
    	"Nexthop entry index in Policy map structure."
    	::= { ubiPolicyMapActionNexthopEntry 1 }

	ubiPmActionNextHopAddrType	OBJECT-TYPE
		SYNTAX		InetAddressType
		MAX-ACCESS	read-create
		STATUS		current
		DESCRIPTION
		"Nexthop address type"
		::= { ubiPolicyMapActionNexthopEntry 2 }
    	
	ubiPmActionNexthopAddress	OBJECT-TYPE
		SYNTAX		InetAddress
		MAX-ACCESS	read-create
		STATUS		current
		DESCRIPTION
		"Nexthop IP address"
		::= { ubiPolicyMapActionNexthopEntry 3 }
		
	ubiPmActionNexthopPriority		OBJECT-TYPE
		SYNTAX		Integer32(1..8)
		MAX-ACCESS	read-create
		STATUS		current 
		DESCRIPTION
		"Priority of nexthop IP address. 
		 low value is to mean high priority."
		::= { ubiPolicyMapActionNexthopEntry 4 }
		
	ubiPmActionNexthopRowStatus	OBJECT-TYPE
		SYNTAX		RowStatus
		MAX-ACCESS	read-create
		STATUS		current
		DESCRIPTION
		"Create or remove a nexthop IP address."
		::= { ubiPolicyMapActionNexthopEntry 5 }		
 
 

-- ***********************************************************
-- ubiPolicyGlobal
-- ***********************************************************         

	ubiPolicyMapClassDelete	OBJECT-TYPE
		SYNTAX		INTEGER 
		{          
			none(0),
			all(1)
		}
		MAX-ACCESS	read-write
		STATUS		current
		DESCRIPTION
		"This object is function that delete the mapping information 
		of class map(s) for a particular policy map."
		::= { ubiPolicyGlobal 1 }
		


-- ***********************************************************
-- ubiServicePolicyTable
-- ***********************************************************  
	ubiServicePolicyTable	OBJECT-TYPE
		SYNTAX			SEQUENCE  OF  UbiServicePolicyEntry
		MAX-ACCESS		not-accessible
		STATUS			current
		DESCRIPTION	
		"The table of service policy information"
		::=  { ubiServicePolicyMIBObjects 1 }

	ubiServicePolicyEntry	OBJECT-TYPE
		SYNTAX			UbiServicePolicyEntry
		MAX-ACCESS		not-accessible
		STATUS			current
		DESCRIPTION	
		"An entry in ubiServicePolicyTable,
		 representing an entry of service policy."
		INDEX		{ ifIndex, ubiServicePolicyDirection, 
						ubiServicePolicyName }
		::=  { ubiServicePolicyTable 1 }

    UbiServicePolicyEntry	::=	SEQUENCE {
		ubiServicePolicyName			DisplayString,      
		ubiServicePolicyDirection   	INTEGER,
		ubiServicePolicyRowStatus		RowStatus
	}
	
	ubiServicePolicyName	OBJECT-TYPE
   		SYNTAX		DisplayString
   		MAX-ACCESS	read-only
   		STATUS		current
   		DESCRIPTION
   		"A textual string containing information 
   		 about the service policy."
   		::= { ubiServicePolicyEntry 1 }
 
	ubiServicePolicyDirection	OBJECT-TYPE
   		SYNTAX		INTEGER 
   		{
   			input(1),
   			output(2)
   		}
   		MAX-ACCESS	read-only
   		STATUS		current
   		DESCRIPTION
   		"Indicates the interface direction 
   		 which set service policy."
   		::= { ubiServicePolicyEntry 2 }
   		
   	ubiServicePolicyRowStatus	OBJECT-TYPE
   		SYNTAX		RowStatus
   		MAX-ACCESS	read-create
   		STATUS		current
   		DESCRIPTION
   		"Create or remove the service policy."
   		::= { ubiServicePolicyEntry 3 }
 

--
-- Qos Map Objects
--
-- ***********************************************************
-- ubiCosMapTable
-- *********************************************************** 
	ubiCosMapTable	OBJECT-TYPE
		SYNTAX			SEQUENCE  OF  UbiCosMapEntry
		MAX-ACCESS		not-accessible
		STATUS			current
		DESCRIPTION	
		"The table of COS map of QOS"
		::=  { ubiQosMap 1 }

	ubiCosMapEntry	OBJECT-TYPE
		SYNTAX			UbiCosMapEntry
		MAX-ACCESS		not-accessible
		STATUS			current
		DESCRIPTION	
		"An entry in ubiCosMapTable,
		 representing COS map entry of QOS."
		INDEX		{ ubiCosMapIndex }
		::=  { ubiCosMapTable 1 }

    UbiCosMapEntry	::=	SEQUENCE {
		ubiCosMapIndex				Integer32,        
        ubiCosToDscpMapValue		Integer32,
        ubiCosToMutationMapValue	Integer32,
        ubiCosToQueueMapValue		Integer32
    }                                    
                                         
	ubiCosMapIndex		OBJECT-TYPE	
		SYNTAX			Integer32(0..7)     
		MAX-ACCESS		not-accessible
		STATUS			current
		DESCRIPTION		
		"COS map index"
		::=  {  ubiCosMapEntry  1  }   
		
   ubiCosToDscpMapValue OBJECT-TYPE
        SYNTAX       Integer32(0..63)
        MAX-ACCESS   read-write
        STATUS       current
        DESCRIPTION
        "COS to DSCP map value"
        ::= { ubiCosMapEntry 2 }   
        
   ubiCosToMutationMapValue OBJECT-TYPE
    	SYNTAX		Integer32(0..7)
    	MAX-ACCESS	read-write
    	STATUS		current
    	DESCRIPTION
    	"COS to other COS mapping value"
    	::=  {  ubiCosMapEntry 3 }
	
	 ubiCosToQueueMapValue	OBJECT-TYPE
    	SYNTAX		Integer32(0..7)  
    	MAX-ACCESS	read-write
    	STATUS		current
    	DESCRIPTION
    	"COS to Queue mapping value"
    	::= { ubiCosMapEntry 4 }

                       
-- ***********************************************************
-- ubiDscpMapTable
-- ***********************************************************     
	ubiDscpMapTable		OBJECT-TYPE
		SYNTAX		SEQUENCE  OF  UbiDscpMapEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"The table of DSCP map of QOS"
		::= { ubiQosMap 2 }
		
	ubiDscpMapEntry 	OBJECT-TYPE
		SYNTAX		UbiDscpMapEntry   
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"An entry in ubiDscpMapTable,
		 representing DSCP map entry of QOS."
		INDEX	{ ubiDscpMapIndex }
		::= { ubiDscpMapTable 1 }
		
	UbiDscpMapEntry ::= SEQUENCE {
		ubiDscpMapIndex				Integer32,
		ubiDscpToCosMapValue		Integer32,
		ubiDscpToMutationMapValue  	Integer32,
		ubiDscpToQueueMapValue		Integer32
	}
	
	ubiDscpMapIndex		OBJECT-TYPE
		SYNTAX		Integer32(0..63)
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"DSCP map index"
		::= { ubiDscpMapEntry 1 }
		
	ubiDscpToCosMapValue	OBJECT-TYPE
		SYNTAX		Integer32(0..7)
		MAX-ACCESS	read-write
		STATUS		current
		DESCRIPTION
		"DSCP to COS mapping value"
		::= { ubiDscpMapEntry 2 }
		
	ubiDscpToMutationMapValue	OBJECT-TYPE
		SYNTAX		Integer32(0..63)
		MAX-ACCESS	read-write
		STATUS		current
		DESCRIPTION
		"DSCP to other DSCP mapping value"
		::= { ubiDscpMapEntry 3 }
		
	ubiDscpToQueueMapValue	OBJECT-TYPE
		SYNTAX		Integer32(0..7)
		MAX-ACCESS	read-write
		STATUS		current
		DESCRIPTION
		"DSCP to Queue mapping value"
		::= { ubiDscpMapEntry 4 } 
		                                                       

		                                                       
-- ***********************************************************
-- ubiTxScheduleTable
-- *********************************************************** 
	ubiTxScheduleTable	OBJECT-TYPE
		SYNTAX		SEQUENCE  OF  UbiTxScheduleEntry		
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"The table of tx-scheduling map of QOS"
		::= { ubiTxSchedule 1 }
		
	ubiTxScheduleEntry	OBJECT-TYPE
		SYNTAX		UbiTxScheduleEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"An entry in ubiTxScheduleTable,
		 representing tx-scheduling map entry."
		INDEX	{ ubiTxScheduleName }
		::= { ubiTxScheduleTable 1 }
		
	UbiTxScheduleEntry ::= SEQUENCE {
		ubiTxScheduleName				DisplayString,
		ubiTxScheduleIfIndex				Integer32,
		ubiTxScheduleRowStatus			RowStatus
	}

	ubiTxScheduleName			OBJECT-TYPE
		SYNTAX		DisplayString (SIZE (1..255))
		MAX-ACCESS	read-only
		STATUS		current
		DESCRIPTION
		"tx-scheduling entry name"
		::= { ubiTxScheduleEntry 1 }
		
	ubiTxScheduleIfIndex			OBJECT-TYPE
		SYNTAX		Integer32
		MAX-ACCESS	read-write
		STATUS		deprecated
		DESCRIPTION
		""
		::= { ubiTxScheduleEntry 2 }

	ubiTxScheduleRowStatus	OBJECT-TYPE
		SYNTAX		RowStatus
		MAX-ACCESS	read-create
		STATUS		current
		DESCRIPTION
		"create or remove tx-scheduling entry"
		::= { ubiTxScheduleEntry 3 }
		    
		    
-- ***********************************************************
-- ubiTxSchedulQueueTable
-- *********************************************************** 
  
	ubiTxScheduleQueueTable	OBJECT-TYPE
		SYNTAX		SEQUENCE OF UbiTxScheduleQueueEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"The table of tx-scheduling queue value"
		::= { ubiTxSchedule 2 }
		
	ubiTxScheduleQueueEntry	OBJECT-TYPE
		SYNTAX		UbiTxScheduleQueueEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		"An entry in ubiTxScheduleQueueTable,
		 representing queue value of tx-scheduling."
		INDEX	{ ubiTxSchedulName, ubiTxScheduleQueueIndex }
		::= { ubiTxScheduleQueueTable 1 }
		
	UbiTxScheduleQueueEntry ::= SEQUENCE {        
		ubiTxScheduleQueueIndex		Integer32,
		ubiTxScheduleQueueMethod	INTEGER,
		ubiTxScheduleQueueWeight	Integer32
	}                             
		  
	ubiTxScheduleQueueIndex	OBJECT-TYPE
		SYNTAX		Integer32    (0..7)
		MAX-ACCESS	read-only
		STATUS		current
		DESCRIPTION
		"The unique identifier of Tx scheduling queue."
		::= { ubiTxScheduleQueueEntry 1 }
    
    ubiTxScheduleQueueMethod	OBJECT-TYPE
		SYNTAX		INTEGER
		{
			none(0),
			strict(1),
			wrr1(2),                                                   
			wrr2(3)
		}    
		MAX-ACCESS	read-write
		STATUS		current
		DESCRIPTION  
		"queue method value"       
		DEFVAL		{ strict }
		::= { ubiTxScheduleQueueEntry 2 }

	ubiTxScheduleQueueWeight	OBJECT-TYPE
		SYNTAX		Integer32  (1..100)
		MAX-ACCESS	read-write
		STATUS		current
		DESCRIPTION        
		"queue weight value.
		 in strict mode, weight value is 1."
		DEFVAL 		{ 1 }
		::= { ubiTxScheduleQueueEntry 3 }
         
         
-- ***********************************************************
-- ubiAggPoliceTable
-- *********************************************************** 
	ubiAggPoliceTable	OBJECT-TYPE
		SYNTAX		SEQUENCE OF UbiAggPoliceEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		""
		::= { ubiQosMIBObjects 2 }
		
	ubiAggPoliceEntry	OBJECT-TYPE
		SYNTAX		UbiAggPoliceEntry
		MAX-ACCESS	not-accessible
		STATUS		current
		DESCRIPTION
		""
		INDEX	{ ubiAggPoliceAggName }
		::= { ubiAggPoliceTable 1 }
		
	UbiAggPoliceEntry ::= SEQUENCE {        
		ubiAggPoliceAggName			DisplayString,
		ubiAggPoliceAvgTrafficRate	Integer32,
		ubiAggPoliceAvgBurstRate	Integer32,
		ubiAggPoliceRowStatus		RowStatus
	}                             
		  
	ubiAggPoliceAggName	OBJECT-TYPE
		SYNTAX		DisplayString
		MAX-ACCESS	read-only
		STATUS		current
		DESCRIPTION
		"A textual string containing information about the
 		the aggregate-police."
		::= { ubiAggPoliceEntry 1 }
    
    ubiAggPoliceAvgTrafficRate	OBJECT-TYPE
		SYNTAX		Integer32(1..10000000)    
		UNITS		"kbps"
		MAX-ACCESS	read-create
		STATUS		current
		DESCRIPTION  
		"Specify an average traffic rate."       
		::= { ubiAggPoliceEntry 2 }

    ubiAggPoliceAvgBurstRate	OBJECT-TYPE
		SYNTAX		Integer32(1..10000000)    
		UNITS		"kbps"
		MAX-ACCESS	read-create
		STATUS		current
		DESCRIPTION  
		"Specify an average burst rate."       
		::= { ubiAggPoliceEntry 3 }

    ubiAggPoliceRowStatus	OBJECT-TYPE
		SYNTAX		RowStatus    
		MAX-ACCESS	read-create
		STATUS		current
		DESCRIPTION  
		"Create or remove an aggregate-police entry."       
		::= { ubiAggPoliceEntry 4 }
                  
-- ***********************************************************
-- ubiVlanPriorityOverride
-- ***********************************************************  

	ubiVlanPriorityOverrideTable	OBJECT-TYPE	
		SYNTAX		SEQUENCE OF VlanPriorityOverrideEntry
		ACCESS		not-accessible
		STATUS		current
		DESCRIPTION
		"vlan-priority-override table"
		::= { ubiQosMIBObjects 3 }
		
	ubiVlanPriorityOverrideEntry	OBJECT-TYPE	
		SYNTAX		VlanPriorityOverrideEntry
		ACCESS		not-accessible
		STATUS		current
		DESCRIPTION
		"vlan-priority-override entry"
		INDEX { ubiBridgeId, ubiVlanIndex }
		::= { ubiVlanPriorityOverrideTable 1 }
		
	VlanPriorityOverrideEntry ::= SEQUENCE {
		ubiVlanPriority		INTEGER
	}	
	                                 
	ubiVlanPriority		OBJECT-TYPE
		SYNTAX		INTEGER
		{
			unset(8)
		}(0..7)
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"vlan-priority-override priority"
		::= { ubiVlanPriorityOverrideEntry 1 }	                                 

-- ***********************************************************
-- ubiMinReserve
-- *********************************************************** 

	ubiMinReserveTable	OBJECT-TYPE	
		SYNTAX		SEQUENCE OF MinReserveEntry
		ACCESS		not-accessible
		STATUS		current
		DESCRIPTION
		"min-reserve table"
		::= { ubiQosMIBObjects 4 }
	
	ubiMinReserveEntry	OBJECT-TYPE	
		SYNTAX		MinReserveEntry
		ACCESS		not-accessible
		STATUS		current
		DESCRIPTION
		"min-reserve entry"
		INDEX { ubiMinReserveLevelID } 
		::= { ubiMinReserveTable 1 }  
		
	MinReserveEntry	::= SEQUENCE {
		ubiMinReserveLevelID		Integer32,
		ubiMinReserveHoldingPacket  INTEGER
	}
				
	ubiMinReserveLevelID		OBJECT-TYPE
		SYNTAX		Integer32(1..8)
		ACCESS		not-accessible
		STATUS		current
		DESCRIPTION
		"min-reserve level-id"
		::= { ubiMinReserveEntry 1 }
		
	ubiMinReserveHoldingPacket	OBJECT-TYPE
		SYNTAX		INTEGER
		{
			unset(0)
		}(10..170)
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"min-reserve holding-packet"
		::= { ubiMinReserveEntry 2 }

-- ***********************************************************
-- ubiInterfaceQos
-- *********************************************************** 
    ubiInterfaceQosTable	OBJECT-TYPE	
		SYNTAX		SEQUENCE OF UbiInterfaceQosEntry
		ACCESS		not-accessible
		STATUS		current
		DESCRIPTION
		""
		::= { ubiQosMIBObjects 5 }
	
	ubiInterfaceQosEntry	OBJECT-TYPE	
		SYNTAX		UbiInterfaceQosEntry
		ACCESS		not-accessible
		STATUS		current
		DESCRIPTION
		""
		INDEX { ifIndex } 
		::= { ubiInterfaceQosTable 1 }  
		
	UbiInterfaceQosEntry	::= SEQUENCE {
		ubiInterfaceQosCos				INTEGER,
		ubiInterfaceCosDscp				TruthValue,
		ubiInterfaceCosMutation			TruthValue,
		ubiInterfaceDaPrioOveride   	INTEGER,
		ubiInterfaceDscpCos				TruthValue,
		ubiInterfaceDscpMutation		TruthValue,
		ubiInterfaceForceTrustCos		TruthValue,
		ubiInterfaceTrust				INTEGER,
		ubiInterfaceTxScheduling		DisplayString,
		ubiInterfaceVlanPrioOverride	INTEGER
	}      
	
	ubiInterfaceQosCos	OBJECT-TYPE
		SYNTAX		INTEGER
		{
			unset(8)
		}(0..7)
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"mls qos cos"
		::= { ubiInterfaceQosEntry 1 }   
		
    ubiInterfaceCosDscp	OBJECT-TYPE
		SYNTAX		TruthValue
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"mls qos cos-dscp"
		::= { ubiInterfaceQosEntry 2 }    
	
	ubiInterfaceCosMutation	OBJECT-TYPE
		SYNTAX		TruthValue
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"mls qos cos-mutation"
		::= { ubiInterfaceQosEntry 3 }
	
	ubiInterfaceDaPrioOveride	OBJECT-TYPE
		SYNTAX		INTEGER
		{     
			none(0),
			cos(1),
			queue(2),
			both(3)
		}
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"mls qos da-priority-override"
		::= { ubiInterfaceQosEntry 4 }
	
	ubiInterfaceDscpCos	OBJECT-TYPE
		SYNTAX		TruthValue
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"mls qos dscp-cos"
		::= { ubiInterfaceQosEntry 5 } 
		
	ubiInterfaceDscpMutation	OBJECT-TYPE
		SYNTAX		TruthValue
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"mls qos dscp-mutation"
		::= { ubiInterfaceQosEntry 6 }
		
	ubiInterfaceForceTrustCos	OBJECT-TYPE
		SYNTAX		TruthValue
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"mls qos force-trust cos"
		::= { ubiInterfaceQosEntry 7 }
	
	ubiInterfaceTrust	OBJECT-TYPE
		SYNTAX		INTEGER
		{
			none(0),
			cos(1),
			dscp(2),
			both(3)
		}
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"mls qos trust (cos[1]|dscp[2]|both[3])"
		::= { ubiInterfaceQosEntry 8 }
	
	ubiInterfaceTxScheduling	OBJECT-TYPE
		SYNTAX		DisplayString
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		""
		::= { ubiInterfaceQosEntry 9 }
	
	ubiInterfaceVlanPrioOverride	OBJECT-TYPE
		SYNTAX		INTEGER
		{
			none(0),
			cos(1),
			queue(2),
			both(3)
		}
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"mls qos vlan-priority-override (cos[1]|queue[2]|both[3])"
		::= { ubiInterfaceQosEntry 10 }
	
 
 -- ***********************************************************
-- queue buffer
-- *********************************************************** 
    ubiQueueBufferTable	OBJECT-TYPE	
		SYNTAX		SEQUENCE OF UbiQueueBufferEntry
		ACCESS		not-accessible
		STATUS		current
		DESCRIPTION
		"Queue Buffer Table"
		::= { ubiQosMIBObjects 6 }
	
	ubiQueueBufferEntry	OBJECT-TYPE	
		SYNTAX		UbiQueueBufferEntry
		ACCESS		not-accessible
		STATUS		current
		DESCRIPTION
		"Queue Buffer Entry"
		INDEX { ubiQueueBufferID } 
		::= { ubiQueueBufferTable 1 }  
		
	UbiQueueBufferEntry	::= SEQUENCE {
		ubiQueueBufferID				INTEGER,
		ubiQueueBufferSize				INTEGER,
		ubiQueueBufferDesc 				INTEGER,
		ubiQueueBufferSet               INTEGER
	}      
	
	ubiQueueBufferID	OBJECT-TYPE
		SYNTAX		INTEGER (1..8)
		ACCESS		not-accessible
		STATUS		current
		DESCRIPTION
		"Queue Buffer identity."
		::= { ubiQueueBufferEntry 1 }   
		
	ubiQueueBufferSize	OBJECT-TYPE
		SYNTAX		INTEGER (0..4096)
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"Queue Buffer size."
		::= { ubiQueueBufferEntry 2 }
		
	ubiQueueBufferDesc	OBJECT-TYPE
		SYNTAX		INTEGER (0..7680)
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"Queue Buffer description."
		::= { ubiQueueBufferEntry 3 }

	ubiQueueBufferSet	OBJECT-TYPE
		SYNTAX		INTEGER {
			unset(0),
			set(1)
		}
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"Queue Buffer status. 
		 Apply values of ubiQueueBufferDesc and ubiQueueBufferSize."
		::= { ubiQueueBufferEntry 4 }
                        
-- ubiQosEnable  

	ubiQosEnable	OBJECT-TYPE
		SYNTAX		INTEGER
		{
			disable(0),
			enable(1)
		}            
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"qos enable"
		::= { ubiQosGlobal 1 }       
		
        
-- ***********************************************************
-- ubiFrameTypePriorityOverride
-- *********************************************************** 

	ubiFrameTypePriorityOverride	OBJECT IDENTIFIER ::= { ubiQosGlobal 2 }
	
	ubiBpduToCpu		OBJECT-TYPE
		SYNTAX		INTEGER
		{     
			disable(4)
		}(0..3)
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"frame-type-priority-override bpdu-to-cpu"
		::= { ubiFrameTypePriorityOverride 1 }

	ubiUcastMgmtToCpu	OBJECT-TYPE
		SYNTAX		INTEGER
		{     
			disable(4)
		}(0..3)
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"fream-type-priority-override ucast-mgmt-to-cpu"
		::= { ubiFrameTypePriorityOverride 2 }
		
	ubiFromCpu			OBJECT-TYPE
		SYNTAX		INTEGER
		{     
			disable(4)
		}(0..3)
		ACCESS		read-write  
		STATUS		current
		DESCRIPTION
		"frame-type-priority-override from-cpu"
		::= { ubiFrameTypePriorityOverride 3 }
		
	ubiPortEtypeMatch	OBJECT-TYPE   
		SYNTAX		INTEGER
		{     
			disable(4)
		}(0..3)
		ACCESS		read-write
		STATUS		current
		DESCRIPTION
		"fream-type-priority-override port-etype-match"
		::= { ubiFrameTypePriorityOverride 4 }

	                              
-- ***********************************************************
-- ubiQoSMIBConformance
-- ***********************************************************  

-- conformance information

ubiQosMIBCompliances  	OBJECT IDENTIFIER		::= { ubiQosMIBConformance 1 }
ubiQosMIBGroups  		OBJECT IDENTIFIER		::= { ubiQosMIBConformance 2 }


--
-- compliance statements
--
	ubiQosMIBCompliance MODULE-COMPLIANCE
    	STATUS          current
    	DESCRIPTION
        	"An Entity-MIB implementation can implement this group to
        	provide FRU status and control."
   	 	MODULE          -- this module
    	MANDATORY-GROUPS {
    					ubiQosMIBClassGroup,
    					ubiQosMIBPolicyGroup,
                        ubiQosMIBQosMapGroup
        }

    	GROUP           ubiQosMIBClassGroup
    	DESCRIPTION
        	""

    	GROUP           ubiQosMIBPolicyGroup
    	DESCRIPTION
        	""
        	   
    	GROUP           ubiQosMIBQosMapGroup
    	DESCRIPTION
        	""           	
        
    	::= { ubiQosMIBCompliances 1 }

-- units of conformance

	ubiQosMIBClassGroup OBJECT-GROUP
    	OBJECTS         {
                    	}
    	STATUS          current
    	DESCRIPTION
        	""
    	::= { ubiQosMIBGroups 1 }

	ubiQosMIBPolicyGroup NOTIFICATION-GROUP
   		NOTIFICATIONS    { 
   		 }
    	STATUS          current
    	DESCRIPTION
        	""
    	::= { ubiQosMIBGroups 2 }    
 
	ubiQosMIBQosMapGroup OBJECT-GROUP
    	OBJECTS         { 
    					}
    	STATUS          current
    	DESCRIPTION
        	""
    	::= { ubiQosMIBGroups 3 }
	
END