summaryrefslogtreecommitdiff
path: root/MIBS/dlink/DLINKSW-QOS-MIB
blob: d462035520118ff19f5a8753688c2f3533d8604a (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
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
-- *****************************************************************
-- DLINKSW-QOS-MIB.mib : D-Link QoS MIB
--
-- Copyright (c) 2013 D-Link Corporation, all rights reserved.
--   
-- *****************************************************************

DLINKSW-QOS-MIB DEFINITIONS ::= BEGIN

    IMPORTS
        MODULE-IDENTITY,OBJECT-TYPE,Integer32,Unsigned32
            FROM SNMPv2-SMI   
        RowStatus, DisplayString,TruthValue,TEXTUAL-CONVENTION    
            FROM SNMPv2-TC
        MODULE-COMPLIANCE, OBJECT-GROUP
		    FROM SNMPv2-CONF        
        dot1dBasePort
            FROM BRIDGE-MIB
        dlinkIndustrialCommon	
            FROM DLINK-ID-REC-MIB;
		
   	
    dlinkSwQosMIB MODULE-IDENTITY
        LAST-UPDATED "201307090000Z"
        ORGANIZATION "D-Link Corp."
        CONTACT-INFO
            "         D-Link Corporation
             Postal: No. 289, Sinhu 3rd Rd., Neihu District,
                     Taipei City 114, Taiwan, R.O.C
             Tel:    +886-2-66000123
             E-mail: tsd@dlink.com.tw
            "
        DESCRIPTION
		    "The Structure of QoS Infomation for the 
		     proprietary enterprise."
        REVISION "201302210000Z"
        DESCRIPTION
            "Initial version of this MIB module."   
        REVISION "201305300000Z"
        DESCRIPTION
            "1.Add a new parameter, percent <value 1-100 >, to set the rate by percentage.
			-- dQosBandwidthRxRateMode,dQosBandwidthTxRateMode,
			-- dQosQueueBandwidthMinRateMode,dQosQueueBandwidthMinRateMode
			 2.change the value range of 
			-- dQosBandwidthRxRate,dQosBandwidthTxRate,
			-- dQosQueueBandwidthMinRate,dQosQueueBandwidthMaxRate
			"     
 	REVISION "201307090000Z"
        DESCRIPTION
            "1.Add police action: replaceCos,replaceAll
		-- DlinkQosPoliceActionType
		-- dQosAggPolicerEntry
		   	-- dQosAggPolicerConformReplaceCos
			-- dQosAggPolicerExceedReplaceCos
			-- dQosAggPolicerViolateReplaceCos
		-- dQosPoliceEntry
			-- dQosPoliceConformReplaceCos
			-- dQosPoliceExceedReplaceCos
			-- dQosPoliceViolateReplaceCos
		"
        ::= { dlinkIndustrialCommon 61 }
 

    DlinkQosPoliceActionType ::= TEXTUAL-CONVENTION
        STATUS          current
        DESCRIPTION
            "A value represents a type of policing action.
            notApplicable - The action is not specified or not applicable.
            drop   - drop the packet.
            permit - transmit the packet.
            replaceDscp - Replace the DSCP value of packet with the configured value.
                     The new DSCP value must be accompanied for use with 
                     DlinkQosPoliceActionType.
            replaceCos - Replace the COS value of packet with the configured value.
                     The new COS value must be accompanied for use with
                     DlinkQosPoliceActionType.
            replaceAll - Replace both the DSCP and COS value of packet with the
                     configured value.
            "
        SYNTAX          INTEGER {
            notApplicable(0),
            drop(1),
            permit(2),
            replaceDscp(3),
	    replaceCos(4),
	    replaceAll(5)		
        }

-- -----------------------------------------------------------------------------
    dQosMIBNotifications	OBJECT IDENTIFIER ::= { dlinkSwQosMIB 0 }
	dQosMIBObjects     		OBJECT IDENTIFIER ::= { dlinkSwQosMIB 1 }
	dQosMIBConformance		OBJECT IDENTIFIER ::= { dlinkSwQosMIB 2 }

-- -----------------------------------------------------------------------------
	dQosClassMap        	 OBJECT IDENTIFIER ::= { dQosMIBObjects 1 }  
	dQosPolicyMap  		     OBJECT IDENTIFIER ::= { dQosMIBObjects 2 }   
   	dQosServicePolicy     	 OBJECT IDENTIFIER ::= { dQosMIBObjects 3 }
	dQosScheduling   	     OBJECT IDENTIFIER ::= { dQosMIBObjects 4 }
	dQosBandwidthCtrl        OBJECT IDENTIFIER ::= { dQosMIBObjects 5 }
	dQosQueueBandwidthCtrl   OBJECT IDENTIFIER ::= { dQosMIBObjects 6 }

	dQosQueuingCfg           OBJECT IDENTIFIER ::= { dQosMIBObjects 7 }	
	dQosDscpMap      	     OBJECT IDENTIFIER ::= { dQosMIBObjects 8 }
	dQosCosMap       	     OBJECT IDENTIFIER ::= { dQosMIBObjects 9 }
		
-- ----------------------------------------------------------------------------- 	
   	dQosPolicyMapTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosPolicyMapEntry
		MAX-ACCESS      not-accessible
		STATUS  current
		DESCRIPTION
		    "This table consists of a list of QoS policy maps."
		::= { dQosPolicyMap 1 }
    	   
	dQosPolicyMapEntry OBJECT-TYPE
		SYNTAX          DQosPolicyMapEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "An entry defines a QoS policy map."
		INDEX   { dQosPolicyMapName }
		::= { dQosPolicyMapTable 1 }

	DQosPolicyMapEntry ::= 		SEQUENCE {     
		dQosPolicyMapName	      DisplayString,
		dQosPolicyMapRowStatus    RowStatus
    } 
	
	dQosPolicyMapName OBJECT-TYPE
		SYNTAX          DisplayString (SIZE(1..32))
		MAX-ACCESS      not-accessible		
		STATUS          current  
		DESCRIPTION
		    "This object indicates name of the policy map." 
		::= { dQosPolicyMapEntry 1 }	
		
	dQosPolicyMapRowStatus OBJECT-TYPE
		SYNTAX          RowStatus
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		      "This object indicates the status of this entry."
		::= { dQosPolicyMapEntry 2 }

-- ----------------------------------------------------------------------------- 	
   	dQosPolicyMapCfgTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosPolicyMapCfgEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This table consists of a list of QoS policies for the class in a 
            policy map."
		::= { dQosPolicyMap 2 }
    	   
	dQosPolicyMapCfgEntry OBJECT-TYPE
		SYNTAX  DQosPolicyMapCfgEntry
		MAX-ACCESS  not-accessible
		STATUS  current
		DESCRIPTION
		     "An entry consists QoS policies regarding setting the new precedence
             field, DSCP field, and CoS field of the out-going packet. 
             The first two index elements identify the policy map class to which
             the setting policies belong.   
             Multiple objects in a same row can be set for a class if they are not
             conflicting. As an example of conflicting setting: precedence and DSCP
             cannot be set at a same row.
             "
		INDEX   { 
            dQosPolicyMapName,
            dQosClassMapName 
        }
		::= { dQosPolicyMapCfgTable 1 }

	DQosPolicyMapCfgEntry ::=		SEQUENCE {      		  
	    dQosPolicyMapCfgSetCosQueue         Integer32,  
		dQosPolicyMapCfgSetCos		        Integer32,                       
		dQosPolicyMapCfgSetDscpOnlyIp       TruthValue,		         
		dQosPolicyMapCfgSetDscp		        Integer32,       
		dQosPolicyMapCfgSetPreceOnlyIp 	    TruthValue,  		  
		dQosPolicyMapCfgSetPrecedence 	    Integer32,  
		dQosPolicyMapCfgRowStatus    	    RowStatus
    } 
		
   	dQosPolicyMapCfgSetCosQueue OBJECT-TYPE
		SYNTAX          Integer32 (-1 | 0..7)
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		    "Indicates the new CoS queue.
            The special value of -1 means the setting is un-configured."  
		DEFVAL {-1} 
		::= { dQosPolicyMapCfgEntry 1 }    
	
	dQosPolicyMapCfgSetCos OBJECT-TYPE
		SYNTAX          Integer32 (-1 | 0..7 )
		MAX-ACCESS      read-create
		STATUS  current
		DESCRIPTION
		      "Indicates the new Cos.
		      The special value of -1 means the setting is un-configured."     
		DEFVAL {-1}
		::= { dQosPolicyMapCfgEntry 2 }
	
    dQosPolicyMapCfgSetDscpOnlyIp OBJECT-TYPE
		SYNTAX          TruthValue
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		    "This object indicates whether only remark IPv4 DSCP.
            'true' - Only IPv4 DSCP will be marked.
		    'false'- Both IPv4 and IPv6 DSCP will be marked.
             This object is meaningful only when dQosPolicyMapCfgSetDscp is configured.
            "  
		DEFVAL { false }
		::= { dQosPolicyMapCfgEntry 3 }

	dQosPolicyMapCfgSetDscp OBJECT-TYPE
		SYNTAX          Integer32 ( -1 | 0..63 )
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		      "Indicates the new DSCP.
		      The special value of -1 means the setting is un-configured."   
		DEFVAL {-1} 
		::= { dQosPolicyMapCfgEntry 4 }
    
    dQosPolicyMapCfgSetPreceOnlyIp OBJECT-TYPE
		SYNTAX          TruthValue
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		    "This object indicates whether only remark IPv4 precedence.
		    'true' -  Ipv4 precedence will be marked.
		    'false' - Both IPv4 and IPv6 precedence will be marked. For IPv6
                packets, the precedence is most three significant bits of 
                traffic class of IPv6 header.
            This object is meaningful only when dQosPolicyMapCfgSetPrecedence is configured.
            "  
		DEFVAL { false }
		::= { dQosPolicyMapCfgEntry 5 }

	dQosPolicyMapCfgSetPrecedence OBJECT-TYPE
		SYNTAX          Integer32 (-1 | 0..7 )
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		    "Indicates the new ip precedence.  
		    The special value of -1 means the setting is un-configured."     
		DEFVAL {-1} 
		::= { dQosPolicyMapCfgEntry 6 }

	dQosPolicyMapCfgRowStatus OBJECT-TYPE
		SYNTAX          RowStatus
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		    "This object indicates the status of this entry."  
		::= { dQosPolicyMapCfgEntry 7 }
				    		 
-- ----------------------------------------------------------------------------- 	
   	dQosClassMapTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosClassMapEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This table consists of a list of QoS type class map."
		::= { dQosClassMap 1 }

	dQosClassMapEntry OBJECT-TYPE
		SYNTAX          DQosClassMapEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "An entry defines a QoS class map."
		INDEX   { dQosClassMapName }
		::= { dQosClassMapTable 1 }

	DQosClassMapEntry ::=  SEQUENCE {
		dQosClassMapName 		  	  DisplayString,	
		dQosClassMapType		  	  INTEGER,            
		dQosClassMapRowStaus	  	  RowStatus
	}

   	dQosClassMapName OBJECT-TYPE
		SYNTAX          DisplayString (SIZE(1..32))
		MAX-ACCESS      not-accessible
		STATUS          current  
		DESCRIPTION
		    "This object indicates the name of the class map." 
		::= { dQosClassMapEntry 1 }

    dQosClassMapType OBJECT-TYPE
		SYNTAX  INTEGER {
            matchAny(1),
            matchAll(2)
        }
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		    "This object indicates how to evaluate multiple match criteria.
		    matchAny - statements in the class map will be evaluated based on
                       the logical OR.
		    matchAll - statements in the class map will be evaluated based on
                       the logical AND."   
		DEFVAL	{ matchAny }
		::= { dQosClassMapEntry 2 }
 						
	dQosClassMapRowStaus OBJECT-TYPE
		SYNTAX          RowStatus
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		    "This object indicates the status of this entry."
		::= { dQosClassMapEntry 3 }

-- -----------------------------------------------------------------------------	
   	dQosClassMapCfgTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosClassMapCfgEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This table consists of a list of criteria for class maps."
		::= { dQosClassMap 2 }

	dQosClassMapCfgEntry OBJECT-TYPE
		SYNTAX  DQosClassMapCfgEntry
		MAX-ACCESS  not-accessible
		STATUS  current
		DESCRIPTION
		    "An entry defines a match criterion for a class map. The first index element 
            identifies the class map to which the criterion belongs.           
            "
		INDEX   { 
            dQosClassMapName, 
            dQosClassMapCfgMatchId 
        }
		::= { dQosClassMapCfgTable 1 }

	DQosClassMapCfgEntry ::= SEQUENCE {  
		dQosClassMapCfgMatchId		Integer32,
		dQosClassMapCfgMatchType	INTEGER,	   
		dQosClassMapCfgMatchValue	OCTET STRING,			
		dQosClassMapCfgRowStaus	  	RowStatus
	}     
		
    dQosClassMapCfgMatchId OBJECT-TYPE
		SYNTAX          Integer32 (0..65535)		
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This index is automatically assigned for the match criterion in a
            class map.
	        "
		::= { dQosClassMapCfgEntry 1 }
    
    dQosClassMapCfgMatchType OBJECT-TYPE 
		SYNTAX  INTEGER {
		    accessList(1),
			cos(2),
			innerCos(3),
			dscp(4),
			ipDscp(5),
			precedence(6),
			ipPrecedence(7),                        
			protocol(8),
			vlan(9),
			innerVlan(10)
		}		
		MAX-ACCESS   read-create
		STATUS       current
		DESCRIPTION
		    "This object indicates the matching type of the entry. 
            A QoS class map can contain multiple match statements.

            The dQosClassMapMatchType determines the valid range 
            and value of dQosClassMapMatchValue. 
           
		    accessList -  Uses an access-list as matching criterion.
		    cos - matching IEEE 802.1Q CoS value
		    innerCos - matching innermost CoS value of QinQ packets
		    dscp - matching DSCP value and this criterion is applied for IPv4
                 and IPv6 packets.
		    ipDscp - matching DSCP of IPv4 packets only.
		    precedence - matching precedence and this criterion is applied for IPv4
                 and IPv6 packets.
		    ipPrecedence - matching precedence of IPv4 packets only.            
		    protocol - matching protocol.  
			vlan - matching VLAN ID.
		    innerVlan - matching innermost VLAN ID.
		    "
		::= { dQosClassMapCfgEntry 2 }
	
	dQosClassMapCfgMatchValue OBJECT-TYPE
		SYNTAX          OCTET STRING (SIZE(1..32))
		MAX-ACCESS      read-create
		STATUS  current
		DESCRIPTION
		    "A dQosClassMapMatchValue is always interpreted within the context of
            a dQosClassMapMatchType value.

            The table below explains how to determine the values and ranges of 
            dQosClassMapMatchValue.
		       QoS class map match configuration table
            ====================================================
            Match Type                 Element Value
            dQosClassMapMatchType     dQosClassMapMatchValue
            =======================   ============================        
            accessList                DisplayString (SIZE(1..32)) (Note #1)
            cos                       OCTET STRING (SIZE(1)) (Note #2)
            innerCos                  OCTET STRING (SIZE(1)) (Note #2)  
            dscp                      OCTET STRING (SIZE(8)) (Note #3)
            ipDscp                    OCTET STRING (SIZE(8)) (Note #3) 
            precedence                OCTET STRING (SIZE(1)) (Note #4)
            ipPrecedence              OCTET STRING (SIZE(1)) (Note #4)        
            protocol                  DisplayString (Note #5)
            vlan                      OCTET STRING (SIZE(2)) (Note #6)
            innerVlan                 OCTET STRING (SIZE(2)) (Note #6)       
            ===================================================================   
            Note#1: This object indicates the name of the access-list to be matched.
            Note#2: The one octet specifies eight CoSs. The most significant 
                    bit represents CoS 0 and the least significant bit represents
                    CoS 7.  If the corresponding bit is '1' indicates that CoS is
                    included in the criterion; '0' means the CoS is not included.
            Note#3: The eight octets specify 64 DSCPs. Each octet within this
                    value specifies a set of eight DSCPs. The first octet specifies
                    first 8 DSCPs: 0 - 7, the second octet specifies the next 8 DSCPs, 
                    etc. Within each octet, the most significant bit represents the 
                    lowest numbered DSCP, and the least significant bit represents the
                    highest numbered DSCP. If the corresponding bit is '1' indicates
                    that DSCP is included in the criterion; '0' means the DSCP is not
                    included.
            Note#4: The one octet specifies eight precedence values. The most significant
                    bit represents precedence 0 and the least significant bit 
                    represents precedence 7. If the corresponding bit is '1' 
                    indicates that precedence is included in the criterion; '0' 
                    means the precedence is not included.
            Note#5: The element value needs choose the exact case-sensitive string.
                    Supported Protocols that can be matched:
                        arp		IP Address Resolution Protocol (ARP)
						bgp		Border Gateway Protocol 
						dhcp	Dynamic Host Configuration 
						dns		Domain Name Server lookup 
						egp		Exterior Gateway Protocol 
						ftp		File Transfer Protocol 
						ip  	(version 4) 
						ipv6 	(version 6) 
						netbios	NetBIOS 
						nfs		Network File System 
						ntp		Network Time Protocol 
						ospf	Open Shortest Path First 
						pppoe	Point-to-Point Protocol over Ethernet 
						rip		Routing Information Protocol 
						rtsp	Real-Time Streaming Protocol 
						ssh		Secured shell 
						telnet	Telnet 
						tftp	Trivial File Transfer Protocol 		   
            Note#6: The element value is VLAN ID to be matched. The first octet indicates
                    the high byte of VLAN ID and the second octet indicates the low byte.
                    For example, VLAN ID 1029 is encoded in '0405'H.
            "
		::= { dQosClassMapCfgEntry 3 }
				
	dQosClassMapCfgRowStaus OBJECT-TYPE
		SYNTAX          RowStatus
		MAX-ACCESS      read-create
		STATUS  current
		DESCRIPTION
		    "This object indicates the status of this entry.                    
            "
		::= { dQosClassMapCfgEntry 5 }
		   
-- -----------------------------------------------------------------------------   	
   	dQosServicePolicyTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosServicePolicyEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This table consists of a list of interface-specific policy-map 
            associations."
		::= { dQosServicePolicy 1 }

	dQosServicePolicyEntry OBJECT-TYPE
		SYNTAX          DQosServicePolicyEntry
		MAX-ACCESS      not-accessible
		STATUS  current
		DESCRIPTION
		     "An entry defines a policy-map association on an interface."
		INDEX   { 
            dot1dBasePort,
            dQosServicePolicyDirection
        }
		::= { dQosServicePolicyTable 1 }

	DQosServicePolicyEntry ::=
		SEQUENCE {		  		  
		  dQosServicePolicyDirection	INTEGER,  
          dQosServicePolicyName 	    DisplayString,
		  dQosServicePolicyRowStaus     RowStatus   		  
		}
	
    dQosServicePolicyDirection OBJECT-TYPE
		SYNTAX  INTEGER {
			input(1),
			output(2)
		}
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		    "This object indicates the direction of the policy map is applied:
            input: for ingress flow
            outout: for egress flow
            "
		::= { dQosServicePolicyEntry 1 }  
	
    dQosServicePolicyName OBJECT-TYPE
		SYNTAX          DisplayString (SIZE(1..32))
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		    "Indicates the name of a service policy map to be attached."
		::= { dQosServicePolicyEntry 2 }	

	dQosServicePolicyRowStaus OBJECT-TYPE
		SYNTAX	RowStatus
		MAX-ACCESS  read-create
		STATUS  current
		DESCRIPTION
		    "This object indicates the status of this entry."
		::= { dQosServicePolicyEntry 3 }
			
-- -----------------------------------------------------------------------------		
    dQosSchedulingModeTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosSchedulingModeEntry
		MAX-ACCESS      not-accessible
		STATUS          current                                          		
		DESCRIPTION
		    "This table consists of a list of scheduling mechanism configurations
            for ports."
		::= { dQosScheduling 1 }

	dQosSchedulingModeEntry OBJECT-TYPE
		SYNTAX          DQosSchedulingModeEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		      "An entry configures the scheduling mode on an interface."
		INDEX   { dot1dBasePort }
		::= { dQosSchedulingModeTable 1 }

	DQosSchedulingModeEntry ::= 		SEQUENCE {		  
		dQosSchedulingMode      INTEGER
	}
	    
    dQosSchedulingMode OBJECT-TYPE
		SYNTAX	INTEGER {
            sp(1),
            rr(2),
            wrr(3),
            wdrr(4)
        }
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		   "This object indicates the mechanism of QoS scheduling on the interface.
		   "
		::= { dQosSchedulingModeEntry 2 }
 
-- -----------------------------------------------------------------------------	
    dQosScheduleWrrWeightTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosScheduleWrrWeightEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This table consists of a list of configurations for WRR queue bandwidth
            of queues.            
            "
		::= { dQosScheduling 2 }

	dQosScheduleWrrWeightEntry OBJECT-TYPE
		SYNTAX          DQosScheduleWrrWeightEntry
		MAX-ACCESS      not-accessible
		STATUS  current
		DESCRIPTION
		    "An entry defines WRR weight of a queue on an interface.
            An entry exists for each queue if the WRR bandwidth is configurable
            on the queue.
            "
		INDEX   { 
            dot1dBasePort,
            dQosScheduleWrrWeightQueueId
        }
		::= { dQosScheduleWrrWeightTable 1 }

	DQosScheduleWrrWeightEntry ::= 		SEQUENCE {		
        dQosScheduleWrrWeightQueueId        Unsigned32,    
        dQosScheduleWrrWeightValue 	        Unsigned32
	}
	    
   	dQosScheduleWrrWeightQueueId    OBJECT-TYPE
		SYNTAX          Unsigned32 (0..127)
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This object indicates the queue ID of the entry."
		::= { dQosScheduleWrrWeightEntry 1 }

    dQosScheduleWrrWeightValue  OBJECT-TYPE
		SYNTAX          Unsigned32 ( 0 .. 127)
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		    "Specifies the weight in terms of frame count for the queue."
		::= { dQosScheduleWrrWeightEntry 2 }	

-- -----------------------------------------------------------------------------
    dQosScheduleWdrrWeightTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosScheduleWdrrWeightEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This table consists of a list of configurations for WDRR queue bandwidth
            of queues.           
            "
		::= { dQosScheduling 3 }

	dQosScheduleWdrrWeightEntry OBJECT-TYPE
		SYNTAX          DQosScheduleWdrrWeightEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "An entry defines WDRR weight of a queue on an interface.
            An entry exists for each queue if the WDRR bandwidth is configurable
            on the queue. 
            "
		INDEX   { 
            dot1dBasePort,
            dQosScheduleWdrrWeightQueueId 
        }
		::= { dQosScheduleWdrrWeightTable 1 }

	DQosScheduleWdrrWeightEntry ::= 		SEQUENCE {		    
		dQosScheduleWdrrWeightQueueId	Unsigned32,
        dQosScheduleWdrrWeightValue	    Unsigned32
	}
	    
   	dQosScheduleWdrrWeightQueueId OBJECT-TYPE
		SYNTAX          Unsigned32 (0..127)
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This object indicates the queue ID of the entry."
		::= { dQosScheduleWdrrWeightEntry 1 }

    dQosScheduleWdrrWeightValue  OBJECT-TYPE
		SYNTAX          Unsigned32 (0..127)
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
            "Specifies the weight in terms of frame length count for the queue."		    
		::= { dQosScheduleWdrrWeightEntry 2 }  
		
-- -----------------------------------------------------------------------------
	dQosBandwidthCtrlTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosBandwidthCtrlEntry
		MAX-ACCESS      not-accessible
		STATUS  current
		DESCRIPTION
		    "A table consists of a list of configurations for bandwidth control 
            on interfaces."
		::= { dQosBandwidthCtrl 1 }
	
	dQosBandwidthCtrlEntry OBJECT-TYPE
		SYNTAX          DQosBandwidthCtrlEntry
		MAX-ACCESS      not-accessible
		STATUS  current
		DESCRIPTION
		    "An entry configures the bandwidth on an interface.
            An entry will exist for every applicable port.
            "
		INDEX   { dot1dBasePort }
		::= { dQosBandwidthCtrlTable 1 }
	
	DQosBandwidthCtrlEntry ::=		SEQUENCE {		
		  dQosBandwidthRxRate		  Integer32,   
		  dQosBandwidthRxBurst	      Integer32,
		  dQosBandwidthTxRate	      Integer32,
		  dQosBandwidthTxBurst        Integer32,	
		  dQosBandwidthRxRateMode	  INTEGER,
		  dQosBandwidthTxRateMode	  INTEGER	     
		}
			
	dQosBandwidthRxRate OBJECT-TYPE
		SYNTAX          Integer32 (-1 | 1..10240000)
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		    "This object indicates Rx Rate of the specified port. 
		    The special value of -1 indicates there is no bandwidth 
		    limit for ingress packets.    
		    It is based on the dQosBandwidthRxRateMode field and
			if the dQosBandwidthRxRateMode selected as:
			rate: means ingress rate limit(units:kbps) and the effective rangs are 8 ~ 10240000.
			percent: means the percentage and the effective rangs are 1 ~ 100.
            "
		::= { dQosBandwidthCtrlEntry 2 }    
		
	dQosBandwidthRxBurst OBJECT-TYPE
		SYNTAX          Integer32 ( -1 | 0..128000)  
		UNITS           "kbyte"
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		    "This object indicates the limit for ingress burst traffic
            in kilobytes.
            The special value of -1 indicates the limit for 
            ingress burst traffic is unspecified and the limit will follow
            the setting of dQosBandwidthRxRate.
            "
		::= { dQosBandwidthCtrlEntry 3 }
	
	dQosBandwidthTxRate OBJECT-TYPE
		SYNTAX          Integer32 (-1 | 1..10240000) 
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		    "This object indicates Tx Rate of the specified port. 
		    The special value of -1 indicates there is no bandwidth 
		    limit for egress packets.    
		    It is based on the dQosBandwidthTxRateMode field and
			if the dQosBandwidthTxRateMode selected as:
			rate: means egress rate limit(units:kbps) and the effective rangs are 8 ~ 10240000.
			percent: means the percentage and the effective rangs are 1 ~ 100.            
	       	"
		::= { dQosBandwidthCtrlEntry 4 }	      
	
	dQosBandwidthTxBurst OBJECT-TYPE
		SYNTAX          Integer32 (-1 | 0..128000) 
		UNITS           "kbyte"
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		    "This object indicates the limit for egress burst traffic
            in kilobytes.
            The special value of -1 indicates the limit for 
            egress burst traffic is unspecified and the limit will follow
            the setting of dQosBandwidthTxRate.
            "
		::= { dQosBandwidthCtrlEntry 5 }	
    
    dQosBandwidthRxRateMode OBJECT-TYPE
		SYNTAX  INTEGER {
						rate(1),
						percent(2)
						}
		MAX-ACCESS  read-write
		STATUS  current
		DESCRIPTION
		      "This object indicates Rx Rate Mode. 
		       It will indicate the field:dQosBandwidthRxRate attribute.
		       rate: means the rate limit.
		       percent: means the percentage."         
		::= { dQosBandwidthCtrlEntry 6 }    
		
	dQosBandwidthTxRateMode OBJECT-TYPE
		SYNTAX  INTEGER {
						rate(1),
						percent(2)
						}
		MAX-ACCESS  read-write
		STATUS  current
		DESCRIPTION
		      "Indicates Tx Rate Mode. 
		       It will indicate the field:dQosBandwidthTxRate attribute.
		       rate: means the rate limit.
		       percent: means the percentage."         
		::= { dQosBandwidthCtrlEntry 7 }

-- -----------------------------------------------------------------------------
   	dQosQueueBandwidthCtrlTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosQueueBandwidthCtrlEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "A table contains information about queue-specific bandwidth 
            control of ports."
		::= { dQosQueueBandwidthCtrl 1 }
	
	dQosQueueBandwidthCtrlEntry OBJECT-TYPE
		SYNTAX          DQosQueueBandwidthCtrlEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		      "An entry contains bandwidth control information of a queue on
		      a port."
		INDEX   { 
            dot1dBasePort, 
            dQosQueueBandwidthQueId 
        }
		::= { dQosQueueBandwidthCtrlTable 1 }
	
	DQosQueueBandwidthCtrlEntry ::= 		SEQUENCE {
		  dQosQueueBandwidthQueId 	    Unsigned32,		 
		  dQosQueueBandwidthMinRate		Integer32,      
		  dQosQueueBandwidthMaxRate	    Integer32, 
		  dQosQueueBandwidthMinRateMode	INTEGER,      
		  dQosQueueBandwidthMaxRateMode	INTEGER
		}
	
	dQosQueueBandwidthQueId OBJECT-TYPE
		SYNTAX          Unsigned32 (0..127)
		MAX-ACCESS      not-accessible
		STATUS  current
		DESCRIPTION
		     "Indicates the queue ID of the entry."
		::= { dQosQueueBandwidthCtrlEntry 1 }
	
	dQosQueueBandwidthMinRate OBJECT-TYPE
		SYNTAX  Integer32 ( -1 | 1..10240000)
		MAX-ACCESS  read-write
		STATUS  current
		DESCRIPTION 
		       "Indicates the minimum rate of the specified port and queue. 
		       A special value of -1 means no limit.
		       It is based on the dQosQueueBandwidthMinRateMode field and
		       if the dQosQueueBandwidthMinRateMode selected as:
		       rate: means egress Minimum Rate (units:kbps),range are 8 ~ 10240000.
		       percent: means the percentage and the effective rangs are 1 ~ 100."
		::= { dQosQueueBandwidthCtrlEntry 2 }				
	
	dQosQueueBandwidthMaxRate OBJECT-TYPE
		SYNTAX          Integer32 ( -1 | 1..10240000) 
		MAX-ACCESS      read-write
		STATUS  current
		DESCRIPTION
		    "Indicates the maximum rate of the specified port and queue. 
	       	A special value of -1 means no limit.
	       	It is based on the dQosQueueBandwidthMaxRateMode field and
	       	if the dQosQueueBandwidthMaxRateMode selected as:
	       	rate: means egress Maximum Rate (units:kbps),range are 8 ~ 10240000.
	       	percent: means the percentage and the effective rangs are 1 ~ 100."
		::= { dQosQueueBandwidthCtrlEntry 3 }
    
    dQosQueueBandwidthMinRateMode OBJECT-TYPE
		SYNTAX  INTEGER {
						rate(1),
						percent(2)
						}
		MAX-ACCESS  read-write
		STATUS  current
		DESCRIPTION
		      "Indicates the Minimum Rate Mode. 
		       It will indicate the field:dQosQueueBandwidthMinRate attribute.
		       rate: means the Minimum Rate.
		       percent: means the percentage."		
		::= { dQosQueueBandwidthCtrlEntry 4 }

	dQosQueueBandwidthMaxRateMode OBJECT-TYPE
		SYNTAX  INTEGER {
						rate(1),
						percent(2)
						}
		MAX-ACCESS  read-write
		STATUS  current
		DESCRIPTION
		      "Indicates the Maximum Rate Mode. 
		       It will indicate the field:dQosQueueBandwidthMaxRate attribute.
		       rate: means the Maximum Rate.
		       percent: means the percentage."       		
		::= { dQosQueueBandwidthCtrlEntry 5 }
-- -----------------------------------------------------------------------------
	dQosPortIfQueuingTable OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosPortIfQueuingEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This table provides port-specific configuration for QoS queuing. 
            "               
		::= { dQosQueuingCfg 1 }
	
	dQosPortIfQueuingEntry OBJECT-TYPE
		SYNTAX          DQosPortIfQueuingEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		      "An entry consists of information for QoS queueing on a port."
		INDEX   { dot1dBasePort }                
		::= { dQosPortIfQueuingTable 1 }
	
	DQosPortIfQueuingEntry ::=		SEQUENCE { 		 
		dQosPortIf8021pOverride         TruthValue,		  	  
        dQosPortIfTrustMode             INTEGER  
	} 
		  			
	dQosPortIf8021pOverride OBJECT-TYPE
		SYNTAX          TruthValue
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		    "This object indicates whether override the CoS of the packets with
            default CoS (dot1dPortDefaultUserPriority).
            If this object is 'true', the default CoS will be applied to all
            incoming packets, either tagged or untagged, received by the port."  
        REFERENCE
            "dot1dPortDefaultUserPriority is defined in P-BRIDGE-MIB."
		::= { dQosPortIfQueuingEntry 1 }    
	
    dQosPortIfTrustMode OBJECT-TYPE
		SYNTAX  INTEGER {
			cos(1),
			dscp(2)
		}
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		    "This object indicates QoS trust mode of the port." 
		::= { dQosPortIfQueuingEntry 2 }	   	         

	
-- -----------------------------------------------------------------------------
    dQosDscpMutationMapTable  OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosDscpMutationMapEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This table provides a mechanism to create/delete a DSCP mutation map."
		::= { dQosDscpMap 1 }

	dQosDscpMutationMapEntry OBJECT-TYPE
		SYNTAX          DQosDscpMutationMapEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		     "An entry (conceptual row) in the dQosDscpMutationMapTable."
		INDEX   { dQosDscpMutationMapName }
		::= { dQosDscpMutationMapTable 1 }

	DQosDscpMutationMapEntry ::= 		SEQUENCE {
        dQosDscpMutationMapName         DisplayString,
        dQosDscpMutationMapRowStatus  	RowStatus
    }           
    
    dQosDscpMutationMapName OBJECT-TYPE
		SYNTAX          DisplayString(SIZE(1..32))
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This object indicates the name of the DSCP mutation map."
		::= { dQosDscpMutationMapEntry 1 }

    dQosDscpMutationMapRowStatus OBJECT-TYPE
		SYNTAX          RowStatus
		MAX-ACCESS      read-create
		STATUS          current
		DESCRIPTION
		      "This object indicates the status of this entry."
		::= { dQosDscpMutationMapEntry 2 }

-- -----------------------------------------------------------------------------
    dQosDscpMutationMapCfgTable  OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosDscpMutationMapCfgEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "The table provides a list of the DSCP mapping of mutations maps.
         	"
		::= { dQosDscpMap 2 }

	dQosDscpMutationMapCfgEntry OBJECT-TYPE
		SYNTAX          DQosDscpMutationMapCfgEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "Each row contains the mapping from old DSCP value to new
        	DSCP value per specific mutation table.
            The first index element identifies the mutation map 
            (dQosDscpMutationMapEntry) that a DSCP mapping (dQosDscpMutationMapCfgEntry)
            belongs to. 
            When a mutation map is removed, the corresponding DSCP mapping 
            configuration will be deleted.
            "
		INDEX   { 
            dQosDscpMutationMapName, 
            dQosDscpMutationOldDscp
        }
		::= { dQosDscpMutationMapCfgTable 1 }

	DQosDscpMutationMapCfgEntry ::= 		SEQUENCE {
        dQosDscpMutationOldDscp         Unsigned32,
        dQosDscpMutationNewDscp         Unsigned32
    }           
    
    dQosDscpMutationOldDscp OBJECT-TYPE
		SYNTAX          Unsigned32 (0..63)
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "The old DSCP value."
		::= { dQosDscpMutationMapCfgEntry 1 }

    dQosDscpMutationNewDscp OBJECT-TYPE
		SYNTAX          Unsigned32 (0..63)
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		    "This object indicates the new DSCP value which the old 
            DSCP values maps to for a specific mutation map. 
            The default mapping of old DSCP to new DSCP for mutation 
            purpose is the identity function, i.e. dQosDscpMutationNewDscp 
            equals to dQosDscpMutationOldDscp
			"
		::= { dQosDscpMutationMapCfgEntry 2 }

-- ----------------------------------------------------------------------------- 
	dQosDscpMutationMapAttachTable  OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosDscpMutationMapAttachEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This table provides a mechanism to attach a DSCP mutation map to 
            a port."
		::= { dQosDscpMap 3 }

	dQosDscpMutationMapAttachEntry OBJECT-TYPE
		SYNTAX          DQosDscpMutationMapAttachEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		      "An entry contains associating DSCP mutation map information."
		INDEX   { dot1dBasePort }
		::= { dQosDscpMutationMapAttachTable 1 }

	DQosDscpMutationMapAttachEntry ::= SEQUENCE {			
        dQosDscpMutationMapAttachName       DisplayString          
    }
                                   		     
	dQosDscpMutationMapAttachName OBJECT-TYPE
		SYNTAX  DisplayString (SIZE(0..32))
		MAX-ACCESS  read-write
		STATUS  current
		DESCRIPTION
		    "This object indicates the name of the attached mutation map.
            A zero length of string indicates no mutation map is attached.
            "
		::= { dQosDscpMutationMapAttachEntry 1 }
      		
-- -----------------------------------------------------------------------------
	dQosDscpMapCtrlTable  OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosDscpMapCtrlEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This table contains information about the mapping of DSCP to priority
            and DSCP to color for mapping a packet's initial color."
		::= { dQosDscpMap 4 }

	dQosDscpMapCtrlEntry OBJECT-TYPE
		SYNTAX          DQosDscpMapCtrlEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		      "An entry contains DSCP mapping information."
		INDEX   { 
            dot1dBasePort, 
            dQosDscpMapCtrlDscp 
        }
		::= { dQosDscpMapCtrlTable 1 }

	DQosDscpMapCtrlEntry ::= 	SEQUENCE {		
        dQosDscpMapCtrlDscp         Unsigned32,    
        dQosDscpMapCtrlCos          Unsigned32,
        dQosDscpMapCtrlColor        INTEGER
    }      
          		  		      					
    dQosDscpMapCtrlDscp OBJECT-TYPE
		SYNTAX          Unsigned32 (0..63)
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This object indicates the DSCP of the entry."
		::= { dQosDscpMapCtrlEntry 1 }
				
	dQosDscpMapCtrlCos OBJECT-TYPE
		SYNTAX         Unsigned32 (0..7)
		MAX-ACCESS     read-write
		STATUS         current
		DESCRIPTION
		    "This object indicates the mapped CoS value.
		      Default mapping is:
		      DSCP 	 CoS
		      0-7 	 0
		      8-15	 1
		      16-23	 2
		      24-31	 3
		      32-39	 4
		      40-47	 5
		      48-55	 6
		      56-63	 7
		    "
		::= { dQosDscpMapCtrlEntry 2 }
	
	dQosDscpMapCtrlColor OBJECT-TYPE
		SYNTAX          INTEGER {
			green(1),
			yellow(2),
			red(3)
		}
		MAX-ACCESS      read-write
		STATUS          current
        DESCRIPTION
		      "This object indicates the mapped color to determine a packet's
              initial color."
        DEFVAL { green }
		::= { dQosDscpMapCtrlEntry 3 }

-- -----------------------------------------------------------------------------	
   	dQosCosToColorMapTable  OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosCosToColorMapEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "A table contains information about the mapping of CoS to color."
		::= { dQosCosMap 1 }

	dQosCosToColorMapEntry OBJECT-TYPE
		SYNTAX          DQosCosToColorMapEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		      "An entry contains a mapping between CoS to color."
		INDEX   { 
            dot1dBasePort, 
            dQosCosMapCos
        }
		::= { dQosCosToColorMapTable 1 }
	    
    DQosCosToColorMapEntry ::= 		SEQUENCE { 			
        dQosCosMapCos                Unsigned32,
        dQosCosMapColor              INTEGER
    } 
          		  
    dQosCosMapCos OBJECT-TYPE
		SYNTAX          Unsigned32 (0..7)
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This object indicates the CoS of the entry."
		::= { dQosCosToColorMapEntry 1 }
	
	dQosCosMapColor OBJECT-TYPE
		SYNTAX          INTEGER {
			green(1),
			yellow(2),
			red(3)
		}
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		    "This object indicates the mapped color to determine a packet's
            initial color."
		::= { dQosCosToColorMapEntry 2 }               

-- -----------------------------------------------------------------------------	
   	dQosCosToQueueMapTable  OBJECT-TYPE
		SYNTAX          SEQUENCE OF DQosCosToQueueMapEntry
		MAX-ACCESS      not-accessible
		STATUS  current
		DESCRIPTION
		     "A table contains information about the mapping of CoS
             to queue."
		::= { dQosCosMap 2 }

	dQosCosToQueueMapEntry OBJECT-TYPE
		SYNTAX          DQosCosToQueueMapEntry
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		      "An entry contains a mapping between CoS to queue."
		INDEX   { dQosCosToQueueCos }
		::= { dQosCosToQueueMapTable 1 }
	
    
    DQosCosToQueueMapEntry ::= 		SEQUENCE { 
        dQosCosToQueueCos           Unsigned32,
        dQosCosToQueueQID           Unsigned32
    }    
    
    dQosCosToQueueCos OBJECT-TYPE
		SYNTAX          Unsigned32 (0..7)
		MAX-ACCESS      not-accessible
		STATUS          current
		DESCRIPTION
		    "This object indicates the CoS of the entry."
		::= { dQosCosToQueueMapEntry 1 }          
				
    dQosCosToQueueQID OBJECT-TYPE
		SYNTAX          Unsigned32
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION
		    "This object indicates the queue ID that the corresponding CoS will
            be queued."
		::= { dQosCosToQueueMapEntry 2 }          

-- -----------------------------------------------------------------------------       
    dQosAggPolicerTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DQosAggPolicerEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This table consists of a list of aggregate policers."
        ::= { dQosPolicyMap 3 }     
                
    dQosAggPolicerEntry OBJECT-TYPE
        SYNTAX          DQosAggPolicerEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This entry consists of information and configurations for an
            aggregate policer."
        INDEX { dQosAggPolicerName }
        ::= { dQosAggPolicerTable 1 }
        
    DQosAggPolicerEntry ::=         	SEQUENCE {
        dQosAggPolicerName    			    DisplayString,
        dQosAggPolicerType             	    INTEGER,
        dQosAggPolicerCir                   Unsigned32,
        dQosAggPolicerCbs         	        Unsigned32,
        dQosAggPolicerSrtcmEbs    	        Unsigned32,
        dQosAggPolicerTrtcmPir              Unsigned32,
        dQosAggPolicerTrtcmPbs              Unsigned32,
        dQosAggPolicerConformAction    	    DlinkQosPoliceActionType,
        dQosAggPolicerConformReplaceDscp    Unsigned32,
        dQosAggPolicerExceedAction          DlinkQosPoliceActionType,
        dQosAggPolicerExceedReplaceDscp    	Unsigned32,
        dQosAggPolicerViolateAction        	DlinkQosPoliceActionType,
        dQosAggPolicerViolateReplaceDscp   	Unsigned32,
        dQosAggPolicerColorAware   	        TruthValue,               
        dQosAggPolicerRowStatus           	RowStatus,
        dQosAggPolicerConformReplaceCos    Unsigned32,
        dQosAggPolicerExceedReplaceCos     Unsigned32,
        dQosAggPolicerViolateReplaceCos    Unsigned32
    }    
     	
    dQosAggPolicerName OBJECT-TYPE
        SYNTAX          DisplayString (SIZE(1..32))
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This object indicates the name of the aggregate policer."
        ::= { dQosAggPolicerEntry 1 }
   	
    dQosAggPolicerType OBJECT-TYPE
        SYNTAX          INTEGER {  
            trTcm(1),
            singleRate(2)
        }
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates how meters a packet stream and marks its packets.
            This object determines which other objects in the same row are meaningful.
            trTcm - two rate three color marker;
            singleRate - There are two kinds of single rate policers:
                a. single rate three color (srTcm) - if the violate action is specified 
                b. single rate two color - if the violate action is not specified.  
            "
        ::= { dQosAggPolicerEntry 2 }
        
    dQosAggPolicerCir OBJECT-TYPE
        SYNTAX          Unsigned32 (0..10240000)
        UNITS           "kbps"
        MAX-ACCESS      read-create
        STATUS  current
        DESCRIPTION 
            "This object is interpreted within the context of dQosAggPolicerType.
            The measurement unit is in kilobits per second.
            dQosAggPolicerType  dQosAggPolicerCir
            ==================  ===============================================
            'trTcm'             The committed information rate for first token 
                                bucket. 

            'singleRate'        The rate-limit for two-color policier. 
                                Or:
                                The committed information rate for srTcm.                                
            "                                       
        ::= { dQosAggPolicerEntry 3 }
            
    dQosAggPolicerCbs OBJECT-TYPE
        SYNTAX          Unsigned32 (0..16384)
        UNITS	        "kbyte"
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION       
            "This object is interpreted within the context of dQosAggPolicerType.
           
            dQosAggPolicerType  dQosAggPolicerCbs
            ==================  ===============================================
            'trTcm'             The burst size for the first token bucket.

            'singleRate'        The burst size for two-color policier. 
                                Or:
                                The committed burst size for srTcm. 
            The measurement unit is in kilobytes.
            The special value of 0 is used to indicate this object is not specified
            and the default value will be used. What's the default value is project-dependent.                               
            "                  	
        ::= { dQosAggPolicerEntry 4 }
        
    dQosAggPolicerSrtcmEbs OBJECT-TYPE
        SYNTAX          Unsigned32 (0..16384)
        UNITS	        "kbyte"
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the excess burst size for srTcm and is 
            meaningless when dQosAggPolicerType is 'trTcm'.                 
            The measurement unit is in kilobytes.     
            The special value of 0 is used to indicate this object is not specified
            and the default value will be used. What's the default value is project-dependent.                                                         
            "                   
        ::= { dQosAggPolicerEntry 5 }

    dQosAggPolicerTrtcmPir OBJECT-TYPE
        SYNTAX          Unsigned32 (0..10240000)
        UNITS           "kbps"
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the peak information rate for the second
            token bucket for the two-rate metering. This object is only 
            meaningful when dQosAggPolicerType is 'trTcm'.
            The measurement unit is in kilobits per second.
            The special value of 0 is used to indicate this object is not specified
            and the default value will be used. What's the default value is project-dependent.
            "
        ::= { dQosAggPolicerEntry 6 }

    dQosAggPolicerTrtcmPbs OBJECT-TYPE
        SYNTAX          Unsigned32 (0..16384)
        UNITS	        "kbyte"
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the burst size for the second token bucket. 
            This object is meaningful only when dQosAggPolicerType is 'trTcm'.
            The measurement unit is in kilobytes.
            The special value of 0 is used to indicate this object is not specified
            and the default value will be used. What's the default value is project-dependent.
            "               
        ::= { dQosAggPolicerEntry 7 }

    dQosAggPolicerConformAction OBJECT-TYPE
        SYNTAX          DlinkQosPoliceActionType
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the action when the packet is in 'green color'.                         
            "
        ::= { dQosAggPolicerEntry 8 }
    
    dQosAggPolicerConformReplaceDscp OBJECT-TYPE
        SYNTAX          Unsigned32 (0..63)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the new DSCP value of the packet when packet
            is in 'green color'.
            This object is meaningful only when dQosAggPolicerConformAction is 'replaceDscp' or 'replaceAll'.
            "
        ::= { dQosAggPolicerEntry 9 }
    
    dQosAggPolicerExceedAction OBJECT-TYPE
        SYNTAX          DlinkQosPoliceActionType
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION    
            "This object is interpreted within the context of dQosAggPolicerType.
            
            dQosAggPolicerType  dQosAggPolExceedAction
            ==================  ===============================================
            'trTcm'             The action to take for those packets that conform
                                to PIR but not to CIR.  

            'singleRate'        The action to take on the packets exceed the rate 
                                limit (or committed burst size).                           
            "            
         ::= { dQosAggPolicerEntry 10 }
    
    dQosAggPolicerExceedReplaceDscp OBJECT-TYPE
        SYNTAX          Unsigned32 (0..63)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the new DSCP value when dQosAggPolExceedAction
            is 'replaceDscp'or 'replaceAll'.
            "
        ::= { dQosAggPolicerEntry 11 }
    
    dQosAggPolicerViolateAction OBJECT-TYPE
        SYNTAX          DlinkQosPoliceActionType
        MAX-ACCESS      read-create
        STATUS  current
        DESCRIPTION
            "This object indicates the action state when the packet is in 'red color'.           
            "
        ::= { dQosAggPolicerEntry 12 }

    dQosAggPolicerViolateReplaceDscp OBJECT-TYPE
        SYNTAX          Unsigned32 (0..63)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the DSCP value of the packet when packet is in 'red color'.
            This object is meaningful only when dQosAggPolicerViolateAction is 'replaceDscp' or 'replaceAll'.
            "
        ::= { dQosAggPolicerEntry 13 }

    dQosAggPolicerColorAware OBJECT-TYPE
        SYNTAX          TruthValue
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates whether the policer is color aware or not.
            "  
        DEFVAL { false }
        ::= { dQosAggPolicerEntry 14 }

    dQosAggPolicerRowStatus OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the status of this entry."
        ::= { dQosAggPolicerEntry 24 }	

    dQosAggPolicerConformReplaceCos OBJECT-TYPE
        SYNTAX          Unsigned32 (0..7)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the new COS value of the packet when packet
            is in 'green color'.
            This object is meaningful only when dQosAggPolicerConformAction is 'replaceCos' or 'replaceAll'.
            "
        ::= { dQosAggPolicerEntry 15 }	

    dQosAggPolicerExceedReplaceCos OBJECT-TYPE
        SYNTAX          Unsigned32 (0..7)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the new COS value when dQosAggPolExceedAction
            is 'replaceCos'or 'replaceAll'.
            "
        ::= { dQosAggPolicerEntry 16 }

    dQosAggPolicerViolateReplaceCos OBJECT-TYPE
        SYNTAX          Unsigned32 (0..7)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the COS value of the packet when packet is in 'red color'.
            This object is meaningful only when dQosAggPolicerViolateAction is 'replaceCos' or 'replaceAll'.
            "
        ::= { dQosAggPolicerEntry 17 }
-- -----------------------------------------------------------------------------     
    dQosPoliceTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DQosPoliceEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This table is used to configure the metering function. 
            Users may set the preferred bandwidth for this rule; once the 
            bandwidth has been exceeded, overflow packets will be either dropped
            or set for a drop precedence, depending on user configuration."
        ::= { dQosPolicyMap 4 }

    dQosPoliceEntry OBJECT-TYPE
        SYNTAX          DQosPoliceEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This entry consists of configurations for the metering policing
            for a traffic class in a policy map."
        INDEX { 
            dQosPolicyMapName, 
            dQosClassMapName
        }
        ::= { dQosPoliceTable 1 }

    DQosPoliceEntry ::=            SEQUENCE {
        dQosPoliceType                  INTEGER,
        dQosPoliceNamedAggPolicer 	    DisplayString,  
        dQosPoliceCir                   Unsigned32,
        dQosPoliceCbs                   Unsigned32,
        dQosPoliceSrtcmEbs              Unsigned32, 
        dQosPoliceTrtcmPir              Unsigned32,
        dQosPoliceTrtcmPbs              Unsigned32,                
        dQosPoliceConformAction         DlinkQosPoliceActionType,
        dQosPoliceConformReplaceDscp    Unsigned32,
        dQosPoliceExceedAction          DlinkQosPoliceActionType,
        dQosPoliceExceedReplaceDscp     Unsigned32,
        dQosPoliceViolateAction         DlinkQosPoliceActionType,
        dQosPoliceViolateReplaceDscp    Unsigned32,        	
        dQosPoliceColorAware            TruthValue,                     
        dQosPoliceRowStatus             RowStatus,
        dQosPoliceConformReplaceCos     Unsigned32,
        dQosPoliceExceedReplaceCos      Unsigned32,
        dQosPoliceViolateReplaceCos     Unsigned32
    }
        
    dQosPoliceType OBJECT-TYPE
        SYNTAX  INTEGER {  
            trTcm(1),
            singleRate(2),
            aggregate(3)
        }
        MAX-ACCESS  read-create
        STATUS  current
        DESCRIPTION
            "This object indicates the type of policer used for a traffic class
            in a policy map.
            This object determines which other objects in the same row are meaningful.
            trTcm - two rate three color marker;
            singleRate - There are two kinds of single rate policers:
                a. single rate three color (srTcm) - if the violate action is specified 
                b. single rate two color - if the violate action is not specified.  
            aggregate - uses a named aggregate policer as the policy. In this case, 
                except index elements, dQosAggPolicer, and dQosPoliceRowStatus, other 
                elements in the same row are not applicable.               
            "
            ::= { dQosPoliceEntry 1 }
             
    dQosPoliceNamedAggPolicer OBJECT-TYPE               
        SYNTAX          DisplayString (SIZE(1..32))
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the name of the aggregate policer to be applied.
            This object is meaningful only when dQosPoliceType is 'aggregate'.  
            "
        ::= { dQosPoliceEntry 2 }
        
    dQosPoliceCir OBJECT-TYPE
        SYNTAX          Unsigned32 (0..10240000)
        UNITS           "kbps"
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION 
            "This object is interpreted within the context of dQosPoliceType.
            The measurement unit is in kilobits per second.
            dQosPoliceType      dQosPoliceCir
            ==================  ===============================================
            'trTcm'             The committed information rate for first token 
                                bucket. 

            'singleRate'        The rate-limit for two-color policier. 
                                Or:
                                The committed information rate for srTcm. 

            'aggregate'         Not applicable
            "                                                                          
        ::= { dQosPoliceEntry 3 }
            
    dQosPoliceCbs OBJECT-TYPE
        SYNTAX          Unsigned32 (0..16384)
        UNITS	        "kbyte"
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION       
            "This object is interpreted within the context of dQosPoliceType.            
            dQosPoliceType      dQosPoliceCbs
            ==================  ===============================================
            'trTcm'             The burst size for the first token bucket.

            'singleRate'        The burst size for two-color policier. 
                                Or:
                                The committed burst size for srTcm.     

            'aggregate'         Not applicable        
            The measurement unit is in kilobytes.
            The special value of 0 is used to indicate this object is not specified
            and the default value will be used. What's the default value is project-dependent.                   
            "                
        ::= { dQosPoliceEntry 4 }
        
    dQosPoliceSrtcmEbs OBJECT-TYPE
        SYNTAX          Unsigned32 (0..16384)
        UNITS	        "kbyte"
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the excess burst size for srTcm and is 
            meaningless when dQosPoliceType is 'trTcm'.                 
            The measurement unit is in kilobytes.     
            The special value of 0 is used to indicate this object is not specified
            and the default value will be used. What's the default value is project-dependent.                                                         
            "  
        ::= { dQosPoliceEntry 5 }
    
    dQosPoliceTrtcmPir OBJECT-TYPE
        SYNTAX          Unsigned32 (0..10240000)
        UNITS           "kbps"
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the peak information rate for the second
            token bucket for the two-rate metering. This object is only 
            meaningful when dQosPoliceType is 'trTcm'.
            The measurement unit is in kilobits per second.
            The special value of 0 is used to indicate this object is not specified
            and the default value will be used. What's the default value is project-dependent. 
            "
        ::= { dQosPoliceEntry 6 }

    dQosPoliceTrtcmPbs OBJECT-TYPE
        SYNTAX          Unsigned32 (0..16384)
        UNITS	        "kbyte"
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the burst size for the second token bucket. 
            This object is meaningful only when dQosPoliceType is 'trTcm'.
            The measurement unit is in kilobytes.
            The special value of 0 is used to indicate this object is not specified
            and the default value will be used. What's the default value is project-dependent. 
            "  
        ::= { dQosPoliceEntry 7 }
   
    dQosPoliceConformAction OBJECT-TYPE
        SYNTAX          DlinkQosPoliceActionType
        MAX-ACCESS      read-create
        STATUS  current
        DESCRIPTION
            "This object indicates the action when the packet is in 'green color'.                           
            "
        ::= { dQosPoliceEntry 8 }

    dQosPoliceConformReplaceDscp OBJECT-TYPE
        SYNTAX          Unsigned32 (0..63)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the new DSCP value for dQosPoliceConformAction
            is 'replaceDscp' or 'replaceAll'."
        ::= { dQosPoliceEntry 9 }
            
    dQosPoliceExceedAction OBJECT-TYPE
        SYNTAX          DlinkQosPoliceActionType
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION       
            "This object is interpreted within the context of dQosPoliceType.
            
            dQosPoliceType      dQosPoliceExceedAction
            ==================  ===============================================
            'trTcm'             The action to take for those packets that conform
                                to PIR but not to CIR.  

            'singleRate'        The action to take on the packets exceed the rate 
                                limit (or committed burst size). 
            'aggregate'         Not applicable
                       
            "        
        ::= { dQosPoliceEntry 10 }

    dQosPoliceExceedReplaceDscp OBJECT-TYPE
        SYNTAX          Unsigned32 (0..63)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the new DSCP value when dQosPoliceExceedAction
            is 'replaceDscp' or 'replaceAll'.
            "
        ::= { dQosPoliceEntry 11 }

    dQosPoliceViolateAction OBJECT-TYPE
        SYNTAX          DlinkQosPoliceActionType
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the action state when the packet is in 'red color'.           
            "
        ::= { dQosPoliceEntry 12 }

    dQosPoliceViolateReplaceDscp OBJECT-TYPE
        SYNTAX          Unsigned32 (0..63)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the new DSCP value when dQosPoliceViolateAction
            is 'replaceDscp' or 'replaceAll'.
            "               
        ::= { dQosPoliceEntry 13 }

    dQosPoliceColorAware OBJECT-TYPE
        SYNTAX          TruthValue           
        MAX-ACCESS  read-create
        STATUS  current
        DESCRIPTION
            "This object indicates whether the policer is color aware or not.
            This object is applied for dQosPoliceType is 'trTcm' or 'singleRate'. 
            "
        ::= { dQosPoliceEntry 14 }    
    
    dQosPoliceRowStatus OBJECT-TYPE
        SYNTAX  RowStatus
        MAX-ACCESS  read-create
        STATUS  current
        DESCRIPTION
            "This object indicates the status of this entry."
        ::= { dQosPoliceEntry 15 }	               

    dQosPoliceConformReplaceCos OBJECT-TYPE
        SYNTAX          Unsigned32 (0..7)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the new COS value for dQosPoliceConformAction
            is 'replaceCos' or 'replaceAll'.
            "
        ::= { dQosPoliceEntry 16 }	

    dQosPoliceExceedReplaceCos OBJECT-TYPE
        SYNTAX          Unsigned32 (0..7)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the new COS value when dQosPoliceExceedAction
            is 'replaceCos' or 'replaceAll'.
            "
        ::= { dQosPoliceEntry 17 }

    dQosPoliceViolateReplaceCos OBJECT-TYPE
        SYNTAX          Unsigned32 (0..7)
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "This object indicates the new COS value when dQosPoliceViolateAction
            is 'replaceCos' or 'replaceAll'.
            "
        ::= { dQosPoliceEntry 18 }
--  ***************************************************************************	
--  Conformance
--  ***************************************************************************			   		
	dQosCompliances OBJECT IDENTIFIER ::= { dQosMIBConformance 1 }
		
	dQosCompliance MODULE-COMPLIANCE
		STATUS current
		DESCRIPTION 
			"The compliance statement for entities which implement the 
			DLINKSW-QOS-MIB."
		MODULE -- this module
		MANDATORY-GROUPS { 
		    dQosPolicyGroup
		}
		
		GROUP       dQosSchedulingGroup 
           DESCRIPTION 
              "This group is required only if QoS scheduling feature
              is implemented by the agent."
		
        GROUP       dQosWrrGroup 
           DESCRIPTION 
              "This group is required only if the configuration for WRR scheduling 
              is supported by the agent."

        GROUP       dQosWdrrGroup 
           DESCRIPTION 
              "This group is required only if the configuration for WDRR scheduling 
              is supported by the agent."

		GROUP       dQosPortBandwidthCtrlGroup 
           DESCRIPTION 
              "This group is required only if port-specific bandwidth control feature is
              implemented by the agent."
				
        GROUP       dQosQueueBandwidthCtrlGroup 
           DESCRIPTION 
              "This group is required only if queue-specific bandwidth control feature is
              implemented by the agent."

        GROUP       dQosAggregatePolicingGroup 
           DESCRIPTION 
              "This group is required only if QoS aggregated policing feature is 
              implemented by the agent."

		GROUP       dQosPolicingGroup 
           DESCRIPTION 
              "This group is required only if QoS policing feature is implemented
              by the agent."

        OBJECT  dQosPoliceType 
        DESCRIPTION
            "It is compliant to support only a subset of policier types."

        GROUP  dQosColorAwarePolicingGroup 
        DESCRIPTION
            "This group is required only if color aware configuration is implemented
            by the agent."


        GROUP       dQosQueuingGroup 
           DESCRIPTION 
              "This group is required only if the configuration for queuing packets 
              is supported by the agent."
        
        GROUP       dQosDscpMutationGroup 
           DESCRIPTION 
              "This group is required only if the configuration for DSCP mutation 
              is supported by the agent."

		::= { dQosCompliances 1 }
		
	dQosGroups OBJECT IDENTIFIER ::= { dQosMIBConformance 2 }
	
	dQosPolicyGroup OBJECT-GROUP
		OBJECTS { 
			dQosClassMapType,
            dQosClassMapRowStaus,
            dQosClassMapCfgMatchType,
            dQosClassMapCfgMatchValue,
            dQosClassMapCfgRowStaus,
            dQosPolicyMapRowStatus,
            dQosPolicyMapCfgSetCosQueue,        
            dQosPolicyMapCfgSetCos,
            dQosPolicyMapCfgSetDscpOnlyIp,
            dQosPolicyMapCfgSetDscp,
            dQosPolicyMapCfgSetPreceOnlyIp,
            dQosPolicyMapCfgSetPrecedence,
            dQosPolicyMapCfgRowStatus,
            dQosServicePolicyDirection,
            dQosServicePolicyName,
            dQosServicePolicyRowStaus
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing QoS policy configuration."
		::= { dQosGroups 1 }
	
	dQosSchedulingGroup OBJECT-GROUP
		OBJECTS { 
		   	dQosSchedulingMode
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing QoS scheduling configuration."
		::= { dQosGroups 2 }

    dQosWrrGroup OBJECT-GROUP
		OBJECTS { 
		   	dQosScheduleWrrWeightValue
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing QoS WRR scheduling configuration."
		::= { dQosGroups 3 }
 
    dQosWdrrGroup OBJECT-GROUP
		OBJECTS { 
		   	dQosScheduleWdrrWeightValue
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing QoS WDRR scheduling configuration."
		::= { dQosGroups 4 }
					
	dQosPortBandwidthCtrlGroup OBJECT-GROUP
		OBJECTS { 
		    dQosBandwidthRxRate,
            dQosBandwidthRxBurst,
            dQosBandwidthTxRate,
            dQosBandwidthTxBurst,
            dQosBandwidthRxRateMode,
            dQosBandwidthTxRateMode
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing bandwidth configuration for ports."
		::= { dQosGroups 5 }

    dQosQueueBandwidthCtrlGroup OBJECT-GROUP
		OBJECTS { 
		    dQosQueueBandwidthMinRate,	
            dQosQueueBandwidthMaxRate,
            dQosQueueBandwidthMinRateMode,
            dQosQueueBandwidthMaxRateMode	
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing bandwidth configuration for queues."
		::= { dQosGroups 6 }
		
	dQosAggregatePolicingGroup OBJECT-GROUP
		OBJECTS { 		    
		    dQosAggPolicerType,
            dQosAggPolicerCir,
            dQosAggPolicerCbs,
            dQosAggPolicerSrtcmEbs,
            dQosAggPolicerTrtcmPir,
            dQosAggPolicerTrtcmPbs,
            dQosAggPolicerConformAction,
            dQosAggPolicerConformReplaceDscp,
            dQosAggPolicerExceedAction,
            dQosAggPolicerExceedReplaceDscp,
            dQosAggPolicerViolateAction,
            dQosAggPolicerViolateReplaceDscp,
            dQosAggPolicerColorAware,
            dQosAggPolicerRowStatus,
            dQosPoliceNamedAggPolicer,
            dQosAggPolicerConformReplaceCos,
            dQosAggPolicerExceedReplaceCos,
            dQosAggPolicerViolateReplaceCos
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing QoS named aggregated policing configuration."
		::= { dQosGroups 7 } 

    dQosPolicingGroup OBJECT-GROUP
		OBJECTS { 		    
		    dQosPoliceType,            
            dQosPoliceCir,
            dQosPoliceCbs,
            dQosPoliceSrtcmEbs,
            dQosPoliceTrtcmPir,
            dQosPoliceTrtcmPbs,
            dQosPoliceConformAction,
            dQosPoliceConformReplaceDscp,
            dQosPoliceExceedAction,
            dQosPoliceExceedReplaceDscp,
            dQosPoliceViolateAction,
            dQosPoliceViolateReplaceDscp,
            dQosPoliceRowStatus,
            dQosDscpMapCtrlColor,
            dQosPoliceConformReplaceCos,
            dQosPoliceExceedReplaceCos,
            dQosPoliceViolateReplaceCos
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing QoS policing configuration."
		::= { dQosGroups 8 } 

     dQosColorAwarePolicingGroup OBJECT-GROUP
		OBJECTS { 		    
		    dQosPoliceColorAware,
            dQosDscpMapCtrlColor,
            dQosCosMapColor            
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing QoS color aware configuration."
		::= { dQosGroups 9 } 


    dQosQueuingGroup OBJECT-GROUP
		OBJECTS { 		    
		   dQosPortIf8021pOverride,
           dQosPortIfTrustMode,
           dQosDscpMapCtrlCos,
           dQosCosToQueueQID
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing configuration regarding how to
            dispatch packets to queues."
		::= { dQosGroups 10 } 

    dQosDscpMutationGroup OBJECT-GROUP
		OBJECTS { 		    
           dQosDscpMutationMapRowStatus,
           dQosDscpMutationNewDscp,
           dQosDscpMutationMapAttachName
		}
		STATUS current
		DESCRIPTION 
			"A collection of objects providing the configuration for DSCP mutation."
		::= { dQosGroups 11 } 
END