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
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
|
MPIOS-MIB DEFINITIONS ::= BEGIN
-- TITLE: Maipu Vxworks System Objects
IMPORTS
DisplayString, TruthValue,RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC
Counter FROM RFC1155-SMI
mpMgmt FROM MAIPU-SMI
Counter64, Counter32, IpAddress, MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32
FROM SNMPv2-SMI;
mpios MODULE-IDENTITY
LAST-UPDATED "0101050000Z"
ORGANIZATION "Maipu DataComm"
CONTACT-INFO
" Maipu DataComm
Customer Service
Postal: Consulate Drive
Chengdu, Sichuan 610041
China
Tel: 86-028-5161006
E-mail: office@maipu.com"
DESCRIPTION
"The process and memory information of MP2600 infomation!"
::= { mpMgmt 20 }
-- -------------------------------------------------------------
-- Textual Conventions
-- -------------------------------------------------------------
EnabledStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A simple status value for the object."
SYNTAX INTEGER { enabled(1), disabled(2) }
iosSystem OBJECT IDENTIFIER ::= { mpios 1 }
iosObjects OBJECT IDENTIFIER ::= { iosSystem 1 }
-- Groups defined in this MIB
sysMemory OBJECT IDENTIFIER ::= { iosObjects 1 }
-- Memory Group
-- This group provides the memory usage information on the target.
-- All variables in this group are read only.
numBytesFree OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The number of bytes free in the system memory "
-- DEFAULT next-function-async std_next_async
::= { sysMemory 1 }
numBlocksFree OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The number of blocks free in the system memory "
-- DEFAULT next-function-async std_next_async
::= { sysMemory 2 }
avgBlockSizeFree OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The average block size that is free in the system memory "
-- DEFAULT next-function-async std_next_async
::= { sysMemory 3 }
maxBlockSizeFree OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The largest block size that is free in the memory "
-- DEFAULT next-function-async std_next_async
::= { sysMemory 4 }
numBytesAlloc OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The number of bytes of system memory that have been allocated by
tasks and system services "
-- DEFAULT next-function-async std_next_async
::= { sysMemory 5 }
numBlocksAlloc OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The number of blocks of system memory that have been allocated in
the system "
-- DEFAULT next-function-async std_next_async
::= { sysMemory 6 }
avgBlockSizeAlloc OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The average memory block size that has been allocated in the
system "
-- DEFAULT next-function-async std_next_async
::= { sysMemory 7 }
memoryTotalBytes OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total available memory bytes"
-- DEFAULT next-function-async std_next_async
::= { sysMemory 8 }
allocBytesPercent OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The allocated bytes percent which value is allocated bytes divided
by total bytes, This value can be in the range from 0 to 100."
-- DEFAULT next-function-async std_next_async
::= { sysMemory 9 }
sysTask OBJECT IDENTIFIER ::= { iosObjects 2 }
-- Task Group
-- This group provides access to the target's task table.
-- Tasks can be suspended, created, resumed and deleted.
-- Individual parameters can also be changed. While changing
-- task information, it should be remembered that the information
-- from this group is only a snapshot of the task table entries.
-- VxWorks tasks can be created by creating an entry in the
-- tasktable. An entry should be created with an index of zero.
-- The other parameters that must be specified are: name, priority,
-- stacksize, entry point and other options.
taskTable OBJECT-TYPE
SYNTAX SEQUENCE OF TaskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents the target's task table. Each entry in this table
represents a task"
::= { sysTask 1 }
taskEntry OBJECT-TYPE
SYNTAX TaskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Each entry contains information with regards to a task in the
system "
INDEX { taskId }
::= { taskTable 1 }
TaskEntry ::=
SEQUENCE {
taskId
Unsigned32,
taskName
DisplayString,
taskPriority
Integer32,
taskStatus
INTEGER,
taskOptions
Integer32,
taskMain
DisplayString,
taskStackPtr
Unsigned32,
taskStackBase
Unsigned32,
taskStackPos
Unsigned32,
taskStackEnd
Unsigned32,
taskStackSize
Unsigned32,
taskStackSizeUsage
Unsigned32,
taskStackMaxUsed
Unsigned32,
taskStackFree
Unsigned32,
taskErrorStatus
Integer32
}
taskId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This is the task ID assigned by VxWorks to a task in the
system. A taskId of zero specifies a new task."
::= { taskEntry 1 }
taskName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This is the name of the VxWorks task. This value can
only be specified (set) at task creation."
::= { taskEntry 2 }
taskPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority of the VxWorks task. This value can be
in the range from 0, the highest priority,
to 255, the lowest priority."
::= { taskEntry 3 }
taskStatus OBJECT-TYPE
SYNTAX INTEGER {
task-ready(1), -- Task is ready to run.
task-suspended(2), -- Task is suspended.
task-delay(3), -- Task is delayed.
task-deleted(4) -- Task is to be deleted.
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field specifies the current task status. It
can be used to change the current task state.
For example, to suspend a task, the value of
taskStatus is changed to task-suspended,
to delete a task the value is changed to
task-deleted, etc..."
::= { taskEntry 4 }
taskOptions OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value represents the sum of the following
options:
value option
1 VX_SUPERVISOR_MODE(read-only)
2 VX_UNBREAKABLE (break points ignored)
4 VX_DEALLOC_STACK (deallocate stack)
8 VX_FP_TASK (floating point support)
16 VX_STDIO (read-only)
128 VX_PRIVATE_ENV (private env. variables)
256 VX_NO_STACK_FILL (don't fill stack)
All the options above can be set at task creation time.
However, once the task is executing the only option
that can be changed is VX_UNBREAKABLE. The option is
toggled based on the current setting."
::= { taskEntry 5 }
taskMain OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the name of the entry function for the VxWorks
task. This name can only be specified when a task
is created (entry added in the table). The symbol
must exist in the VxWorks target."
::= { taskEntry 6 }
taskStackPtr OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the saved stack pointer for the task."
::= { taskEntry 7 }
taskStackBase OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the address of the bottom of the stack of
the VxWorks task."
::= { taskEntry 8 }
taskStackPos OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the effective top of the stack in the current
task state."
::= { taskEntry 9 }
taskStackEnd OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the address of the top of the stack of the
VxWorks task."
::= { taskEntry 10 }
taskStackSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the actual size of the stack in bytes. The
size of the stack can only be specified at task
creation (adding an entry to the table)."
::= { taskEntry 11 }
taskStackSizeUsage OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes currently in use by the task from
the stack."
::= { taskEntry 12 }
taskStackMaxUsed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the maximum number of bytes that have been used
by the task from the stack."
::= { taskEntry 13 }
taskStackFree OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of bytes that are free currently in
the task stack."
::= { taskEntry 14 }
taskErrorStatus OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the most recent error status for this task."
::= { taskEntry 15 }
-- *************************
taskDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is description for error task. If the task runs well the
string will be null."
::= { sysTask 2 }
-- cpu
-- ******* CPU *******
sysCpu OBJECT IDENTIFIER ::= { iosObjects 3 }
sysCpuStatus OBJECT-TYPE
SYNTAX INTEGER {
noSpyCpu(1),
spyCpu(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the status of collecting CPU utilization rate
which include two status: spyCpu (2), noSpyCpu(1), if you
want to get cpuUtilTable and cpuTaskTable, you must make
status to spy cpu"
::= { sysCpu 1 }
sysCpuTaskTabView OBJECT-TYPE
SYNTAX INTEGER {
detailed(1),
simple(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the status of cpuTaskTable view:
detailed view is showing every task info and
simple view is only showing task which had used cpu"
::= { sysCpu 2 }
checkCpuTimeInterval OBJECT-TYPE
SYNTAX INTEGER (1..3600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"check cpu time interval,unit is second"
::= { sysCpu 3 }
cpuTaskTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpuTaskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents the target's task cpu table. Each entry in this table
represents a task"
::= { sysCpu 4 }
cpuTaskEntry OBJECT-TYPE
SYNTAX CpuTaskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Each entry contains information with regards to a task cpu in the
system "
INDEX { cpuTaskId }
::= { cpuTaskTable 1 }
CpuTaskEntry ::=
SEQUENCE {
cpuTaskId
Integer32,
cpuTaskName
OCTET STRING,
cpuTaskPri
Integer32,
cpuTaskDeltaUtil
Integer32,
cpuTaskDeltaTicks
Integer32,
cpuTaskAverageUtil
Integer32,
cpuTaskTotalTicks
Integer32,
cpuTaskCurrentUtil
Integer32
}
cpuTaskId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This is the task ID assigned by VxWorks to a task in the
system. A taskId of zero specifies a new task."
::= { cpuTaskEntry 1 }
cpuTaskName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This is the name of the VxWorks task. This value can
only be specified (set) at task creation."
::= { cpuTaskEntry 2 }
cpuTaskPri OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The priority of the VxWorks task. This value can be
in the range from 0, the highest priority,
to 255, the lowest priority."
::= { cpuTaskEntry 3 }
cpuTaskDeltaUtil OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization of the VxWorks task during DeltaTicks.
This value can be in the range from 0 to 100."
::= {cpuTaskEntry 4 }
cpuTaskDeltaTicks OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The task CPU utilization delta ticks."
::= { cpuTaskEntry 5 }
cpuTaskAverageUtil OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization of the VxWorks task during TotalTicks.
This value can be in the range from 0 to 100."
::= { cpuTaskEntry 6 }
cpuTaskTotalTicks OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total ticks till cpuTaskStatus been start, until the
status be end."
::= { cpuTaskEntry 7 }
cpuTaskCurrentUtil OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cpu current utilization "
::= { cpuTaskEntry 8 }
cpuUtilTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpuUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The Sys CPU total utilization table "
::= { sysCpu 5 }
cpuUtilEntry OBJECT-TYPE
SYNTAX CpuUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The Sys CPU utilization table at a certain period of time,
include two kind of time interval: one is from spy cpu to current
show cpu, the other is from last show cpu to current show cpu"
INDEX { cpuUtilCpuId }
::= { cpuUtilTable 1 }
CpuUtilEntry ::=
SEQUENCE {
cpuUtilCpuId
Integer32,
cpuUtilDeltaUtil
Integer32,
cpuUtilDeltaUsedTicks
Integer32,
cpuUtilDeltaTicks
Integer32,
cpuUtilDeltaTimes
Integer32,
cpuUtilAverageUtil
Integer32,
cpuUtilTotalUsedTicks
Integer32,
cpuUtilTotalTicks
Integer32,
cpuUtilTotalTimes
Integer32,
cpuUtilCurrentUtil
Integer32
}
cpuUtilCpuId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cpu id for multi-cpu device"
::= { cpuUtilEntry 1 }
cpuUtilDeltaUtil OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Sys CPU utilization in delta times"
::= { cpuUtilEntry 2 }
cpuUtilDeltaUsedTicks OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The System used ticks in delta ticks"
::= { cpuUtilEntry 3 }
cpuUtilDeltaTicks OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Sys CPU utilization ticks in delta times"
::= { cpuUtilEntry 4 }
cpuUtilDeltaTimes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The delta times, unit is second"
::= { cpuUtilEntry 5 }
cpuUtilAverageUtil OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Sys CPU utilization in total times"
::= { cpuUtilEntry 6 }
cpuUtilTotalUsedTicks OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Sys CPU utilization used ticks in total times"
::= { cpuUtilEntry 7 }
cpuUtilTotalTicks OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Sys CPU utilization ticks in total times"
::= { cpuUtilEntry 8 }
cpuUtilTotalTimes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total times, unit is second"
::= { cpuUtilEntry 9 }
cpuUtilCurrentUtil OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cpu current utilization"
::= { cpuUtilEntry 10 }
-- sys cpu/mainBoard temperature
sysTemperature OBJECT IDENTIFIER ::= { iosObjects 4 }
sysCpuTemper OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Get current system environment cpu temperature"
::= { sysTemperature 1 }
sysCpuAlertTemper OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Get or set current system environment cpu alarm temperature
default is 85¡ãC"
::= { sysTemperature 2 }
sysMainBoardTemper OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Get current system environment main borad temperature"
::= { sysTemperature 3 }
sysMainBoardAlertTemper OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Get or set current system environment main board alarm temperature
default is 65 ¡ãC"
::= { sysTemperature 4 }
sysAlertTrapInt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Send alert trap time interval when system temperature is always
more than alert temperature, unit is second,default is 60 s"
::= { sysTemperature 5 }
------------------------------------------------------------------------------
sysNFI OBJECT IDENTIFIER ::= { iosObjects 200 }
------------------------------------------------------------------------------
sysRtrGbl OBJECT IDENTIFIER ::= { sysNFI 1 }
sysRtrCtrl OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTR global switch
enable--enable RTR module
disable--no RTR module"
::= { sysRtrGbl 1 }
sysRtrResponder OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rtr Responder
TRUE--Rtr Responder
False--no Rtr Responder
on valid in jitter entity now"
::= { sysRtrGbl 2 }
------------------------------------------------------------------------------
sysRtrEntityMgt OBJECT IDENTIFIER ::= { sysNFI 2 }
sysRtrEntityTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysRtrEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Rtr entity table,config or view information about Rtr entity"
::= { sysRtrEntityMgt 100 }
sysRtrEntityEntry OBJECT-TYPE
SYNTAX SysRtrEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Rtr entity,config or view information about Rtr entity"
INDEX { rtrEntityId }
::= { sysRtrEntityTable 1 }
SysRtrEntityEntry ::= SEQUENCE {
rtrEntityId INTEGER,
rtrEntityName DisplayString,
rtrEntityType INTEGER,
rtrEntityLogType INTEGER,
rtrEntityLogMaxSize INTEGER,
rtrEntityLogFilter INTEGER,
rtrEntityThreshold INTEGER,
rtrEntityRowStatus RowStatus
}
rtrEntityId OBJECT-TYPE
SYNTAX INTEGER(1..2000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Rtr entity Id,index"
::= { sysRtrEntityEntry 1 }
rtrEntityName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"rtr entity name,araised aumatically,read-only"
::= { sysRtrEntityEntry 2 }
rtrEntityType OBJECT-TYPE
SYNTAX INTEGER {
icmpEcho(1),
jitter(2),
flowStatistics(3),
udpecho(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr entity,inlcuding icmpEcho,jitter,flow statistics,udpecho"
::= { sysRtrEntityEntry 3 }
rtrEntityLogType OBJECT-TYPE
SYNTAX INTEGER {
local(1),
remote(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTR entity logging type¡£
local£stored in the device file system
remote£remote services"
::= { sysRtrEntityEntry 4 }
rtrEntityLogMaxSize OBJECT-TYPE
SYNTAX INTEGER(1..500)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr entity's log with max lines, if log type is local"
::= { sysRtrEntityEntry 5 }
rtrEntityLogFilter OBJECT-TYPE
SYNTAX INTEGER {
all(1),
error(2),
overThreshold(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTR entity log filter options"
::= { sysRtrEntityEntry 6 }
rtrEntityThreshold OBJECT-TYPE
SYNTAX INTEGER(0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTR entity log filter threshhod,only valid with icmpEcho entity"
::= { sysRtrEntityEntry 7 }
rtrEntityRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr entity row status"
::= { sysRtrEntityEntry 8 }
------------------------------------------------------------------------------
sysRtrGroupMgt OBJECT IDENTIFIER ::= { sysNFI 3 }
sysRtrGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysRtrGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Rtr group table"
::= { sysRtrGroupMgt 100 }
sysRtrGroupEntry OBJECT-TYPE
SYNTAX SysRtrGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Rtr group entity"
INDEX { rtrGroupId }
::= { sysRtrGroupTable 1 }
SysRtrGroupEntry ::= SEQUENCE {
rtrGroupId INTEGER,
rtrGroupName DisplayString,
rtrGroupInterval INTEGER,
rtrGroupEntityMembers DisplayString,
rtrGroupRowStatus RowStatus
}
rtrGroupId OBJECT-TYPE
SYNTAX INTEGER(1..2000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr group id,index"
::= { sysRtrGroupEntry 1 }
rtrGroupName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"rtr group name,araised aumatically, read-only"
::= { sysRtrGroupEntry 2 }
rtrGroupInterval OBJECT-TYPE
SYNTAX INTEGER(0..10000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr group interval, seconds"
::= { sysRtrGroupEntry 3 }
rtrGroupEntityMembers OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTR group members£¬string type£º
1£¬3£¬10-20£¬50
string length no more than 255, separated by comma,no space in the string¡£"
::= { sysRtrGroupEntry 4 }
rtrGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr group table row status"
::= { sysRtrGroupEntry 5 }
------------------------------------------------------------------------------
sysRtrScheduleMgt OBJECT IDENTIFIER ::= { sysNFI 4 }
sysRtrScheduleTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysRtrScheduleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"rtr schedule table"
::= { sysRtrScheduleMgt 100 }
sysRtrScheduleEntry OBJECT-TYPE
SYNTAX SysRtrScheduleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"rtr schedule table entry"
INDEX { rtrScheduleId }
::= { sysRtrScheduleTable 1 }
SysRtrScheduleEntry ::= SEQUENCE {
rtrScheduleId Unsigned32,
rtrScheduleType INTEGER,
rtrScheduleObjId INTEGER,
rtrScheduleStartTimeFlag INTEGER,
rtrScheduleAfterTime DisplayString,
rtrScheduleStartTime DisplayString,
rtrScheduleAgeOut Unsigned32,
rtrScheduleLifeFlag INTEGER,
rtrScheduleLifeTime Unsigned32,
rtrScheduleRepeat Unsigned32,
rtrScheduleInterval Unsigned32,
rtrScheduleRowStatus RowStatus
}
rtrScheduleId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr schedule Id,index"
::= { sysRtrScheduleEntry 1 }
rtrScheduleType OBJECT-TYPE
SYNTAX INTEGER {
entity(1),
group(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr schedule type"
::= { sysRtrScheduleEntry 2 }
rtrScheduleObjId OBJECT-TYPE
SYNTAX INTEGER(1..2000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"id of rtrschedule object which means rtr group or entity."
::= { sysRtrScheduleEntry 3 }
rtrScheduleStartTimeFlag OBJECT-TYPE
SYNTAX INTEGER {
startNow(1),
afterTime(2),
startTime(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTR schedule start time¡£
startNow£»
afterTime£»
startTime--start at the given time"
::= { sysRtrScheduleEntry 4 }
rtrScheduleAfterTime OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTR schedule given time¡£
type string£º
HH:MM:SS
valid when sysRtrScheduleFlag is afterTimeʱ."
::= { sysRtrScheduleEntry 5 }
rtrScheduleStartTime OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTR schedule given time¡£
type string£º
HH:MM:SS,mm,dd,yyyy
valid when sysRtrScheduleFlag is startTime."
::= { sysRtrScheduleEntry 6 }
rtrScheduleAgeOut OBJECT-TYPE
SYNTAX Unsigned32(1..2073600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr schedule ageout time in second."
::= { sysRtrScheduleEntry 7 }
rtrScheduleLifeFlag OBJECT-TYPE
SYNTAX INTEGER {
forever(1),
repeatAndDie(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr schedule's life
forever,if config, no need to config lifetime and repeat times
repeatAndDie,if config, need to config lifetime and repeat times"
::= { sysRtrScheduleEntry 8 }
rtrScheduleLifeTime OBJECT-TYPE
SYNTAX Unsigned32(1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr schedule's lieftime in second,
valid only when rtrScheduleLifeFlag is repeatAndDie."
::= { sysRtrScheduleEntry 9 }
rtrScheduleRepeat OBJECT-TYPE
SYNTAX Unsigned32(1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr schedule's repeat times,
valid only when rtrScheduleLifeFlag is repeatAndDie."
::= { sysRtrScheduleEntry 10 }
rtrScheduleInterval OBJECT-TYPE
SYNTAX Unsigned32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"rtr schedule interval in second"
::= { sysRtrScheduleEntry 11 }
rtrScheduleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"rtr schedule row status"
::= { sysRtrScheduleEntry 12 }
------------------------------------------------------------------------------
sysRtrIcmpEchoMgt OBJECT IDENTIFIER ::= { sysNFI 5 }
sysRtrIcmpEchoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysRtrIcmpEchoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RTR ICMP entity table"
::= { sysRtrIcmpEchoMgt 100 }
sysRtrIcmpEchoEntry OBJECT-TYPE
SYNTAX SysRtrIcmpEchoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RTR ICMP entity entry"
INDEX { rtrIcmpEchoEntityId }
::= { sysRtrIcmpEchoTable 1 }
SysRtrIcmpEchoEntry ::= SEQUENCE {
rtrIcmpEchoEntityId INTEGER,
rtrIcmpEchoTargetIp IpAddress,
rtrIcmpEchoPktNum Unsigned32,
rtrIcmpEchoPktLen INTEGER,
rtrIcmpEchoTimeout INTEGER,
rtrIcmpEchoSchInterval Unsigned32,
rtrIcmpEchoExtendFlag TruthValue,
rtrIcmpEchoVrfName DisplayString,
rtrIcmpEchoSourceIp IpAddress,
rtrIcmpEchoTos INTEGER,
rtrIcmpEchoSetDf TruthValue,
rtrIcmpEchoVerifyData TruthValue,
rtrIcmpEchoIsScheduling TruthValue,
rtrIcmpEchoPktTotalSend Counter32,
rtrIcmpEchoPktTotalRcvd Counter32,
rtrIcmpEchoSuccessRate INTEGER,
rtrIcmpEchoRowStatus RowStatus
}
rtrIcmpEchoEntityId OBJECT-TYPE
SYNTAX INTEGER(1..2000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMP entity ID,index"
::= { sysRtrIcmpEchoEntry 1 }
rtrIcmpEchoTargetIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMPECHO(ping) destination address"
::= { sysRtrIcmpEchoEntry 2 }
rtrIcmpEchoPktNum OBJECT-TYPE
SYNTAX Unsigned32(1..200000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMP PING send packets number once"
::= { sysRtrIcmpEchoEntry 3 }
rtrIcmpEchoPktLen OBJECT-TYPE
SYNTAX INTEGER(36..18024)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMP PING send packets size"
::= { sysRtrIcmpEchoEntry 4 }
rtrIcmpEchoTimeout OBJECT-TYPE
SYNTAX INTEGER(1..3600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMP ping reply timeout in seconds."
::= { sysRtrIcmpEchoEntry 5 }
rtrIcmpEchoSchInterval OBJECT-TYPE
SYNTAX Unsigned32(1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IcmpEcho interval in seconds."
::= { sysRtrIcmpEchoEntry 6 }
rtrIcmpEchoExtendFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMP extern ping flag,
have set Tos,verify data,DF,sourceIp and vrf or yet."
::= { sysRtrIcmpEchoEntry 7 }
rtrIcmpEchoVrfName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"vrfname type string,
valid only rtrIcmpEchoExtendFlag is TRUE"
::= { sysRtrIcmpEchoEntry 8 }
rtrIcmpEchoSourceIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMP source IP address,
valid only rtrIcmpEchoExtendFlag is TRUE."
::= { sysRtrIcmpEchoEntry 9 }
rtrIcmpEchoTos OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMP TOS value,
valid only rtrIcmpEchoExtendFlag is TRUE."
::= { sysRtrIcmpEchoEntry 10 }
rtrIcmpEchoSetDf OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMP pakcet DF bit,
valid only rtrIcmpEchoExtendFlag is TRUE"
::= { sysRtrIcmpEchoEntry 11 }
rtrIcmpEchoVerifyData OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMP verifay data flag,
valid only rtrIcmpEchoExtendFlag is TRUE"
::= { sysRtrIcmpEchoEntry 12 }
rtrIcmpEchoIsScheduling OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"whether icmpEcho entity is in scheduling"
::= { sysRtrIcmpEchoEntry 13 }
rtrIcmpEchoPktTotalSend OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"total packets which send by the ICMP entity."
::= { sysRtrIcmpEchoEntry 14 }
rtrIcmpEchoPktTotalRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"total packets which receive by the ICMP entity."
::= { sysRtrIcmpEchoEntry 15 }
rtrIcmpEchoSuccessRate OBJECT-TYPE
SYNTAX INTEGER(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"total success rate till now"
::= { sysRtrIcmpEchoEntry 16 }
rtrIcmpEchoRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ICMP row status"
::= { sysRtrIcmpEchoEntry 17 }
------------------------------------------------------------------------------
sysRtrJitterMgt OBJECT IDENTIFIER ::= { sysNFI 6 }
sysRtrJitterTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysRtrJitterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RTR JITTER entity table"
::= { sysRtrJitterMgt 100 }
sysRtrJitterEntry OBJECT-TYPE
SYNTAX SysRtrJitterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RTR JITTER entity entry"
INDEX { rtrJitterEntityId }
::= { sysRtrJitterTable 1 }
SysRtrJitterEntry ::= SEQUENCE {
rtrJitterEntityId INTEGER,
rtrJitterState INTEGER,
rtrJitterTargetIp IpAddress,
rtrJitterTargetPort Unsigned32,
rtrJitterCodec INTEGER,
rtrJitterPktLen INTEGER,
rtrJitterPktNum INTEGER,
rtrJitterPktInterval INTEGER,
rtrJitterSchInterval Unsigned32,
rtrJitterSourceIp IpAddress,
rtrJitterSourcePort Unsigned32,
rtrJitterTimeout Unsigned32,
rtrJitterVrfName DisplayString,
rtrJitterTos INTEGER,
rtrJitterMinRtt INTEGER,
rtrJitterMaxRtt INTEGER,
rtrJitterPktLossSd INTEGER,
rtrJitterPktLossDs INTEGER,
rtrJitterDsMin INTEGER,
rtrJitterDsMax INTEGER,
rtrJitterSdMin INTEGER,
rtrJitterSdMax INTEGER,
rtrJitterDelayDsMin INTEGER,
rtrJitterDelayDsMax INTEGER,
rtrJitterDelaySdMin INTEGER,
rtrJitterDelaySdMax INTEGER,
rtrJitterIcpifMin DisplayString,
rtrJitterIcpifMax DisplayString,
rtrJitterMosMin DisplayString,
rtrJitterMosMax DisplayString,
rtrJitterRowStatus RowStatus
}
rtrJitterEntityId OBJECT-TYPE
SYNTAX INTEGER(1..2000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER entity id,index"
::= { sysRtrJitterEntry 1 }
rtrJitterState OBJECT-TYPE
SYNTAX INTEGER {
init(1),
closed(2),
request(3),
transmit(4),
finished(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTE entity£º1£init£¬2£close£¬
3£send request£¬4-send packets£¬
5£finish"
::= { sysRtrJitterEntry 2 }
rtrJitterTargetIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER responder destination ip address"
::= { sysRtrJitterEntry 3 }
rtrJitterTargetPort OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER responder destination port"
::= { sysRtrJitterEntry 4 }
rtrJitterCodec OBJECT-TYPE
SYNTAX INTEGER {
g711MULAW(1),
g711ALAW(2),
g729A(3),
userDefined(4),
invalid(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER codec type,including:
1 G711MULAW,2 G711ALAW,3 G729A,4 USER_DEFINED
5 UNKOWN"
::= { sysRtrJitterEntry 5 }
rtrJitterPktLen OBJECT-TYPE
SYNTAX INTEGER(16..1500)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER codec packet length,
read-writable when rtrJitterCodec is USER_DEFINED
else read-only
type:byte."
::= { sysRtrJitterEntry 6 }
rtrJitterPktNum OBJECT-TYPE
SYNTAX INTEGER(1..6000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER codec packet number,
read-writable when rtrJitterCodec is USER_DEFINED
else read-only."
::= { sysRtrJitterEntry 7 }
rtrJitterPktInterval OBJECT-TYPE
SYNTAX INTEGER(20..6000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER codec packet send interval,
read-writable when rtrJitterCodec is USER_DEFINED
else read-only,
type:ms"
::= { sysRtrJitterEntry 8 }
rtrJitterSchInterval OBJECT-TYPE
SYNTAX Unsigned32(1..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Jitter schedule interval,
read-writable when rtrJitterCodec is USER_DEFINED
else read-only,
type:s"
::= { sysRtrJitterEntry 9 }
rtrJitterSourceIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER source IP address"
::= { sysRtrJitterEntry 10 }
rtrJitterSourcePort OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER source port"
::= { sysRtrJitterEntry 11 }
rtrJitterTimeout OBJECT-TYPE
SYNTAX Unsigned32(0..604800000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER timeout value,type:ms,
notice,the value must no less than then interval between two schedule"
::= { sysRtrJitterEntry 12 }
rtrJitterVrfName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER vrf"
::= { sysRtrJitterEntry 13 }
rtrJitterTos OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER pakcet TOS value"
::= { sysRtrJitterEntry 14 }
rtrJitterMinRtt OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER minimal round-trip-time value in ms"
::= { sysRtrJitterEntry 15 }
rtrJitterMaxRtt OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER maximal round-trip-time value in ms"
::= { sysRtrJitterEntry 16 }
rtrJitterPktLossSd OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER total lossed pakcets which send by the source "
::= { sysRtrJitterEntry 17 }
rtrJitterPktLossDs OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER total loss pakcets which send by the target"
::= { sysRtrJitterEntry 18 }
rtrJitterDsMin OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER minimal destination to source jitter in millisecond"
::= { sysRtrJitterEntry 19 }
rtrJitterDsMax OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER maximal destionation to source jitter in millisecond"
::= { sysRtrJitterEntry 20 }
rtrJitterSdMin OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER minimal source to destination jitter in millisecond"
::= { sysRtrJitterEntry 21 }
rtrJitterSdMax OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER maximal source to destination jitter in millisecond"
::= { sysRtrJitterEntry 22 }
rtrJitterDelayDsMin OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER minimal destination to source delay in millisecond"
::= { sysRtrJitterEntry 23 }
rtrJitterDelayDsMax OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER maximal destination to source delay in millisecond"
::= { sysRtrJitterEntry 24 }
rtrJitterDelaySdMin OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER minimal souce to destionation delay in millisecond"
::= { sysRtrJitterEntry 25 }
rtrJitterDelaySdMax OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER maximal source to destination delay in millisecond"
::= { sysRtrJitterEntry 26 }
rtrJitterIcpifMin OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER minimal icpif"
::= { sysRtrJitterEntry 27 }
rtrJitterIcpifMax OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER maximal icpif"
::= { sysRtrJitterEntry 28 }
rtrJitterMosMin OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER minimal MOS"
::= { sysRtrJitterEntry 29 }
rtrJitterMosMax OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"JITTER maximal MOS"
::= { sysRtrJitterEntry 30 }
rtrJitterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"JITTER row status"
::= { sysRtrJitterEntry 31 }
------------------------------------------------------------------------------
sysRtrFlowStatisticsMgt OBJECT IDENTIFIER ::= { sysNFI 7 }
sysRtrFlowStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysRtrFlowStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RTR flow statistics table"
::= { sysRtrFlowStatisticsMgt 100 }
sysRtrFlowStatisticsEntry OBJECT-TYPE
SYNTAX SysRtrFlowStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RTR flow statistics entry"
INDEX { rtrFlStatisticsEntityId }
::= { sysRtrFlowStatisticsTable 1 }
SysRtrFlowStatisticsEntry ::= SEQUENCE {
rtrFlStatisticsEntityId INTEGER,
rtrFlStatisticsIfName DisplayString,
rtrFlStatisticsInterval INTEGER,
rtrFlStaInputMaxPkts Counter64,
rtrFlStaTmInputMaxPkts DisplayString,
rtrFlStaInputMaxFlow Counter64,
rtrFlStaTmInputMaxFlow DisplayString,
rtrFlStaInputMinPkts Counter64,
rtrFlStaTmInputMinPkts DisplayString,
rtrFlStaInputMinFlow Counter64,
rtrFlStaTmInputMinFlow DisplayString,
rtrFlStaOutputMaxPkts Counter64,
rtrFlStaTmOutputMaxPkts DisplayString,
rtrFlStaOutputMaxFlow Counter64,
rtrFlStaTmOutputMaxFlow DisplayString,
rtrFlStaOutputMinPkts Counter64,
rtrFlStaTmOutputMinPkts DisplayString,
rtrFlStaOutputMinFlow Counter64,
rtrFlStaTmOutputMinFlow DisplayString,
rtrFlowStatisticsRowStatus RowStatus
}
rtrFlStatisticsEntityId OBJECT-TYPE
SYNTAX INTEGER(1..2000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"flow statistics entity Id"
::= { sysRtrFlowStatisticsEntry 1 }
rtrFlStatisticsIfName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"interface name which will be statistic"
::= { sysRtrFlowStatisticsEntry 2 }
rtrFlStatisticsInterval OBJECT-TYPE
SYNTAX INTEGER(10..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"monitor interval in second"
::= { sysRtrFlowStatisticsEntry 3 }
rtrFlStaInputMaxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"maximal pakcets received once sampling period "
::= { sysRtrFlowStatisticsEntry 4 }
rtrFlStaTmInputMaxPkts OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"maximal time between minimal received packets number and miximal received packets number"
::= { sysRtrFlowStatisticsEntry 5 }
rtrFlStaInputMaxFlow OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"maximal flow value received"
::= { sysRtrFlowStatisticsEntry 6 }
rtrFlStaTmInputMaxFlow OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"maximal time between minimal flow value and miximal flow vlaue"
::= { sysRtrFlowStatisticsEntry 7 }
rtrFlStaInputMinPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"minimal pakcets received once sampling period "
::= { sysRtrFlowStatisticsEntry 8 }
rtrFlStaTmInputMinPkts OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"minimal time between minimal packets number and miximal packets number"
::= { sysRtrFlowStatisticsEntry 9 }
rtrFlStaInputMinFlow OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"minimal flow value received"
::= { sysRtrFlowStatisticsEntry 10 }
rtrFlStaTmInputMinFlow OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"minimal time between minimal flow value and miximal flow vlaue"
::= { sysRtrFlowStatisticsEntry 11 }
rtrFlStaOutputMaxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"maximal pakcets send once sampling period "
::= { sysRtrFlowStatisticsEntry 12 }
rtrFlStaTmOutputMaxPkts OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"maximal time between minimal send packets number and miximal send packets number"
::= { sysRtrFlowStatisticsEntry 13 }
rtrFlStaOutputMaxFlow OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"maximal flow send "
::= { sysRtrFlowStatisticsEntry 14 }
rtrFlStaTmOutputMaxFlow OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"maximal time between minimal send flow and miximal send flow "
::= { sysRtrFlowStatisticsEntry 15 }
rtrFlStaOutputMinPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"minimal pakcets send once sampling period "
::= { sysRtrFlowStatisticsEntry 16 }
rtrFlStaTmOutputMinPkts OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"minimal time between minimal send packets number and miximal send packets number"
::= { sysRtrFlowStatisticsEntry 17 }
rtrFlStaOutputMinFlow OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"minimal flow send "
::= { sysRtrFlowStatisticsEntry 18 }
rtrFlStaTmOutputMinFlow OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"minimal time between minimal send flow and miximal send flow "
::= { sysRtrFlowStatisticsEntry 19 }
rtrFlowStatisticsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"flow statistics row status"
::= { sysRtrFlowStatisticsEntry 20 }
------------------------------------------------------------------------------
sysRtrUdpechoMgt OBJECT IDENTIFIER ::= { sysNFI 8 }
sysRtrUdpechoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysRtrUdpechoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RTR UDPECHO entity table"
::= { sysRtrUdpechoMgt 100 }
sysRtrUdpechoEntry OBJECT-TYPE
SYNTAX SysRtrUdpechoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RTR UDPECHO entity entry"
INDEX { rtrUdpechoEntityId }
::= { sysRtrUdpechoTable 1 }
SysRtrUdpechoEntry ::= SEQUENCE {
rtrUdpechoEntityId INTEGER,
rtrUdpechoState INTEGER,
rtrUdpechoTargetIp IpAddress,
rtrUdpechoTargetPort Unsigned32,
rtrUdpechoPktLen INTEGER,
rtrUdpechoSchInterval Unsigned32,
rtrUdpechoSourceIp IpAddress,
rtrUdpechoSourcePort Unsigned32,
rtrUdpechoTimeout Unsigned32,
rtrUdpechoVrfName DisplayString,
rtrUdpechoTos INTEGER,
rtrUdpechoPktLoss INTEGER,
rtrUdpechoPktSucc INTEGER,
rtrUdpechoDelay INTEGER,
rtrUdpechoDelayMin INTEGER,
rtrUdpechoDelayMax INTEGER,
rtrUdpechoRowStatus RowStatus
}
rtrUdpechoEntityId OBJECT-TYPE
SYNTAX INTEGER(1..2000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO entity id,index"
::= { sysRtrUdpechoEntry 1 }
rtrUdpechoState OBJECT-TYPE
SYNTAX INTEGER {
init(1),
closed(2),
request(3),
transmit(4),
finished(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDPECHO entity£º1£init£¬2£close£¬
3£send request£¬4-send packets£¬
5£finish"
::= { sysRtrUdpechoEntry 2 }
rtrUdpechoTargetIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO responder destination ip address"
::= { sysRtrUdpechoEntry 3 }
rtrUdpechoTargetPort OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO responder destination port"
::= { sysRtrUdpechoEntry 4 }
rtrUdpechoPktLen OBJECT-TYPE
SYNTAX INTEGER(4..1500)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO packet length"
::= { sysRtrUdpechoEntry 5 }
rtrUdpechoSchInterval OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO schedule interval,
type:s"
::= { sysRtrUdpechoEntry 6 }
rtrUdpechoSourceIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO source IP address"
::= { sysRtrUdpechoEntry 7 }
rtrUdpechoSourcePort OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO source port"
::= { sysRtrUdpechoEntry 8 }
rtrUdpechoTimeout OBJECT-TYPE
SYNTAX Unsigned32(0..604800000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO timeout value,type:ms,
notice,the value must no less than then interval between two schedule"
::= { sysRtrUdpechoEntry 9 }
rtrUdpechoVrfName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO vrf"
::= { sysRtrUdpechoEntry 10 }
rtrUdpechoTos OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO pakcet TOS value"
::= { sysRtrUdpechoEntry 11 }
rtrUdpechoPktLoss OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDPECHO total lossed pakcets which send by the source "
::= { sysRtrUdpechoEntry 12 }
rtrUdpechoPktSucc OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDPECHO total pakcets sent and received successfully"
::= { sysRtrUdpechoEntry 13 }
rtrUdpechoDelay OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDPECHO destination to source and source to destinatino delay in millisecond"
::= { sysRtrUdpechoEntry 14 }
rtrUdpechoDelayMin OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDPECHO maximal destination to source and source to destinatino delay in millisecond"
::= { sysRtrUdpechoEntry 15 }
rtrUdpechoDelayMax OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"UDPECHO maximal destination to source and source to destinatino delay in millisecond"
::= { sysRtrUdpechoEntry 16 }
rtrUdpechoRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UDPECHO row status"
::= { sysRtrUdpechoEntry 17 }
------------------------------------------------------------------------------
sysIfStatistic OBJECT IDENTIFIER ::= { iosObjects 300 }
------------------------------------------------------------------------------
sysIfPktPriStatistics OBJECT IDENTIFIER ::= { sysIfStatistic 1 }
sysIfPktPriStaTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysIfPktPriStaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics of interface's flow based on
the precedence of IP packet. The index of this table is
priority and ifIndex"
::= { sysIfPktPriStatistics 100 }
sysIfPktPriStaEntry OBJECT-TYPE
SYNTAX SysIfPktPriStaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics of interface's flow based on
the precedence of IP packet. The index of this table is
priority and ifIndex"
INDEX { sysIfPktPriority, sysIfIndex }
::= { sysIfPktPriStaTable 1 }
SysIfPktPriStaEntry ::= SEQUENCE {
sysIfPktPriority INTEGER,
sysIfIndex INTEGER,
sysIfDesc DisplayString,
sysIfInOctets Counter,
sysIfInUcastPkts Counter,
sysIfInNUcastPkts Counter,
sysIfInDiscards Counter,
sysIfInErrors Counter,
sysIfInUnkownProtos Counter,
sysIfOutOctets Counter,
sysIfOutUcastPkts Counter,
sysIfOutNUcastPkts Counter,
sysIfOutDiscards Counter,
sysIfOutErrors Counter
}
sysIfPktPriority OBJECT-TYPE
SYNTAX INTEGER {
priority0(1),
priority1(2),
priority2(3),
priority3(4),
priority4(5),
priority5(6),
priority6(7),
priority7(8),
other(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The precedence of IP packet, it start from 1 to 9.
Numeric one represent the precedence 0, two represent
1 and so on. 9 represent the number of non-IP packet."
::= { sysIfPktPriStaEntry 1 }
sysIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of interface in the system"
::= { sysIfPktPriStaEntry 2 }
sysIfDesc OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of interface assigned to"
::= { sysIfPktPriStaEntry 3 }
sysIfInOctets OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface received bytes at specified precedence"
::= { sysIfPktPriStaEntry 4 }
sysIfInUcastPkts OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of subnetwork-unicast packets delivered
to a higher-layer protocol with specified precedence."
::= { sysIfPktPriStaEntry 5 }
sysIfInNUcastPkts OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of non-unicast (i.e., subnetwork- broadcast or
subnetwork-multicast) packets delivered to a higher-layer
protocol."
::= { sysIfPktPriStaEntry 6 }
sysIfInDiscards OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound packets which were chosen to be
discarded"
::= { sysIfPktPriStaEntry 7 }
sysIfInErrors OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound packets that contained errors
preventing them from being deliverable to a higher-layer
protocol."
::= { sysIfPktPriStaEntry 8 }
sysIfInUnkownProtos OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received via the interface which
were discarded because of an unknown or unsupported
protocol."
::= { sysIfPktPriStaEntry 9 }
sysIfOutOctets OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted out of the
interface, including framing characters."
::= { sysIfPktPriStaEntry 10 }
sysIfOutUcastPkts OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets that higher-level protocols
requested be transmitted to a subnetwork-unicast address,
including those that were discarded or not sent."
::= { sysIfPktPriStaEntry 11 }
sysIfOutNUcastPkts OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets that higher-level protocols
requested be transmitted to a non- unicast (i.e., a
subnetwork-broadcast or subnetwork-multicast) address,
including those that were discarded or not sent."
::= { sysIfPktPriStaEntry 12 }
sysIfOutDiscards OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound packets which were chosen to be
even though no errors had been detected to prevent their
being transmitted. One possible reason for discarding
such a packet could be to free up buffer space."
::= { sysIfPktPriStaEntry 13 }
sysIfOutErrors OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outbound packets that could not be
transmitted because of errors."
::= { sysIfPktPriStaEntry 14 }
END
|