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
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
|
-- *****************************************************************
-- BDCOM-QOS-PIB-MIB.my: MIB for QOS Policy
--
-- October 2003
--
-- Copyright (c) 2003 by BDCOM, Inc.
-- All rights reserved.
-- *****************************************************************
--
BDCOM-QOS-PIB-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter64,
IpAddress
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
DisplayString,
MacAddress,
TruthValue
FROM SNMPv2-TC
Unsigned32
FROM SNMPv2-SMI
bdcomPibToMib
FROM BDCOM-SMI
;
bdcomQosPIBMIB MODULE-IDENTITY
LAST-UPDATED "200310160000Z"
ORGANIZATION "BDCOM, Inc."
CONTACT-INFO
" Tel: +86-21-50800666
Postal: No.123,Juli RD,Zhangjiang Hitech Park,
Shanghai Baud Data Communication Corporation Inc,
Shanghai City 201203,
P.R.C "
DESCRIPTION
"The BDCOM QOS Policy PIB for provisioning QOS policy."
REVISION "200310160000Z"
DESCRIPTION
"Initial version of this MIB."
::= { bdcomPibToMib 1 }
-- New textual conventions
--
-- DiffServ Codepoint
--
Dscp ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer that is in the range of the DiffServ codepoint
values."
SYNTAX INTEGER (0..63)
-- Layer 2 CoS
--
QosLayer2Cos ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer that is in the range of the layer 2 CoS values.
This corresponds to the 802.1p and ISL CoS values."
SYNTAX INTEGER (0..7)
-- Supported Queues
--
QueueRange ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer that is limited to the number of queues per
interface supported by the PIB. Limited to 64 which is the
number of codepoints."
SYNTAX INTEGER {
oneQ(1), twoQ(2), threeQ(3), fourQ(4),
eightQ(8), sixteenQ(16), thirtyTwoQ(32), sixtyFourQ(64)
}
-- Supported Thresholds
--
ThresholdSetRange ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer that is limited to the number of threshold sets
per queue supported by the PIB. A threshold set is a
collection of parameters describing queue threshold. The
parameters of a threshold set depend on the drop mechanism the
queue implements. For example, the threshold set for
tail-drop comprises a single parameter, the percentage of
queue size at which dropping occurs. The threshold set for
WRED comprises two parameters; within the range of the two
parameters packets are randomly dropped."
SYNTAX INTEGER {
zeroT(0), oneT(1), twoT(2), fourT(4), eightT(8)
}
-- Percentage for thresholds, etc.
--
Percent ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer that is in the range of a percent value."
SYNTAX INTEGER (0..100)
-- Interface types
--
QosInterfaceQueueType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An enumerated type for all the known interface types. The
interface types are currently limited to a predefined
combination of queues and thresholds such that the product of
queues and thresholds does not exceed 64 (i.e., the total
number of DSCPs."
SYNTAX INTEGER {
oneQ1t(1), oneQ2t(2), oneQ4t(3), oneQ8t(4),
twoQ1t(5), twoQ2t(6), twoQ4t(7), twoQ8t(8),
threeQ1t(9), threeQ2t(10), threeQ4t(11), threeQ8t(12),
fourQ1t(13), fourQ2t(14), fourQ4t(15), fourQ8t(16),
eightQ1t(17), eightQ2t(18), eightQ4t(19), eightQ8t(20),
sixteenQ1t(21), sixteenQ2t(22), sixteenQ4t(23),
sixtyfourQ1t(24), sixtyfourQ2t(25), sixtyfourQ4t(26),
oneP1Q0t(27), oneP1Q4t(28), oneP1Q8t(29), oneP2Q1t(30),
oneP2Q2t(31), oneP3Q1t(32), oneP7Q8t(33)
}
QosInterfaceTypeCapabilities ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An enumeration of interface capabilities. Used by the PDP to
select policies and configuration to push to the PEP."
SYNTAX BITS {
unspecified (0),
-- Classification support
inputL2Classification (1), inputIpClassification (2),
outputL2Classification (3), outputIpClassification (4),
inputPortClassification (19), outputPortClassification (20),
-- Policing support
inputUflowPolicing (5), inputAggregatePolicing (6),
outputUflowPolicing (7), outputAggregatePolicing (8),
policeByMarkingDown (9), policeByDropping (10),
inputUflowShaping (21), inputAggregateShaping (22),
outputUflowShaping (23), outputAggregateShaping (24),
-- Supported scheduling mechanisms
fifo (11), wrr (12), wfq (13), cq (14), pq (15), cbwfq (16),
pqWrr (25), pqCbwfq (26),
-- Supported congestion control mechanisms
tailDrop (17), wred (18)
}
-- Role
--
-- This TC is commented out since it is not actually used in this
-- PIB. Nevertheless, the size and character restrictions must still
-- be enforced
--
-- Role ::= TEXTUAL-CONVENTION
-- STATUS current
-- DESCRIPTION
-- "A display string where valid letters are a-z, A-Z, 0-9,
-- ., - and _. Name can not start with an '_'.
-- SYNTAX OCTET STRING (SIZE (1..31))
-- Role Combination
--
RoleCombination ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A Display string consisting of a set of roles concatenated
with a '+' character where the roles are in lexicographic
order from minimum to maximum."
SYNTAX OCTET STRING (SIZE (0..255))
-- Policy Instance Index
--
PolicyInstanceId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A textual convention for an attribute that is an an
unsigned integer index attribute of class. It is used for
attributes that exist for the purpose of providing an integer
index of an instance.
For any integer index that refers to another policy instance,
that other policy instance must exist. Furthermore, it is an
error to try to delete a policy instance that is referred to by
another instance without first deleting the referring
instance."
SYNTAX Unsigned32
-- Unsigned 64 bit integer
--
Unsigned64 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An unsigned 64 bit integer. We use SYNTAX Counter64 for the
enconding rules."
SYNTAX Counter64
--
-- Object identifier for conformance statements
--
qosPIBConformance OBJECT IDENTIFIER ::= { bdcomQosPIBMIB 1 }
--
-- Device Config.
--
-- This group contains device configuration information. This
-- configuration is either set by management or reflects the physical
-- configuration of the device. This configuration is generally
-- reported to the PDP (i.e., the policy server so that the PDP can
-- determine what policies to download to the PEP (i.e., the device).
qosDeviceConfig OBJECT IDENTIFIER ::= { bdcomQosPIBMIB 2 }
qosDevicePibIncarnationTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosDevicePibIncarnationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This class contains a single policy instance that identifies
the current incarnation of the PIB and the PDP that installed
this incarnation. The instance of this class is reported to
the PDP at client connect time so that the PDP can (attempt
to) ascertain the current state of the PIB."
::= { qosDeviceConfig 1 }
qosDevicePibIncarnationEntry OBJECT-TYPE
SYNTAX QosDevicePibIncarnationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The single policy instance of this class identifies the
current incarnation of the PIB and the PDP that installed
this incarnation."
INDEX { qosDeviceIncarnationId }
::= { qosDevicePibIncarnationTable 1 }
QosDevicePibIncarnationEntry ::= SEQUENCE {
qosDeviceIncarnationId PolicyInstanceId,
qosDevicePdpName DisplayString,
qosDevicePibIncarnation OCTET STRING,
qosDevicePibTtl Unsigned32
}
qosDeviceIncarnationId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosDevicePibIncarnationEntry 1 }
qosDevicePdpName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the PDP that installed the current incarnation of
the PIB into the device. By default it is the zero length
string."
::= { qosDevicePibIncarnationEntry 2 }
qosDevicePibIncarnation OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An octet string to identify the current incarnation. It has
meaning to the PDP that installed the PIB and perhaps its
standby PDPs. By default the empty string."
::= { qosDevicePibIncarnationEntry 3 }
qosDevicePibTtl OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds after a client close or TCP timeout for
which the PEP continues to enforce the policy in the PIB.
After this interval, the PIB is consired expired and the
device no longer enforces the policy installed in the PIB."
::= { qosDevicePibIncarnationEntry 4 }
qosDeviceAttributeTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosDeviceAttributeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The single instance of this class indicates specific
attributes of the device. These include configuration values
such as the configured PDP addresses, the maximum message
size, and specific device capabilities. The latter include
input port-based and output port-based classification and/or
policing, support for flow based policing, aggregate based
policing, traffic shaping capabilities, etc."
::= { qosDeviceConfig 2 }
qosDeviceAttributeEntry OBJECT-TYPE
SYNTAX QosDeviceAttributeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The single instance of this class indicates specific
attributes of the device."
INDEX { qosDeviceAttributeId }
::= { qosDeviceAttributeTable 1 }
QosDeviceAttributeEntry ::= SEQUENCE {
qosDeviceAttributeId PolicyInstanceId,
qosDevicePepDomain DisplayString,
qosDevicePrimaryPdp IpAddress,
qosDeviceSecondaryPdp IpAddress,
qosDeviceMaxMessageSize Unsigned32,
qosDeviceCapabilities BITS
}
qosDeviceAttributeId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosDeviceAttributeEntry 1 }
qosDevicePepDomain OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The QoS domain that this device belongs to. This is
configured locally on the device (perhaps by some management
protocol such as SNMP). By default, it is the zero-length
string."
::= { qosDeviceAttributeEntry 2 }
qosDevicePrimaryPdp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The address of the PDP configured to be the primary PDP for
the device."
::= { qosDeviceAttributeEntry 3 }
qosDeviceSecondaryPdp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The address of the PDP configured to be the secondary PDP for
the device. An address of zero indicates no secondary is
configured."
::= { qosDeviceAttributeEntry 4 }
qosDeviceMaxMessageSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum size message that this PEP is capable of
receiving in bytes. A value of zero means that the maximum
message size is unspecified (but does not mean it is
unlimited). A message greater than this maximum results in a
MessageTooBig error on a 'no commit' REP."
::= { qosDeviceAttributeEntry 5 }
qosDeviceCapabilities OBJECT-TYPE
SYNTAX BITS {
unspecified (0),
-- QoS labels supported
layer2Cos (1), ipPrecedence (2), dscp (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An enumeration of device capabilities. Used by the PDP to
select policies and configuration to push to the PEP."
::= { qosDeviceAttributeEntry 6 }
qosInterfaceTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosInterfaceTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This class describes the interface types of the interfaces
that exist on the device. It includes the queue type, role
combination and capabilities of interfaces. The PEP does not
report which specific interfaces have which characteristics."
::= { qosDeviceConfig 3 }
qosInterfaceTypeEntry OBJECT-TYPE
SYNTAX QosInterfaceTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class describes a role combination for
an interface type of an interface that exists on the device."
INDEX { qosInterfaceTypeId }
::= { qosInterfaceTypeTable 1 }
QosInterfaceTypeEntry ::= SEQUENCE {
qosInterfaceTypeId PolicyInstanceId,
qosInterfaceQueueType QosInterfaceQueueType,
qosInterfaceTypeRoles RoleCombination,
qosInterfaceTypeCapabilities QosInterfaceTypeCapabilities
}
qosInterfaceTypeId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosInterfaceTypeEntry 1 }
qosInterfaceQueueType OBJECT-TYPE
SYNTAX QosInterfaceQueueType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface type in terms of number of queues and
thresholds."
::= { qosInterfaceTypeEntry 2 }
qosInterfaceTypeRoles OBJECT-TYPE
SYNTAX RoleCombination
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A combination of roles on at least one interface of type
qosInterfaceType."
::= { qosInterfaceTypeEntry 3 }
qosInterfaceTypeCapabilities OBJECT-TYPE
SYNTAX QosInterfaceTypeCapabilities
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An enumeration of interface capabilities. Used by the PDP to
select policies and configuration to push to the PEP."
::= { qosInterfaceTypeEntry 4 }
--
-- General Config for the entire domain.
--
-- Table of DiffServ codepoint mappings
-- Maps DSCP to marked-down DSCP, IP precedence and CoS
qosDomainConfig OBJECT IDENTIFIER ::= { bdcomQosPIBMIB 3 }
qosDiffServMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosDiffServMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Maps each DSCP to a marked-down DSCP. Also maps each DSCP to
an IP precedence and QosLayer2Cos. When configured for the
first time, all 64 entries of the table must be
specified. Thereafter, instances may be modified (with a
delete and install in a single decision) but not deleted
unless all instances are deleted."
::= { qosDomainConfig 1 }
qosDiffServMappingEntry OBJECT-TYPE
SYNTAX QosDiffServMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class represents mappings from a DSCP."
INDEX { qosDscp }
::= { qosDiffServMappingTable 1 }
QosDiffServMappingEntry ::= SEQUENCE {
qosDscp Dscp,
qosMarkedDscp Dscp,
qosL2Cos QosLayer2Cos
}
qosDscp OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A DSCP for which this entry contains mappings."
::= { qosDiffServMappingEntry 1 }
qosMarkedDscp OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DSCP to use instead of the qosDscp when the packet is out
of profile and hence marked as such."
::= { qosDiffServMappingEntry 2 }
qosL2Cos OBJECT-TYPE
SYNTAX QosLayer2Cos
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The L2 CoS value to use when mapping this DSCP to layer 2
CoS."
::= { qosDiffServMappingEntry 3 }
-- Table of Layer 2 CoS to DSCP mappings
--
qosCosToDscpTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosCosToDscpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Maps each of eight CoS values to a DSCP. When configured for
the first time, all 8 entries of the table must be
specified. Thereafter, instances may be modified (with a
delete and install in a single decision) but not deleted
unless all instances are deleted."
::= { qosDomainConfig 2 }
qosCosToDscpEntry OBJECT-TYPE
SYNTAX QosCosToDscpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class maps a CoS value to a DSCP."
INDEX { qosCosToDscpCos }
::= { qosCosToDscpTable 1 }
QosCosToDscpEntry ::= SEQUENCE {
qosCosToDscpCos QosLayer2Cos,
qosCosToDscpDscp Dscp
}
qosCosToDscpCos OBJECT-TYPE
SYNTAX QosLayer2Cos
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The L2 CoS value that is being mapped."
::= { qosCosToDscpEntry 1 }
qosCosToDscpDscp OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DSCP value to use when mapping the L2 CoS to a DSCP."
::= { qosCosToDscpEntry 2 }
--
-- The Unmatched Policy Table
--
-- This group specifies the policy to apply to an interface for a
-- given role combination where no other policy matches. More
-- specifically, the unmatched policy is what is applied to non-IP
-- packets for which there is no MAC classification, or what is
-- applied to IP packets that do not match any ACE in any ACL applied
-- to the interface.
qosUnmatchedPolicy OBJECT IDENTIFIER ::= { bdcomQosPIBMIB 4 }
qosUnmatchedPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosUnmatchedPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A policy class that specifies what QoS to apply to a packet
that does not match any other policy configured for this role
combination for a particular direction of traffic."
::= { qosUnmatchedPolicy 1 }
qosUnmatchedPolicyEntry OBJECT-TYPE
SYNTAX QosUnmatchedPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies the unmatched policy
for a particular role combination for incoming or outgoing
traffic."
INDEX { qosUnmatchedPolicyId }
::= { qosUnmatchedPolicyTable 1 }
QosUnmatchedPolicyEntry ::= SEQUENCE {
qosUnmatchedPolicyId PolicyInstanceId,
qosUnmatchedPolicyRole RoleCombination,
qosUnmatchedPolicyDirection INTEGER,
qosUnmatchedPolicyDscp Dscp,
qosUnmatchedPolicyDscpTrusted TruthValue,
qosUnmatchPolMicroFlowPolicerId PolicyInstanceId,
qosUnmatchedPolicyAggregateId PolicyInstanceId
}
qosUnmatchedPolicyId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosUnmatchedPolicyEntry 1 }
qosUnmatchedPolicyRole OBJECT-TYPE
SYNTAX RoleCombination
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Role combination for which this instance applies."
::= { qosUnmatchedPolicyEntry 2 }
qosUnmatchedPolicyDirection OBJECT-TYPE
SYNTAX INTEGER { in(0), out(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The direction of packet flow at the interface in question to
which this instance applies."
::= { qosUnmatchedPolicyEntry 3 }
qosUnmatchedPolicyDscp OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DSCP to classify the unmatched packet with. This must be
specified even if qosUnmatchedPolicyDscpTrusted is true."
::= { qosUnmatchedPolicyEntry 4 }
qosUnmatchedPolicyDscpTrusted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this attribute is true, then the Dscp associated with the
packet is trusted, i.e., it is assumed to have already been
set. In this case, the Dscp is not rewritten with
qosUnmatchedPolicyDscp (qosUnmatchedPolicyDscp is ignored)
unless this is a non-IP packet and arrives untagged. The
packet is still policed as part of its micro flow and its
aggregate flow.
When a trusted action is applied to an input interface, the
Dscp (for an IP packet) or CoS (for a non-IP packet)
associated with the packet is the one contained in the packet.
When a trusted action is applied to an output interface, the
Dscp associated with the packet is the one that is the result
of the input classification and policing."
::= { qosUnmatchedPolicyEntry 5 }
qosUnmatchPolMicroFlowPolicerId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index identifying the instance of policer to apply to
unmatched packets. It must correspond to the integer index of
an instance of class qosPolicerTable or be zero. If zero, the
microflow is not policed."
::= { qosUnmatchedPolicyEntry 6 }
qosUnmatchedPolicyAggregateId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index identifying the aggregate that the packet belongs
to. It must correspond to the integer index of an instance of
class qosAggregateTable or be zero. If zero, the microflow
does not belong to any aggregate and is not policed as part of
any aggregate."
::= { qosUnmatchedPolicyEntry 7 }
--
-- The Policer Group
--
-- This group specifies policer parameters that can then be used by
-- other groups such as the IP ACL Actions, or the unmatched policy.
-- This group also defines aggregates that flows can then be assigned
-- to.
qosPolicer OBJECT IDENTIFIER ::= { bdcomQosPIBMIB 5 }
-- The Policer Definition Table
--
qosPolicerTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosPolicerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A class specifying policing parameters for both microflows
and aggregate flows. This table is designed for policing
according to a token bucket scheme where an average rate and
burst size is specified."
::= { qosPolicer 1 }
qosPolicerEntry OBJECT-TYPE
SYNTAX QosPolicerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies a set of policing
parameters."
INDEX { qosPolicerId }
::= { qosPolicerTable 1 }
QosPolicerEntry ::= SEQUENCE {
qosPolicerId PolicyInstanceId,
qosPolicerRate Unsigned64,
qosPolicerNormalBurst Unsigned32,
qosPolicerExcessBurst Unsigned32,
qosPolicerAction INTEGER
}
qosPolicerId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosPolicerEntry 1 }
qosPolicerRate OBJECT-TYPE
SYNTAX Unsigned64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The token rate. It is specified in units of bit/s. A rate of
zero means that all packets will be out of profile. If the
qosPolicerAction is set to drop then this effectively
denies any service to packets policed by this policer."
::= { qosPolicerEntry 2 }
qosPolicerNormalBurst OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The normal size of a burst in terms of bits."
::= { qosPolicerEntry 3 }
qosPolicerExcessBurst OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The excess size of a burst in terms of bits."
::= { qosPolicerEntry 4 }
qosPolicerAction OBJECT-TYPE
SYNTAX INTEGER { drop(0), mark(1), shape(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of how to handle out of profile packets. When
the shape action is chosen then traffic is shaped to the rate
specified by qosPolicerRate."
::= { qosPolicerEntry 5 }
-- The Aggregate Table
--
qosAggregateTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosAggregateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Instances of this class identify aggregate flows and the
policer to apply to each."
::= { qosPolicer 2 }
qosAggregateEntry OBJECT-TYPE
SYNTAX QosAggregateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies the policer to apply to
an aggregate flow."
INDEX { qosAggregateId }
::= { qosAggregateTable 1 }
QosAggregateEntry ::= SEQUENCE {
qosAggregateId PolicyInstanceId,
qosAggregatePolicerId PolicyInstanceId
}
qosAggregateId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosAggregateEntry 1 }
qosAggregatePolicerId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index identifying the instance of policer to apply to the
aggregate. It must correspond to the integer index of an
instance of class qosPolicerTable."
::= { qosAggregateEntry 2 }
--
-- MAC DA Classification Group
--
-- This group determines the CoS to assign to a MAC frame on the
-- basis of the destination MAC address. There is no provision for
-- policing or rate limiting at layer 2.
qosMacQos OBJECT IDENTIFIER ::= { bdcomQosPIBMIB 6 }
qosMacClassificationTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosMacClassificationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A class of MAC/Vlan tuples and their associated CoS values."
::= { qosMacQos 1 }
qosMacClassificationEntry OBJECT-TYPE
SYNTAX QosMacClassificationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies the mapping of a VLAN
and a MAC address to a CoS value."
INDEX { qosMacClassificationId }
::= { qosMacClassificationTable 1 }
QosMacClassificationEntry ::= SEQUENCE {
qosMacClassificationId PolicyInstanceId,
qosDstMacVlan INTEGER,
qosDstMacAddress MacAddress,
qosDstMacCos QosLayer2Cos
}
qosMacClassificationId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosMacClassificationEntry 1 }
qosDstMacVlan OBJECT-TYPE
SYNTAX INTEGER (1..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN of the destination MAC address of the L2 frame."
::= { qosMacClassificationEntry 2 }
qosDstMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination MAC address of the L2 frame."
::= { qosMacClassificationEntry 3 }
qosDstMacCos OBJECT-TYPE
SYNTAX QosLayer2Cos
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CoS to assign the packet with the associated MAC/VLAN
tuple. Note that this CoS is overridden by the policies to
classify the frame at layer 3 if there are any."
::= { qosMacClassificationEntry 4 }
--
-- The IP Classification and Policing Group
--
qosIpQos OBJECT IDENTIFIER ::= { bdcomQosPIBMIB 7 }
-- The ACE Table
--
qosIpAceTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosIpAceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ACE definitions."
::= { qosIpQos 1 }
qosIpAceEntry OBJECT-TYPE
SYNTAX QosIpAceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies an ACE."
INDEX { qosIpAceId }
::= { qosIpAceTable 1 }
QosIpAceEntry ::= SEQUENCE {
qosIpAceId PolicyInstanceId,
qosIpAceDstAddr IpAddress,
qosIpAceDstAddrMask IpAddress,
qosIpAceSrcAddr IpAddress,
qosIpAceSrcAddrMask IpAddress,
qosIpAceDscpMin Dscp,
qosIpAceDscpMax Dscp,
qosIpAceProtocol INTEGER,
qosIpAceDstL4PortMin INTEGER,
qosIpAceDstL4PortMax INTEGER,
qosIpAceSrcL4PortMin INTEGER,
qosIpAceSrcL4PortMax INTEGER,
qosIpAcePermit TruthValue
}
qosIpAceId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosIpAceEntry 1 }
qosIpAceDstAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address to match against the packet's destination IP
address."
::= { qosIpAceEntry 2 }
qosIpAceDstAddrMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A mask for the matching of the destination IP address."
::= { qosIpAceEntry 3 }
qosIpAceSrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address to match against the packet's source IP
address."
::= { qosIpAceEntry 4 }
qosIpAceSrcAddrMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A mask for the matching of the source IP address."
::= { qosIpAceEntry 5 }
qosIpAceDscpMin OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum value that the DSCP in the packet can have and
match this ACE."
::= { qosIpAceEntry 6 }
qosIpAceDscpMax OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum value that the DSCP in the packet can have and
match this ACE."
::= { qosIpAceEntry 7 }
qosIpAceProtocol OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP protocol to match against the packet's protocol.
A value of zero means match all."
::= { qosIpAceEntry 8 }
qosIpAceDstL4PortMin OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum value that the packet's layer 4 dest port number
can have and match this ACE."
::= { qosIpAceEntry 9 }
qosIpAceDstL4PortMax OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum value that the packet's layer 4 dest port number
can have and match this ACE."
::= { qosIpAceEntry 10 }
qosIpAceSrcL4PortMin OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum value that the packet's layer 4 source port
number can have and match this ACE."
::= { qosIpAceEntry 11 }
qosIpAceSrcL4PortMax OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum value that the packet's layer 4 source port
number can have and match this ACE."
::= { qosIpAceEntry 12 }
qosIpAcePermit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the packet matches this ACE and the value of this attribute
is true, then the matching process terminates and the QoS
associated with this ACE (indirectly through the ACL) is
applied to the packet. If the value of this attribute is false,
then no more ACEs in this ACL are compared to this packet and
matching continues with the first ACE of the next ACL."
::= { qosIpAceEntry 13 }
-- The ACL Definition Table
--
qosIpAclDefinitionTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosIpAclDefinitionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A class that defines a set of ACLs each being an ordered list
of ACEs."
::= { qosIpQos 2 }
qosIpAclDefinitionEntry OBJECT-TYPE
SYNTAX QosIpAclDefinitionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies an ACE in an ACL and its
order with respect to other ACEs in the same ACL."
INDEX { qosIpAclDefinitionId }
::= { qosIpAclDefinitionTable 1 }
QosIpAclDefinitionEntry ::= SEQUENCE {
qosIpAclDefinitionId PolicyInstanceId,
qosIpAclId PolicyInstanceId,
qosIpAceOrder Unsigned32,
qosIpAclDefAceId PolicyInstanceId
}
qosIpAclDefinitionId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosIpAclDefinitionEntry 1 }
qosIpAclId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index for this ACL. There will be one instance of
policy class qosIpAclDefinition with this integer index for
each ACE in the ACL per role combination."
::= { qosIpAclDefinitionEntry 2 }
qosIpAceOrder OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer that determines the position of this ACE in the ACL.
An ACE with a given order is positioned in the access contol
list before one with a higher order."
::= { qosIpAclDefinitionEntry 3 }
qosIpAclDefAceId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute specifies the ACE in the qosIpAceTable that is
in the ACL specified by qosIpAclId at the position specified
by qosIpAceOrder."
::= { qosIpAclDefinitionEntry 4 }
-- The ACL Action Table
--
qosIpAclActionTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosIpAclActionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A class that applies a set of ACLs to interfaces specifying,
for each interface the order of the ACL with respect to other
ACLs applied to the same interface and, for each ACL the
action to take for a packet that matches a permit ACE in that
ACL. Interfaces are specified abstractly in terms of
interface role combinations."
::= { qosIpQos 3 }
qosIpAclActionEntry OBJECT-TYPE
SYNTAX QosIpAclActionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class applies an ACL to traffic in a
particular direction on an interface with a particular role
combination, and specifies the action for packets which match
the ACL."
INDEX { qosIpAclActionId }
::= { qosIpAclActionTable 1 }
QosIpAclActionEntry ::= SEQUENCE {
qosIpAclActionId PolicyInstanceId,
qosIpAclActAclId PolicyInstanceId,
qosIpAclInterfaceRoles RoleCombination,
qosIpAclInterfaceDirection INTEGER,
qosIpAclOrder Unsigned32,
qosIpAclDscp Dscp,
qosIpAclDscpTrusted TruthValue,
qosIpAclMicroFlowPolicerId PolicyInstanceId,
qosIpAclAggregateId PolicyInstanceId
}
qosIpAclActionId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosIpAclActionEntry 1 }
qosIpAclActAclId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ACL associated with this action."
::= { qosIpAclActionEntry 2 }
qosIpAclInterfaceRoles OBJECT-TYPE
SYNTAX RoleCombination
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interfaces to which this ACL applies specified in terms
of a set of roles."
::= { qosIpAclActionEntry 3 }
qosIpAclInterfaceDirection OBJECT-TYPE
SYNTAX INTEGER { in(0), out(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The direction of packet flow at the interface in question to
which this ACL applies."
::= { qosIpAclActionEntry 4 }
qosIpAclOrder OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer that determines the order of this ACL in the list
of ACLs applied to interfaces of the specified role
combination. An ACL with a given order is positioned in the
list before one with a higher order."
::= { qosIpAclActionEntry 5 }
qosIpAclDscp OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DSCP to classify the packet with in the event that the
packet matches an ACE in this ACL and the ACE is a permit."
::= { qosIpAclActionEntry 6 }
qosIpAclDscpTrusted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this attribute is true, then the Dscp associated with
the packet is trusted, i.e., it is assumed to have already
been set. In this case, the Dscp is not rewritten with
qosIpAclDscp (qosIpAclDscp is ignored). The packet is still
policed as part of its micro flow and its aggregate flow.
When a trusted action is applied to an input interface, the
Dscp associated with the packet is the one contained in the
packet. When a trusted action is applied to an output
interface, the Dscp associated with the packet is the one that
is the result of the input classification and policing."
::= { qosIpAclActionEntry 7 }
qosIpAclMicroFlowPolicerId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index identifying the instance of policer to apply to the
microflow. It must correspond to the integer index of an
instance of class qosPolicerTableor be zero. If zero, the
microflow is not policed."
::= { qosIpAclActionEntry 8 }
qosIpAclAggregateId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An index identifying the aggregate that the packet belongs
to. It must correspond to the integer index of an instance of
class qosAggregateTable or be zero. If zero, the microflow
does not belong to any aggregate and is not policed as part of
any aggregate."
::= { qosIpAclActionEntry 9 }
--
-- QoS Interface Group
--
-- This group specifies the configuration of the various interface
-- types including the setting of thresholds, queueing parameters,
-- mapping of DSCPs to queues and thresholds, etc.
qosIfParameters OBJECT IDENTIFIER ::= { bdcomQosPIBMIB 8 }
-- Table of scheduling discipline preferences
--
qosIfSchedulingPreferencesTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosIfSchedulingPreferenceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This class specifies the scheduling preference an interface
chooses if it supports multiple scheduling types. Higher
values are preferred over lower values."
::= { qosIfParameters 1 }
qosIfSchedulingPreferenceEntry OBJECT-TYPE
SYNTAX QosIfSchedulingPreferenceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies a scheduling preference
for a queue-type on an interface with a particular role
combination."
INDEX { qosIfSchedulingPreferenceId }
::= { qosIfSchedulingPreferencesTable 1 }
QosIfSchedulingPreferenceEntry ::= SEQUENCE {
qosIfSchedulingPreferenceId PolicyInstanceId,
qosIfSchedulingRoles RoleCombination,
qosIfSchedulingPreference INTEGER,
qosIfSchedulingDiscipline INTEGER,
qosIfSchedulingQueueType QosInterfaceQueueType
}
qosIfSchedulingPreferenceId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosIfSchedulingPreferenceEntry 1 }
qosIfSchedulingRoles OBJECT-TYPE
SYNTAX RoleCombination
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The combination of roles the interface must have for this
policy instance to apply to that interface."
::= { qosIfSchedulingPreferenceEntry 2 }
qosIfSchedulingPreference OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The preference to use this scheduling discipline and queue
type. A higher value means a higher preference. If two
disciplines have the same preference the choice is a local
decision."
::= { qosIfSchedulingPreferenceEntry 3 }
qosIfSchedulingDiscipline OBJECT-TYPE
SYNTAX INTEGER {
weightedFairQueueing (1),
weightedRoundRobin (2),
customQueueing (3),
priorityQueueing (4),
classBasedWFQ (5),
fifo (6),
pqWrr (7),
pqCbwfq (8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An enumerate type for all the known scheduling disciplines."
::= { qosIfSchedulingPreferenceEntry 4 }
qosIfSchedulingQueueType OBJECT-TYPE
SYNTAX QosInterfaceQueueType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The queue type of this preference."
::= { qosIfSchedulingPreferenceEntry 5 }
-- Table of drop mechanism preferences
--
qosIfDropPreferenceTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosIfDropPreferenceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This class specifies the preference of the drop mechanism an
interface chooses if it supports multiple drop mechanisms.
Higher values are preferred over lower values."
::= { qosIfParameters 2 }
qosIfDropPreferenceEntry OBJECT-TYPE
SYNTAX QosIfDropPreferenceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies a drop preference for
a drop mechanism on an interface with a particular role
combination."
INDEX { qosIfDropPreferenceId }
::= { qosIfDropPreferenceTable 1 }
QosIfDropPreferenceEntry ::= SEQUENCE {
qosIfDropPreferenceId PolicyInstanceId,
qosIfDropRoles RoleCombination,
qosIfDropPreference INTEGER,
qosIfDropDiscipline INTEGER
}
qosIfDropPreferenceId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosIfDropPreferenceEntry 1 }
qosIfDropRoles OBJECT-TYPE
SYNTAX RoleCombination
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The combination of roles the interface must have for this
policy instance to apply to that interface."
::= { qosIfDropPreferenceEntry 2 }
qosIfDropPreference OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The preference to use this drop mechanism. A higher value
means a higher preference. If two mechanisms have the same
preference the choice is a local decision."
::= { qosIfDropPreferenceEntry 3 }
qosIfDropDiscipline OBJECT-TYPE
SYNTAX INTEGER {
qosIfDropWRED (1),
qosIfDropTailDrop (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An enumerate type for all the known drop mechanisms."
::= { qosIfDropPreferenceEntry 4 }
-- The Assignment of DSCPs to queues and thresholds for each interface
-- type.
--
qosIfDscpAssignmentTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosIfDscpAssignmentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The assignment of each DSCP to a queue and threshold for each
interface queue type."
::= { qosIfParameters 3 }
qosIfDscpAssignmentEntry OBJECT-TYPE
SYNTAX QosIfDscpAssignmentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies the queue and threshold
set for a packet with a particular DSCP on an interface of
a particular type with a particular role combination."
INDEX { qosIfDscpAssignmentId }
::= { qosIfDscpAssignmentTable 1 }
QosIfDscpAssignmentEntry ::= SEQUENCE {
qosIfDscpAssignmentId PolicyInstanceId,
qosIfDscpRoles RoleCombination,
qosIfQueueType QosInterfaceQueueType,
qosIfDscp Dscp,
qosIfQueue INTEGER,
qosIfThresholdSet INTEGER
}
qosIfDscpAssignmentId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosIfDscpAssignmentEntry 1 }
qosIfDscpRoles OBJECT-TYPE
SYNTAX RoleCombination
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The role combination the interface must be configured with."
::= { qosIfDscpAssignmentEntry 2 }
qosIfQueueType OBJECT-TYPE
SYNTAX QosInterfaceQueueType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface queue type to which this row applies."
::= { qosIfDscpAssignmentEntry 3 }
qosIfDscp OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DSCP to which this row applies."
::= { qosIfDscpAssignmentEntry 4 }
qosIfQueue OBJECT-TYPE
SYNTAX INTEGER (1..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The queue to which the DSCP applies for the given interface
type."
::= { qosIfDscpAssignmentEntry 5 }
qosIfThresholdSet OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The threshold set of the specified queue to which the DSCP
applies for the given interface type."
::= { qosIfDscpAssignmentEntry 6 }
-- The configuration of RED thresholds
--
qosIfRedTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosIfRedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A class of lower and upper values for each threshold set in a
queue supporting WRED. If the size of the queue for a given
threshold is below the lower value then packets assigned to
that threshold are always accepted into the queue. If the
size of the queue is above upper value then packets are always
dropped. If the size of the queue is between the lower and
the upper then packets are randomly dropped."
::= { qosIfParameters 4 }
qosIfRedEntry OBJECT-TYPE
SYNTAX QosIfRedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies threshold limits for a
particular RED threshold of a given threshold set on an
interface and with a particular role combination."
INDEX { qosIfRedId }
::= { qosIfRedTable 1 }
QosIfRedEntry ::= SEQUENCE {
qosIfRedId PolicyInstanceId,
qosIfRedRoles RoleCombination,
qosIfRedNumThresholdSets ThresholdSetRange,
qosIfRedThresholdSet INTEGER,
qosIfRedThresholdSetLower Percent,
qosIfRedThresholdSetUpper Percent
}
qosIfRedId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosIfRedEntry 1 }
qosIfRedRoles OBJECT-TYPE
SYNTAX RoleCombination
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The role combination the interface must be configured with."
::= { qosIfRedEntry 2 }
qosIfRedNumThresholdSets OBJECT-TYPE
SYNTAX ThresholdSetRange
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The values in this entry apply only to queues with the number
of thresholds specified by this attribute."
::= { qosIfRedEntry 3 }
qosIfRedThresholdSet OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The threshold set to which the lower and upper values apply.
It must be in the range 1 through qosIfRedNumThresholdSets.
There must be exactly one PRI for each value in this range."
::= { qosIfRedEntry 4 }
qosIfRedThresholdSetLower OBJECT-TYPE
SYNTAX Percent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The threshold value below which no packets are dropped."
::= { qosIfRedEntry 5 }
qosIfRedThresholdSetUpper OBJECT-TYPE
SYNTAX Percent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The threshold value above which all packets are dropped."
::= { qosIfRedEntry 6 }
-- The configuration of tail drop thresholds
--
qosIfTailDropTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosIfTailDropEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A class for threshold sets in a queue supporting tail drop.
If the size of the queue for a given threshold set is at or
below the specified value then packets assigned to that
threshold set are always accepted into the queue. If the size
of the queue is above the specified value then packets are
always dropped."
::= { qosIfParameters 5 }
qosIfTailDropEntry OBJECT-TYPE
SYNTAX QosIfTailDropEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies the queue depth for a
particular tail-drop threshold set on an interface with a
particular role combination."
INDEX { qosIfTailDropId }
::= { qosIfTailDropTable 1 }
QosIfTailDropEntry ::= SEQUENCE {
qosIfTailDropId PolicyInstanceId,
qosIfTailDropRoles RoleCombination,
qosIfTailDropNumThresholdSets ThresholdSetRange,
qosIfTailDropThresholdSet INTEGER,
qosIfTailDropThresholdSetValue Percent
}
qosIfTailDropId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosIfTailDropEntry 1 }
qosIfTailDropRoles OBJECT-TYPE
SYNTAX RoleCombination
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The role combination the interface must be configured with."
::= { qosIfTailDropEntry 2 }
qosIfTailDropNumThresholdSets OBJECT-TYPE
SYNTAX ThresholdSetRange
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value in this entry applies only to queues with the
number of thresholds specified by this attribute."
::= { qosIfTailDropEntry 3 }
qosIfTailDropThresholdSet OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The threshold set to which the threshold value applies"
::= { qosIfTailDropEntry 4 }
qosIfTailDropThresholdSetValue OBJECT-TYPE
SYNTAX Percent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The threshold value above which packets are dropped."
::= { qosIfTailDropEntry 5 }
-- Weights for interfaces that support WRR, WFQ, CBWFQ, etc.
--
qosIfWeightsTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosIfWeightsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A class of scheduling weights for each queue of an interface
that supports weighted round robin scheduling or a mix of
priority queueing and weighted round robin. For a queue with
N priority queues, the N highest queue numbers are the
priority queues with the highest queue number having the
highest priority. WRR is applied to the non-priority queues."
::= { qosIfParameters 6 }
qosIfWeightsEntry OBJECT-TYPE
SYNTAX QosIfWeightsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An instance of this class specifies the scheduling weight for
a particular queue of an interface with a particular number
of queues and with a particular role combination."
INDEX { qosIfWeightsId }
::= { qosIfWeightsTable 1 }
QosIfWeightsEntry ::= SEQUENCE {
qosIfWeightsId PolicyInstanceId,
qosIfWeightsRoles RoleCombination,
qosIfWeightsNumQueues QueueRange,
qosIfWeightsQueue INTEGER,
qosIfWeightsDrainSize Unsigned32,
qosIfWeightsQueueSize Unsigned32
}
qosIfWeightsId OBJECT-TYPE
SYNTAX PolicyInstanceId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An integer index to identify the instance of the policy class."
::= { qosIfWeightsEntry 1 }
qosIfWeightsRoles OBJECT-TYPE
SYNTAX RoleCombination
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The role combination the interface must be configured with."
::= { qosIfWeightsEntry 2 }
qosIfWeightsNumQueues OBJECT-TYPE
SYNTAX QueueRange
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the weight in this instance applies only to
interfaces with the number of queues specified by this
attribute."
::= { qosIfWeightsEntry 3 }
qosIfWeightsQueue OBJECT-TYPE
SYNTAX INTEGER (1..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The queue to which the weight applies."
::= { qosIfWeightsEntry 4 }
qosIfWeightsDrainSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of bytes that may be drained from the
queue in one cycle. The percentage of the bandwith allocated
to this queue can be calculated from this attribute and the
sum of the drain sizes of all the non-priority queues of the
interface."
::= { qosIfWeightsEntry 5 }
qosIfWeightsQueueSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the queue in bytes. Some devices set queue size
in terms of packets. These devices must calculate the queue
size in packets by assuming an average packet size suitable
for the particular interface.
Some devices have a fixed size buffer to be shared among all
queues. These devices must allocate a fraction of the
total buffer space to this queue calculated as the the ratio
of the queue size to the sum of the queue sizes for the
interface."
::= { qosIfWeightsEntry 6 }
qosPIBCompliances OBJECT IDENTIFIER ::= { qosPIBConformance 1 }
qosPIBGroups OBJECT IDENTIFIER ::= { qosPIBConformance 2 }
-- Compliance
qosPIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the QOS Policy Derived MIB."
MODULE
MANDATORY-GROUPS {
qosDevicePibIncarnationTableGroup,
qosDeviceAttributeTableGroup,
qosInterfaceTypeTableGroup
}
::= { qosPIBCompliances 1 }
qosDevicePibIncarnationTableGroup OBJECT-GROUP
OBJECTS {
qosDevicePdpName,
qosDevicePibIncarnation,
qosDevicePibTtl
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 1 }
qosDeviceAttributeTableGroup OBJECT-GROUP
OBJECTS {
qosDevicePepDomain,
qosDevicePrimaryPdp,
qosDeviceSecondaryPdp,
qosDeviceMaxMessageSize,
qosDeviceCapabilities
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 2 }
qosInterfaceTypeTableGroup OBJECT-GROUP
OBJECTS {
qosInterfaceQueueType,
qosInterfaceTypeRoles,
qosInterfaceTypeCapabilities
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 3 }
qosDiffServMappingTableGroup OBJECT-GROUP
OBJECTS {
qosMarkedDscp,
qosL2Cos
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 4 }
qosCosToDscpTableGroup OBJECT-GROUP
OBJECTS {
qosCosToDscpDscp
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 5 }
qosUnmatchedPolicyTableGroup OBJECT-GROUP
OBJECTS {
qosUnmatchedPolicyRole,
qosUnmatchedPolicyDirection,
qosUnmatchedPolicyDscp,
qosUnmatchedPolicyDscpTrusted,
qosUnmatchPolMicroFlowPolicerId,
qosUnmatchedPolicyAggregateId
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 6 }
qosPolicerTableGroup OBJECT-GROUP
OBJECTS {
qosPolicerRate,
qosPolicerNormalBurst,
qosPolicerExcessBurst,
qosPolicerAction
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 7 }
qosAggregateTableGroup OBJECT-GROUP
OBJECTS {
qosAggregatePolicerId
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 8 }
qosMacClassificationTableGroup OBJECT-GROUP
OBJECTS {
qosDstMacVlan,
qosDstMacAddress,
qosDstMacCos
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 9 }
qosIpAceTableGroup OBJECT-GROUP
OBJECTS {
qosIpAceDstAddr,
qosIpAceDstAddrMask,
qosIpAceSrcAddr,
qosIpAceSrcAddrMask,
qosIpAceDscpMin,
qosIpAceDscpMax,
qosIpAceProtocol,
qosIpAceDstL4PortMin,
qosIpAceDstL4PortMax,
qosIpAceSrcL4PortMin,
qosIpAceSrcL4PortMax,
qosIpAcePermit
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 10 }
qosIpAclDefinitionTableGroup OBJECT-GROUP
OBJECTS {
qosIpAclId,
qosIpAceOrder,
qosIpAclDefAceId
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 11 }
qosIpAclActionTableGroup OBJECT-GROUP
OBJECTS {
qosIpAclActAclId,
qosIpAclInterfaceRoles,
qosIpAclInterfaceDirection,
qosIpAclOrder,
qosIpAclDscp,
qosIpAclDscpTrusted,
qosIpAclMicroFlowPolicerId,
qosIpAclAggregateId
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 12 }
qosIfSchedulingPreferencesTableGroup OBJECT-GROUP
OBJECTS {
qosIfSchedulingRoles,
qosIfSchedulingPreference,
qosIfSchedulingDiscipline,
qosIfSchedulingQueueType
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 13 }
qosIfDropPreferenceTableGroup OBJECT-GROUP
OBJECTS {
qosIfDropRoles,
qosIfDropPreference,
qosIfDropDiscipline
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 14 }
qosIfDscpAssignmentTableGroup OBJECT-GROUP
OBJECTS {
qosIfDscpRoles,
qosIfQueueType,
qosIfDscp,
qosIfQueue,
qosIfThresholdSet
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 15 }
qosIfRedTableGroup OBJECT-GROUP
OBJECTS {
qosIfRedRoles,
qosIfRedNumThresholdSets,
qosIfRedThresholdSet,
qosIfRedThresholdSetLower,
qosIfRedThresholdSetUpper
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 16 }
qosIfTailDropTableGroup OBJECT-GROUP
OBJECTS {
qosIfTailDropRoles,
qosIfTailDropNumThresholdSets,
qosIfTailDropThresholdSet,
qosIfTailDropThresholdSetValue
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 17 }
qosIfWeightsTableGroup OBJECT-GROUP
OBJECTS {
qosIfWeightsRoles,
qosIfWeightsNumQueues,
qosIfWeightsQueue,
qosIfWeightsDrainSize,
qosIfWeightsQueueSize
}
STATUS current
DESCRIPTION
""
::= { qosPIBGroups 18 }
END
|