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
|
-- ==================================================================
-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: HUAWEI Private MIB
-- Reference:
-- Version: V2.03
-- History: V1.0
-- <author>, <date>, <contents>
-- qiyanqing, 2007-05-14, publish
-- ==================================================================
-- ==================================================================
--
-- Variables and types be imported
--
-- ==================================================================
HUAWEI-TUNNEL-TE-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
InterfaceIndex
FROM IF-MIB
MplsIndexType
FROM MPLS-LSR-STD-MIB
MplsTunnelIndex, MplsTunnelInstanceIndex, MplsExtendedTunnelId
FROM MPLS-TC-STD-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
OBJECT-GROUP, NOTIFICATION-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
Integer32, Unsigned32, Counter32, Counter64, BITS, OBJECT-TYPE,
MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
TruthValue, TimeStamp, RowStatus
FROM SNMPv2-TC;
hwTunnelTeMib MODULE-IDENTITY
LAST-UPDATED "201708171607Z" -- August 17, 2017 at 16:07 GMT
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com
"
DESCRIPTION
"This MIB contains private managed object
definitions for the binding information."
-- Revision history
REVISION "201708171607Z"
DESCRIPTION "V2.03, modify description."
REVISION "201708022038Z"
DESCRIPTION "V2.01, modify list head."
REVISION "201308281726Z"
DESCRIPTION "V2.01, modify comment."
REVISION "200606301554Z" -- June 30, 2006 at 15:54 GMT
DESCRIPTION
"Initial version 2006/06/10,MPLS LSPM MIB GROUP."
::= { hwDatacomm 151 }
--
-- Node definitions
--
hwTunnelTeMibObject OBJECT IDENTIFIER ::= { hwTunnelTeMib 1 }
hwTunnelDiffServTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwTunnelDiffServEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table describes the different service mode of tunnel."
::= { hwTunnelTeMibObject 1}
hwTunnelDiffServEntry OBJECT-TYPE
SYNTAX HwTunnelDiffServEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface different service mode attribute configuration."
INDEX { hwTunnelDiffServIndex }
::= {hwTunnelDiffServTable 1}
HwTunnelDiffServEntry ::=
SEQUENCE {
hwTunnelDiffServIndex
InterfaceIndex,
hwTunnelDiffServMode
INTEGER,
hwTunnelDiffServServiceClass
INTEGER,
hwTunnelDiffServColor
INTEGER,
hwTunnelTeFlowQueue
OCTET STRING
}
hwTunnelDiffServIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a set of tunnel instances
between a pair of ingress and egress LSRs.
Managers should obtain new values for row
creation in this table by reading mplsTunnelIndexNext.
When the MPLS signalling protocol is rsvp(2),this value
should be equal to the value signalled in the Tunnel ID
of the session object. When the MPLS signalling protocol
is crldp(3) this value should be equal to the value
signalled in the LSP ID. Reference to MPLS-TE-STD-MIB."
::= { hwTunnelDiffServEntry 1 }
hwTunnelDiffServMode OBJECT-TYPE
SYNTAX INTEGER
{
pipe(1),
uniform(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Different service mode of TE interface, default is uniform."
::= { hwTunnelDiffServEntry 2 }
hwTunnelDiffServServiceClass OBJECT-TYPE
SYNTAX INTEGER {
be(1),
af1(2),
af2(3),
af3(4),
af4(5),
ef(6),
cs6(7),
cs7(8),
invalidClass(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PHB in the ingress PE, the value must be
be,af1,af2,af3,af4,ef,cs6,cs7.The default class is invalidClass(255)."
::= { hwTunnelDiffServEntry 3 }
hwTunnelDiffServColor OBJECT-TYPE
SYNTAX INTEGER
{
green(1),
yellow(2),
red(3),
invalidColor(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Remarked color of packet in the ingress
PE, the value must be green,yellow,red.The default color is invalidColor(255)."
::= { hwTunnelDiffServEntry 4 }
hwTunnelTeFlowQueue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of flow-queue template."
::= { hwTunnelDiffServEntry 5 }
hwTunnelTeVsiTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwTunnelTeVsiEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The table describes the VPN binding of Tunnel."
::= { hwTunnelTeMibObject 2 }
hwTunnelTeVsiEntry OBJECT-TYPE
SYNTAX HwTunnelTeVsiEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The L2VPN VSI binding configuration of tunnel interface."
INDEX { hwTunnelTeVsiIndex,hwTunnelTeVsiName }
::= {hwTunnelTeVsiTable 1}
HwTunnelTeVsiEntry ::=
SEQUENCE {
hwTunnelTeVsiIndex
InterfaceIndex,
hwTunnelTeVsiName
OCTET STRING,
hwTunnelTeVsiCir
Integer32,
hwTunnelTeVsiPir
Integer32,
hwTunnelTeVsiFlowQueue
OCTET STRING
}
hwTunnelTeVsiIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Uniquely identifies a set of tunnel instances
between a pair of ingress and egress LSRs.
Managers should obtain new values for row
creation in this table by reading mplsTunnelIndexNext.
When the MPLS signalling protocol is rsvp(2),this value
should be equal to the value signalled in the tunnel ID
of the session object. When the MPLS signalling protocol
is crldp(3) this value should be equal to the value
signalled in the LSP ID. Reference to MPLS-TE-STD-MIB."
::= { hwTunnelTeVsiEntry 1 }
hwTunnelTeVsiName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..47))
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The name of VSI that the TE interface bind."
::= { hwTunnelTeVsiEntry 2 }
hwTunnelTeVsiCir OBJECT-TYPE
SYNTAX Integer32 (100..10000000)
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The Committed Information Rate of the VSI."
::= { hwTunnelTeVsiEntry 3}
hwTunnelTeVsiPir OBJECT-TYPE
SYNTAX Integer32 (100..10000000)
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The Peak Information Rate of the VSI."
::= { hwTunnelTeVsiEntry 4 }
hwTunnelTeVsiFlowQueue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..31))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Name of flow-queue template."
::= { hwTunnelTeVsiEntry 5 }
hwTunnelTeVllTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwTunnelTeVllEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The table describes the VLL binding of tunnel."
::= { hwTunnelTeMibObject 3 }
hwTunnelTeVllEntry OBJECT-TYPE
SYNTAX HwTunnelTeVllEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The VLL binding configuration of tunnel interface."
INDEX { hwTunnelTeVllIndex,hwTunnelTeVllInterfaceName }
::= {hwTunnelTeVllTable 1}
HwTunnelTeVllEntry ::=
SEQUENCE {
hwTunnelTeVllIndex
InterfaceIndex,
hwTunnelTeVllInterfaceName
OCTET STRING,
hwTunnelTeVllCir
Integer32,
hwTunnelTeVllPir
Integer32,
hwTunnelTeVllFlowQueue
OCTET STRING
}
hwTunnelTeVllIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Uniquely identifies a set of tunnel instances
between a pair of ingress and egress LSRs.
Managers should obtain new values for row
creation in this table by reading mplsTunnelIndexNext.
When the MPLS signalling protocol is rsvp(2),this value
should be equal to the value signalled in the tunnel ID
of the session object. When the MPLS signalling protocol
is crldp(3) this value should be equal to the value
signalled in the LSP ID. Reference to MPLS-TE-STD-MIB."
::= { hwTunnelTeVllEntry 1 }
hwTunnelTeVllInterfaceName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..47))
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The interface name of VLL binding."
::= { hwTunnelTeVllEntry 2 }
hwTunnelTeVllCir OBJECT-TYPE
SYNTAX Integer32 (100..10000000)
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The Committed Information Rate of the VLL."
::= { hwTunnelTeVllEntry 3}
hwTunnelTeVllPir OBJECT-TYPE
SYNTAX Integer32 (100..10000000)
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The Peak Information Rate of the VLL."
::= { hwTunnelTeVllEntry 4 }
hwTunnelTeVllFlowQueue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..31))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Name of flow-queue template."
::= { hwTunnelTeVllEntry 5 }
hwTunnelTeL3vpnTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwTunnelTeL3vpnEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The table describes the L3VPN binding of tunnel."
::= { hwTunnelTeMibObject 4 }
hwTunnelTeL3vpnEntry OBJECT-TYPE
SYNTAX HwTunnelTeL3vpnEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The L3VPN binding configuration of tunnel interface."
INDEX { hwTunnelTeL3vpnIndex,hwTunnelTeL3vpnName }
::= {hwTunnelTeL3vpnTable 1}
HwTunnelTeL3vpnEntry ::=
SEQUENCE {
hwTunnelTeL3vpnIndex
InterfaceIndex,
hwTunnelTeL3vpnName
OCTET STRING,
hwTunnelTeL3vpnCir
Integer32,
hwTunnelTeL3vpnPir
Integer32,
hwTunnelTeL3vpnFlowQueue
OCTET STRING
}
hwTunnelTeL3vpnIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Uniquely identifies a set of tunnel instances
between a pair of ingress and egress LSRs.
Managers should obtain new values for row
creation in this table by reading mplsTunnelIndexNext.
When the MPLS signalling protocol is rsvp(2),this value
should be equal to the value signalled in the tunnel ID
of the session object. When the MPLS signalling protocol
is crldp(3) this value should be equal to the value
signalled in the LSP ID. Reference to MPLS-TE-STD-MIB."
::= { hwTunnelTeL3vpnEntry 1 }
hwTunnelTeL3vpnName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..47))
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The name of VPN instance that the TE interface bind."
::= { hwTunnelTeL3vpnEntry 2 }
hwTunnelTeL3vpnCir OBJECT-TYPE
SYNTAX Integer32 (100..10000000)
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The Committed Information Rate of the L3VPN."
::= { hwTunnelTeL3vpnEntry 3}
hwTunnelTeL3vpnPir OBJECT-TYPE
SYNTAX Integer32 (100..10000000)
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The Peak Information Rate of the L3VPN."
::= { hwTunnelTeL3vpnEntry 4 }
hwTunnelTeL3vpnFlowQueue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..31))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Name of flow-queue template."
::= { hwTunnelTeL3vpnEntry 5 }
hwTunnelTeStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwTunnelTeStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table describes the up/down state transition counts of the TE tunnel interface.
It also describes timestamps when an interface is hot swapped and a primary/backup tunnel switchover is performed."
::= { hwTunnelTeMibObject 5 }
hwTunnelTeStatisticsEntry OBJECT-TYPE
SYNTAX HwTunnelTeStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The up/down state transition counts of TE tunnel interface.
The index of the table is hwTunnelTeStatisticsIfIndex."
INDEX { hwTunnelTeStatisticsIfIndex}
::= {hwTunnelTeStatisticsTable 1}
HwTunnelTeStatisticsEntry ::=
SEQUENCE {
hwTunnelTeStatisticsIfIndex InterfaceIndex,
hwTunnelTeUpDownStatistics Unsigned32,
hwTunnTeCounterDiscontinuityTime TimeStamp
}
hwTunnelTeStatisticsIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the index of a TE tunnel.
The value is an unsigned 32-bit integer."
::= { hwTunnelTeStatisticsEntry 1 }
hwTunnelTeUpDownStatistics OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Describes the up/down transition counts of the TE tunnel interface."
::= { hwTunnelTeStatisticsEntry 2 }
hwTunnTeCounterDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime on the most recent occasion at which this interface's up/down transition counters suffered a discontinuity."
::= { hwTunnelTeStatisticsEntry 3 }
hwCtTemplateTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCtTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table describes the CT template configuration on the device."
::= { hwTunnelTeMibObject 6 }
hwCtTemplateEntry OBJECT-TYPE
SYNTAX HwCtTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The CT template configuration on the device.
The index of the table is hwCtTemplateIndex."
INDEX { hwCtTemplateIndex }
::= {hwCtTemplateTable 1}
HwCtTemplateEntry ::=
SEQUENCE {
hwCtTemplateIndex Integer32,
hwCtTemplateName OCTET STRING,
hwCtTemplateCt0 Unsigned32,
hwCtTemplateCt1 Unsigned32,
hwCtTemplateCt2 Unsigned32,
hwCtTemplateCt3 Unsigned32,
hwCtTemplateCt4 Unsigned32,
hwCtTemplateCt5 Unsigned32,
hwCtTemplateCt6 Unsigned32,
hwCtTemplateCt7 Unsigned32,
hwCtTemplateCommit INTEGER,
hwCtTemplateRowStatus RowStatus
}
hwCtTemplateIndex OBJECT-TYPE
SYNTAX Integer32 (1..4096)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It uniquely identifies a set of CT templates.
Managers should obtain new values for row
creation in this table by reading hwCtTemplateIndex."
::= { hwCtTemplateEntry 1 }
hwCtTemplateName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..19))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CT template name."
::= { hwCtTemplateEntry 2 }
hwCtTemplateCt0 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CT0 bandwidth of the CT template."
::= { hwCtTemplateEntry 3 }
hwCtTemplateCt1 OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CT1 bandwidth of the CT template."
::= { hwCtTemplateEntry 4 }
hwCtTemplateCt2 OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CT2 bandwidth of the CT template."
::= { hwCtTemplateEntry 5 }
hwCtTemplateCt3 OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CT3 bandwidth of the CT template."
::= { hwCtTemplateEntry 6 }
hwCtTemplateCt4 OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CT4 bandwidth of the CT template."
::= { hwCtTemplateEntry 7 }
hwCtTemplateCt5 OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CT5 bandwidth of the CT template."
::= { hwCtTemplateEntry 8 }
hwCtTemplateCt6 OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CT6 bandwidth of the CT template."
::= { hwCtTemplateEntry 9 }
hwCtTemplateCt7 OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CT7 bandwidth of the CT template."
::= { hwCtTemplateEntry 10 }
hwCtTemplateCommit OBJECT-TYPE
SYNTAX INTEGER{
notCommit(1),
commit(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The commit flag of the CT template,1 indicates commit,0 indicates not commit."
::= { hwCtTemplateEntry 11 }
hwCtTemplateRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create and delete rows in the CT template."
::= { hwCtTemplateEntry 12 }
--
hwCtConfigTunnelCtTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCtConfigTunnelCtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table describes the CT configuration in the TE tunnel interface."
::= { hwTunnelTeMibObject 7 }
hwCtConfigTunnelCtEntry OBJECT-TYPE
SYNTAX HwCtConfigTunnelCtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table describes the CT configuration in the TE tunnel interface.
The index of the table is hwCtConfigTunnelCtIfIndex."
INDEX { hwCtConfigTunnelCtIfIndex}
::= {hwCtConfigTunnelCtTable 1}
HwCtConfigTunnelCtEntry ::=
SEQUENCE {
hwCtConfigTunnelCtIfIndex InterfaceIndex,
hwCtConfigTunnelName OCTET STRING,
hwCtConfigTunnelCommit INTEGER,
hwCtConfigTemplateName OCTET STRING,
hwCtConfigTunnelCt0Band Unsigned32,
hwCtConfigTunnelCt1Band Unsigned32,
hwCtConfigTunnelCt2Band Unsigned32,
hwCtConfigTunnelCt3Band Unsigned32,
hwCtConfigTunnelCt4Band Unsigned32,
hwCtConfigTunnelCt5Band Unsigned32,
hwCtConfigTunnelCt6Band Unsigned32,
hwCtConfigTunnelCt7Band Unsigned32
}
hwCtConfigTunnelCtIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a set of tunnels
between a pair of ingress and egress LSRs.
Managers should obtain new values for row
creation in this table by reading mplsTunnelIndexNext.
When the MPLS signalling protocol is rsvp(2),this value
should be equal to the value signalled in the tunnel ID
of the session object. When the MPLS signalling protocol
is crldp(3) this value should be equal to the value
signalled in the LSP ID. Reference to MPLS-TE-STD-MIB."
::= { hwCtConfigTunnelCtEntry 1 }
hwCtConfigTunnelName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the TE tunnel interface."
::= { hwCtConfigTunnelCtEntry 2 }
hwCtConfigTunnelCommit OBJECT-TYPE
SYNTAX INTEGER{
notCommit(1),
commit(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The commit flag of the TE tunnel interface,1 indicates commit,0 indicates not commit."
::= { hwCtConfigTunnelCtEntry 3 }
hwCtConfigTemplateName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..19))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT template name."
::= { hwCtConfigTunnelCtEntry 4 }
hwCtConfigTunnelCt0Band OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT0 bandwidth value of the TE tunnel interface."
::= { hwCtConfigTunnelCtEntry 5 }
hwCtConfigTunnelCt1Band OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT1 bandwidth value of the TE tunnel interface."
::= { hwCtConfigTunnelCtEntry 6 }
hwCtConfigTunnelCt2Band OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT2 bandwidth value of the TE tunnel interface."
::= { hwCtConfigTunnelCtEntry 7 }
hwCtConfigTunnelCt3Band OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT3 bandwidth value of the TE tunnel interface."
::= { hwCtConfigTunnelCtEntry 8 }
hwCtConfigTunnelCt4Band OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT4 bandwidth value of the TE tunnel interface."
::= { hwCtConfigTunnelCtEntry 9 }
hwCtConfigTunnelCt5Band OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT5 bandwidth value of the TE tunnel interface."
::= { hwCtConfigTunnelCtEntry 10 }
hwCtConfigTunnelCt6Band OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT6 bandwidth value of the TE tunnel interface."
::= { hwCtConfigTunnelCtEntry 11 }
hwCtConfigTunnelCt7Band OBJECT-TYPE
SYNTAX Unsigned32 (0..32000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT7 bandwidth value of the TE tunnel interface."
::= { hwCtConfigTunnelCtEntry 12 }
--
hwCtStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCtStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table describes flow statistics of the TE tunnel interface VPN configuration."
::= { hwTunnelTeMibObject 8 }
hwCtStatisticsEntry OBJECT-TYPE
SYNTAX HwCtStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table describes the statistics in the TE tunnel interface with CT configuration.
The index of the table is hwCtStatisticsIfIndex."
INDEX { hwCtStatisticsIfIndex }
::= {hwCtStatisticsTable 1}
HwCtStatisticsEntry ::=
SEQUENCE {
hwCtStatisticsIfIndex InterfaceIndex,
hwCtStatisticsTunnelName OCTET STRING,
hwCtStatisticsCt0OutByteRate Counter64,
hwCtStatisticsCt0OutPktRate Counter64,
hwCtStatisticsCt0OutPkt Counter64,
hwCtStatisticsCt0OutPktByte Counter64,
hwCtStatisticsCt0OutErrorPkt Counter64,
hwCtStatisticsCt1OutByteRate Counter64,
hwCtStatisticsCt1OutPktRate Counter64,
hwCtStatisticsCt1OutPkt Counter64,
hwCtStatisticsCt1OutPktByte Counter64,
hwCtStatisticsCt1OutErrorPkt Counter64,
hwCtStatisticsCt2OutByteRate Counter64,
hwCtStatisticsCt2OutPktRate Counter64,
hwCtStatisticsCt2OutPkt Counter64,
hwCtStatisticsCt2OutPktByte Counter64,
hwCtStatisticsCt2OutErrorPkt Counter64,
hwCtStatisticsCt3OutByteRate Counter64,
hwCtStatisticsCt3OutPktRate Counter64,
hwCtStatisticsCt3OutPkt Counter64,
hwCtStatisticsCt3OutPktByte Counter64,
hwCtStatisticsCt3OutErrorPkt Counter64,
hwCtStatisticsCt4OutByteRate Counter64,
hwCtStatisticsCt4OutPktRate Counter64,
hwCtStatisticsCt4OutPkt Counter64,
hwCtStatisticsCt4OutPktByte Counter64,
hwCtStatisticsCt4OutErrorPkt Counter64,
hwCtStatisticsCt5OutByteRate Counter64,
hwCtStatisticsCt5OutPktRate Counter64,
hwCtStatisticsCt5OutPkt Counter64,
hwCtStatisticsCt5OutPktByte Counter64,
hwCtStatisticsCt5OutErrorPkt Counter64,
hwCtStatisticsCt6OutByteRate Counter64,
hwCtStatisticsCt6OutPktRate Counter64,
hwCtStatisticsCt6OutPkt Counter64,
hwCtStatisticsCt6OutPktByte Counter64,
hwCtStatisticsCt6OutErrorPkt Counter64,
hwCtStatisticsCt7OutByteRate Counter64,
hwCtStatisticsCt7OutPktRate Counter64,
hwCtStatisticsCt7OutPkt Counter64,
hwCtStatisticsCt7OutPktByte Counter64,
hwCtStatisticsCt7OutErrorPkt Counter64
}
hwCtStatisticsIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a set of tunnels
between a pair of ingress and egress LSRs.
Managers should obtain new values for row
creation in this table by reading mplsTunnelIndexNext.
When the MPLS signalling protocol is rsvp(2),this value
should be equal to the value signalled in the tunnel ID
of the session object. When the MPLS signalling protocol
is crldp(3) this value should be equal to the value
signalled in the LSP ID. Reference to MPLS-TE-STD-MIB."
::= { hwCtStatisticsEntry 1 }
hwCtStatisticsTunnelName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the TE tunnel interface."
::= { hwCtStatisticsEntry 2 }
hwCtStatisticsCt0OutByteRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in bytes/sec out from the CT0 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 3 }
hwCtStatisticsCt0OutPktRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in packets/sec out from the CT0 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 4 }
hwCtStatisticsCt0OutPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packets from the CT0 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 5 }
hwCtStatisticsCt0OutPktByte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out bytes from the CT0 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 6 }
hwCtStatisticsCt0OutErrorPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the error packets from the CT0 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 7 }
hwCtStatisticsCt1OutByteRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in bytes/sec out from CT1 the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 8 }
hwCtStatisticsCt1OutPktRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in packets/sec out from the CT0 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 9 }
hwCtStatisticsCt1OutPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packets from the CT1 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 10 }
hwCtStatisticsCt1OutPktByte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packet bytes from the CT1 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 11 }
hwCtStatisticsCt1OutErrorPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the error packets from the CT1 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 12 }
hwCtStatisticsCt2OutByteRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in bytes/sec out from the CT2 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 13 }
hwCtStatisticsCt2OutPktRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in packets/sec out from the CT2 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 14 }
hwCtStatisticsCt2OutPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packets from the CT2 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 15 }
hwCtStatisticsCt2OutPktByte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packet bytes from the CT2 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 16 }
hwCtStatisticsCt2OutErrorPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the error packets from the CT2 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 17 }
hwCtStatisticsCt3OutByteRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT3 out in bytes/sec out of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 18 }
hwCtStatisticsCt3OutPktRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in packets/sec out from the CT0 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 19 }
hwCtStatisticsCt3OutPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packets from the CT3 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 20 }
hwCtStatisticsCt3OutPktByte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packet bytes from the CT3 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 21 }
hwCtStatisticsCt3OutErrorPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the error packets from the CT0 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 22 }
hwCtStatisticsCt4OutByteRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT4 out in bytes/sec out of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 23 }
hwCtStatisticsCt4OutPktRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in packets/sec out from the CT4 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 24 }
hwCtStatisticsCt4OutPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packets from the CT4 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 25 }
hwCtStatisticsCt4OutPktByte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packet bytes from the CT4 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 26 }
hwCtStatisticsCt4OutErrorPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the error packets from the CT4 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 27 }
hwCtStatisticsCt5OutByteRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT5 out in bytes/sec out of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 28 }
hwCtStatisticsCt5OutPktRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in packets/sec out from the CT5 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 29 }
hwCtStatisticsCt5OutPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packets from the CT5 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 30 }
hwCtStatisticsCt5OutPktByte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packet bytes from the CT5 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 31 }
hwCtStatisticsCt5OutErrorPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the error packets from the CT5 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 32 }
hwCtStatisticsCt6OutByteRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT6 out in bytes/sec out of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 33 }
hwCtStatisticsCt6OutPktRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in packets/sec out from the CT6 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 34 }
hwCtStatisticsCt6OutPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packets from the CT6 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 35 }
hwCtStatisticsCt6OutPktByte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packet bytes from the CT6 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 36 }
hwCtStatisticsCt6OutErrorPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the error packets from the CT6 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 37 }
hwCtStatisticsCt7OutByteRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CT7 out in bytes/sec out of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 38 }
hwCtStatisticsCt7OutPktRate OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the rate in packets/sec out from the CT7 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 39 }
hwCtStatisticsCt7OutPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packets from the CT7 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 40 }
hwCtStatisticsCt7OutPktByte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the out packet bytes from the CT7 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 41 }
hwCtStatisticsCt7OutErrorPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It counts the error packets from the CT7 of the TE tunnel interface with VPN configuration."
::= { hwCtStatisticsEntry 42 }
-- Node definitions
--
hwCtFlowTemplateTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCtFlowTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table describes max 8 of the CT-FLOW-Mapping template configuration on the device.
"
::= { hwTunnelTeMibObject 9}
hwCtFlowTemplateEntry OBJECT-TYPE
SYNTAX HwCtFlowTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table describes the CT-FLOW-Mapping template configuration on the device.
"
INDEX { hwCtFlowTemplateID }
::= { hwCtFlowTemplateTable 1}
HwCtFlowTemplateEntry ::=
SEQUENCE
{
hwCtFlowTemplateID Integer32,
hwCtFlowTemplateName OCTET STRING,
hwCt0Cos INTEGER,
hwCt0Scheduler INTEGER,
hwCt0Valid INTEGER ,
hwCt1Cos INTEGER,
hwCt1Scheduler INTEGER,
hwCt1Valid INTEGER ,
hwCt2Cos INTEGER,
hwCt2Scheduler INTEGER,
hwCt2Valid INTEGER ,
hwCt3Cos INTEGER,
hwCt3Scheduler INTEGER,
hwCt3Valid INTEGER ,
hwCt4Cos INTEGER,
hwCt4Scheduler INTEGER,
hwCt4Valid INTEGER ,
hwCt5Cos INTEGER,
hwCt5Scheduler INTEGER,
hwCt5Valid INTEGER ,
hwCt6Cos INTEGER,
hwCt6Scheduler INTEGER,
hwCt6Valid INTEGER ,
hwCt7Cos INTEGER,
hwCt7Scheduler INTEGER,
hwCt7Valid INTEGER ,
hwCtFlowTemplateCommit INTEGER,
hwCtFlowTemplateRowStatus RowStatus
}
hwCtFlowTemplateID OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of CT-FLOW templat."
::= {hwCtFlowTemplateEntry 1}
hwCtFlowTemplateName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..60))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of CT-FLOW template."
::= { hwCtFlowTemplateEntry 11 }
hwCt0Cos OBJECT-TYPE
SYNTAX INTEGER {
be(1),
af1(2),
af2(3),
af3(4),
af4(5),
ef(6),
cs6(7),
cs7(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Value of class of service must be in 'be,af1,af2,af3,af4,ef,cs6,cs7'."
::= { hwCtFlowTemplateEntry 12 }
hwCt0Scheduler OBJECT-TYPE
SYNTAX INTEGER {
pq(1),
wfq(2),
lpq(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Scheduler name."
::= { hwCtFlowTemplateEntry 13 }
hwCt0Valid OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of CT-FLOW templat row."
::= { hwCtFlowTemplateEntry 14 }
hwCt1Cos OBJECT-TYPE
SYNTAX INTEGER {
be(1),
af1(2),
af2(3),
af3(4),
af4(5),
ef(6),
cs6(7),
cs7(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Value of class of service must be in 'be,af1,af2,af3,af4,ef,cs6,cs7'."
::= { hwCtFlowTemplateEntry 15 }
hwCt1Scheduler OBJECT-TYPE
SYNTAX INTEGER {
pq(1),
wfq(2),
lpq(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Scheduler name."
::= { hwCtFlowTemplateEntry 16 }
hwCt1Valid OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of CT-FLOW templat row."
::= { hwCtFlowTemplateEntry 17 }
hwCt2Cos OBJECT-TYPE
SYNTAX INTEGER {
be(1),
af1(2),
af2(3),
af3(4),
af4(5),
ef(6),
cs6(7),
cs7(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Value of class of service must be in 'be,af1,af2,af3,af4,ef,cs6,cs7'."
::= { hwCtFlowTemplateEntry 18 }
hwCt2Scheduler OBJECT-TYPE
SYNTAX INTEGER {
pq(1),
wfq(2),
lpq(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Scheduler name."
::= { hwCtFlowTemplateEntry 19 }
hwCt2Valid OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of CT-FLOW templat row."
::= { hwCtFlowTemplateEntry 20 }
hwCt3Cos OBJECT-TYPE
SYNTAX INTEGER {
be(1),
af1(2),
af2(3),
af3(4),
af4(5),
ef(6),
cs6(7),
cs7(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Value of class of service must be in 'be,af1,af2,af3,af4,ef,cs6,cs7'."
::= { hwCtFlowTemplateEntry 21 }
hwCt3Scheduler OBJECT-TYPE
SYNTAX INTEGER {
pq(1),
wfq(2),
lpq(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Scheduler name."
::= { hwCtFlowTemplateEntry 22 }
hwCt3Valid OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of CT-FLOW templat row."
::= { hwCtFlowTemplateEntry 23 }
hwCt4Cos OBJECT-TYPE
SYNTAX INTEGER {
be(1),
af1(2),
af2(3),
af3(4),
af4(5),
ef(6),
cs6(7),
cs7(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Value of class of service must be in 'be,af1,af2,af3,af4,ef,cs6,cs7'."
::= { hwCtFlowTemplateEntry 24 }
hwCt4Scheduler OBJECT-TYPE
SYNTAX INTEGER {
pq(1),
wfq(2),
lpq(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Scheduler name."
::= { hwCtFlowTemplateEntry 25 }
hwCt4Valid OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of CT-FLOW templat row."
::= { hwCtFlowTemplateEntry 26 }
hwCt5Cos OBJECT-TYPE
SYNTAX INTEGER {
be(1),
af1(2),
af2(3),
af3(4),
af4(5),
ef(6),
cs6(7),
cs7(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Value of class of service must be in 'be,af1,af2,af3,af4,ef,cs6,cs7'."
::= { hwCtFlowTemplateEntry 27 }
hwCt5Scheduler OBJECT-TYPE
SYNTAX INTEGER {
pq(1),
wfq(2),
lpq(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Scheduler name."
::= { hwCtFlowTemplateEntry 28 }
hwCt5Valid OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of CT-FLOW templat row."
::= { hwCtFlowTemplateEntry 29 }
hwCt6Cos OBJECT-TYPE
SYNTAX INTEGER {
be(1),
af1(2),
af2(3),
af3(4),
af4(5),
ef(6),
cs6(7),
cs7(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Value of class of service must be in 'be,af1,af2,af3,af4,ef,cs6,cs7'."
::= { hwCtFlowTemplateEntry 30 }
hwCt6Scheduler OBJECT-TYPE
SYNTAX INTEGER {
pq(1),
wfq(2),
lpq(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Scheduler name."
::= { hwCtFlowTemplateEntry 31 }
hwCt6Valid OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of CT-FLOW templat row."
::= { hwCtFlowTemplateEntry 32 }
hwCt7Cos OBJECT-TYPE
SYNTAX INTEGER {
be(1),
af1(2),
af2(3),
af3(4),
af4(5),
ef(6),
cs6(7),
cs7(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Value of class of service must be in 'be,af1,af2,af3,af4,ef,cs6,cs7'."
::= { hwCtFlowTemplateEntry 33 }
hwCt7Scheduler OBJECT-TYPE
SYNTAX INTEGER {
pq(1),
wfq(2),
lpq(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Scheduler name."
::= { hwCtFlowTemplateEntry 34 }
hwCt7Valid OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of CT-FLOW templat row."
::= { hwCtFlowTemplateEntry 35 }
hwCtFlowTemplateCommit OBJECT-TYPE
SYNTAX INTEGER {
commit(1),
nocommit(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of CT-FLOW templat commit."
::= { hwCtFlowTemplateEntry 36 }
hwCtFlowTemplateRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of CT-FLOW templat."
::= { hwCtFlowTemplateEntry 51 }
hwDsteInterfaceCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDsteInterfaceCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The DS-TE configuration at interface."
::= { hwTunnelTeMibObject 10}
hwDsteInterfaceCfgEntry OBJECT-TYPE
SYNTAX HwDsteInterfaceCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The DS-TE configuration at interface."
INDEX { hwDsteIfIndex }
::= { hwDsteInterfaceCfgTable 1}
HwDsteInterfaceCfgEntry ::=
SEQUENCE
{
hwDsteIfIndex InterfaceIndex ,
hwAppliedCtFlowTemplateName OCTET STRING,
hwCtBandWidthShareCfg INTEGER
}
hwDsteIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value, greater than zero, for eachinterface.
It is recommended that values are assigned contiguously starting from 1.
The value for each interface sub-layer must remain constant at least from one re-initialization of the entity's network management system to the next re-initialization."
::= {hwDsteInterfaceCfgEntry 1}
hwAppliedCtFlowTemplateName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..60))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of CT-FLOW template."
::= { hwDsteInterfaceCfgEntry 11 }
hwCtBandWidthShareCfg OBJECT-TYPE
SYNTAX INTEGER {
share(1),
unshare(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Value of Ct BandWidth configuration for DS-TE.
That must be in 'Share,UnShare'."
::= { hwDsteInterfaceCfgEntry 12 }
hwTunnelTeConformance OBJECT IDENTIFIER ::= { hwTunnelTeMib 3 }
hwTunnelTeGroups OBJECT IDENTIFIER ::= { hwTunnelTeConformance 3 }
hwTunnelTeCompliances OBJECT IDENTIFIER ::= {hwTunnelTeConformance 1}
hwTunnelDiffServGroup OBJECT-GROUP
OBJECTS { hwTunnelDiffServMode, hwTunnelDiffServServiceClass,hwTunnelDiffServColor,hwTunnelTeFlowQueue}
STATUS current
DESCRIPTION
"Describes the different service mode of tunnel."
::= { hwTunnelTeGroups 1 }
hwTunnelTeVsiGroup OBJECT-GROUP
OBJECTS { hwTunnelTeVsiCir, hwTunnelTeVsiPir,hwTunnelTeVsiFlowQueue}
STATUS current
DESCRIPTION
"Describes the VSI binding of tunnel."
::= { hwTunnelTeGroups 2 }
hwTunnelTeVllGroup OBJECT-GROUP
OBJECTS { hwTunnelTeVllCir, hwTunnelTeVllPir,hwTunnelTeVllFlowQueue}
STATUS current
DESCRIPTION
"Describes the VLL binding of tunnel."
::= { hwTunnelTeGroups 3 }
hwTunnelTeL3vpnGroup OBJECT-GROUP
OBJECTS { hwTunnelTeL3vpnCir, hwTunnelTeL3vpnPir,hwTunnelTeL3vpnFlowQueue}
STATUS current
DESCRIPTION
"Describes the L3VPN binding of tunnel."
::= { hwTunnelTeGroups 4 }
hwTunnelTeStatisticsGroup OBJECT-GROUP
OBJECTS { hwTunnelTeUpDownStatistics,hwTunnTeCounterDiscontinuityTime}
STATUS current
DESCRIPTION
"Describes the up/down count of the TE tunnel."
::= { hwTunnelTeGroups 5 }
hwCtTemplateGroup OBJECT-GROUP
OBJECTS { hwCtTemplateName ,
hwCtTemplateCt0 ,
hwCtTemplateCt1 ,
hwCtTemplateCt2 ,
hwCtTemplateCt3 ,
hwCtTemplateCt4 ,
hwCtTemplateCt5 ,
hwCtTemplateCt6 ,
hwCtTemplateCt7,
hwCtTemplateCommit,
hwCtTemplateRowStatus
}
STATUS current
DESCRIPTION
"Describes CT template."
::= { hwTunnelTeGroups 6 }
hwCtConfigCtGroup OBJECT-GROUP
OBJECTS {
hwCtConfigTunnelName ,
hwCtConfigTunnelCommit ,
hwCtConfigTemplateName ,
hwCtConfigTunnelCt0Band ,
hwCtConfigTunnelCt1Band ,
hwCtConfigTunnelCt2Band ,
hwCtConfigTunnelCt3Band ,
hwCtConfigTunnelCt4Band ,
hwCtConfigTunnelCt5Band ,
hwCtConfigTunnelCt6Band ,
hwCtConfigTunnelCt7Band}
STATUS current
DESCRIPTION
"Describes the CT configuration of the TE tunnel interface."
::= { hwTunnelTeGroups 7 }
hwCtStatisticsGroup OBJECT-GROUP
OBJECTS {
hwCtStatisticsTunnelName ,
hwCtStatisticsCt0OutByteRate ,
hwCtStatisticsCt0OutPktRate ,
hwCtStatisticsCt0OutPkt ,
hwCtStatisticsCt0OutPktByte ,
hwCtStatisticsCt0OutErrorPkt ,
hwCtStatisticsCt1OutByteRate ,
hwCtStatisticsCt1OutPktRate ,
hwCtStatisticsCt1OutPkt ,
hwCtStatisticsCt1OutPktByte ,
hwCtStatisticsCt1OutErrorPkt ,
hwCtStatisticsCt2OutByteRate ,
hwCtStatisticsCt2OutPktRate ,
hwCtStatisticsCt2OutPkt ,
hwCtStatisticsCt2OutPktByte ,
hwCtStatisticsCt2OutErrorPkt ,
hwCtStatisticsCt3OutByteRate ,
hwCtStatisticsCt3OutPktRate ,
hwCtStatisticsCt3OutPkt ,
hwCtStatisticsCt3OutPktByte ,
hwCtStatisticsCt3OutErrorPkt ,
hwCtStatisticsCt4OutByteRate ,
hwCtStatisticsCt4OutPktRate ,
hwCtStatisticsCt4OutPkt ,
hwCtStatisticsCt4OutPktByte ,
hwCtStatisticsCt4OutErrorPkt ,
hwCtStatisticsCt5OutByteRate ,
hwCtStatisticsCt5OutPktRate ,
hwCtStatisticsCt5OutPkt ,
hwCtStatisticsCt5OutPktByte ,
hwCtStatisticsCt5OutErrorPkt ,
hwCtStatisticsCt6OutByteRate ,
hwCtStatisticsCt6OutPktRate ,
hwCtStatisticsCt6OutPkt ,
hwCtStatisticsCt6OutPktByte ,
hwCtStatisticsCt6OutErrorPkt ,
hwCtStatisticsCt7OutByteRate ,
hwCtStatisticsCt7OutPktRate ,
hwCtStatisticsCt7OutPkt ,
hwCtStatisticsCt7OutPktByte ,
hwCtStatisticsCt7OutErrorPkt
}
STATUS current
DESCRIPTION
"Describes the CT of the TE tunnel interface."
::= { hwTunnelTeGroups 8 }
hwCtFlowTemplateGroup OBJECT-GROUP
OBJECTS {
--hwCtFlowTemplateID ,
hwCtFlowTemplateName ,
hwCt0Cos ,
hwCt0Scheduler ,
hwCt0Valid ,
hwCt1Cos ,
hwCt1Scheduler ,
hwCt1Valid ,
hwCt2Cos ,
hwCt2Scheduler ,
hwCt2Valid ,
hwCt3Cos ,
hwCt3Scheduler ,
hwCt3Valid ,
hwCt4Cos ,
hwCt4Scheduler ,
hwCt4Valid ,
hwCt5Cos ,
hwCt5Scheduler ,
hwCt5Valid ,
hwCt6Cos ,
hwCt6Scheduler ,
hwCt6Valid ,
hwCt7Cos ,
hwCt7Scheduler ,
hwCt7Valid ,
hwCtFlowTemplateCommit ,
hwCtFlowTemplateRowStatus
}
STATUS current
DESCRIPTION
"The table describes the CT-FLOW-Mapping template configuration on the device."
::= { hwTunnelTeGroups 10 }
hwDsteInterfaceCfgGroup OBJECT-GROUP
OBJECTS {
--hwDsteIfIndex ,
hwAppliedCtFlowTemplateName ,
hwCtBandWidthShareCfg
}
STATUS current
DESCRIPTION
"The table describes the CT-FLOW-Mapping template configuration on the device."
::= { hwTunnelTeGroups 11 }
hwTunnelDsTeTrap OBJECT IDENTIFIER ::= { hwTunnelTeMib 2 }
hwMplsFqShortage NOTIFICATION-TYPE
OBJECTS { hwCtConfigTunnelName }
STATUS obsolete
DESCRIPTION
"This notification is generated when FQ (flow-queue) template resources are shortage."
::= { hwTunnelDsTeTrap 1 }
hwMplsSqShortage NOTIFICATION-TYPE
OBJECTS { hwCtConfigTunnelName }
STATUS obsolete
DESCRIPTION
"This notification is generated when SQ (subscriber-queue) resources are shortage."
::= { hwTunnelDsTeTrap 2 }
hwMplsSqBandwidthExceed NOTIFICATION-TYPE
OBJECTS { hwCtConfigTunnelName }
STATUS obsolete
DESCRIPTION
"This notification is generated when the total bandwidth of SQ (subscriber-queue) exceeds 10G bit/s in one LPU."
::= { hwTunnelDsTeTrap 3 }
hwMplsHsbFqShortage NOTIFICATION-TYPE
OBJECTS { hwCtConfigTunnelName }
STATUS obsolete
DESCRIPTION
"This notification is generated when FQ (flow-queue) template resources in HSB are shortage."
::= { hwTunnelDsTeTrap 4 }
hwMplsHsbSqShortage NOTIFICATION-TYPE
OBJECTS { hwCtConfigTunnelName }
STATUS obsolete
DESCRIPTION
"This notification is generated when SQ (subscriber-queue) resources in HSB are shortage."
::= { hwTunnelDsTeTrap 5 }
hwMplsHsbSqBandwidthExceed NOTIFICATION-TYPE
OBJECTS { hwCtConfigTunnelName }
STATUS obsolete
DESCRIPTION
"This notification is generated when the total bandwidth of SQ (subscriber-queue) in HSB exceeds 10G bit/s in one LPU."
::= { hwTunnelDsTeTrap 6 }
hwTunnelTeTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwMplsHsbSqBandwidthExceed, hwMplsHsbSqShortage, hwMplsHsbFqShortage, hwMplsSqBandwidthExceed, hwMplsSqShortage, hwMplsFqShortage }
STATUS current
DESCRIPTION
"The HUAWEI Tunnel Te trap info."
::= { hwTunnelTeGroups 9 }
-- compliance statements
hwTunnelTeCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for HUAWEI-TUNNEL-TE-MIB."
MODULE -- this module
MANDATORY-GROUPS { hwTunnelDiffServGroup,
hwTunnelTeVsiGroup,
hwTunnelTeVllGroup,
hwTunnelTeL3vpnGroup,
hwTunnelTeStatisticsGroup,
hwCtTemplateGroup,
hwCtConfigCtGroup,
hwCtStatisticsGroup,
hwTunnelTeTrapGroup,
hwCtFlowTemplateGroup,
hwDsteInterfaceCfgGroup}
::= { hwTunnelTeCompliances 1 }
END
--
-- HUAWEI-TUNNEL-TE-MIB.mib
--
|