summaryrefslogtreecommitdiff
path: root/MIBS/ibm/IBMIROC-MIB
blob: db7c190b4ac7325a08fe43a0b8b6413e1a984de5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
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
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
IBMIROC-MIB DEFINITIONS ::= BEGIN

------------------------------------------------------------------
-- IBM Routing Code (IROC) Enterprise MIB (SNMP Version 1 Format)
------------------------------------------------------------------
--
--    This MIB defines the enterprise specific management
--    objects for functions that are common to the base IBM
--    routing software.
--
--    This MIB is defined in the SNMP version 1 SMI format.
--
--    September 10th, 1999
--
--    Contact Information:
--
--            Randy Worzella
--            IBM Corp.
--            G420/664
--            Research Triangle Park, NC 27709
--
--            phone:    919-254-2202
--            email:    worzella@us.ibm.com
--
------------------------------------------------------------------

IMPORTS
         enterprises, Counter, Gauge, TimeTicks, IpAddress
                  FROM RFC1155-SMI
         DisplayString
                  FROM RFC1213-MIB
         frCircuitIfIndex, frCircuitDlci
                  FROM RFC1315-MIB
         proResMemHeapTotal, proResMemHeapNeverAlloc, proElsSubSysEventMsg
                  FROM PROTEON-MIB
         TRAP-TYPE
                  FROM RFC-1215
         OBJECT-TYPE
                  FROM RFC-1212;

-- Path to ibmIROC

ibm      OBJECT IDENTIFIER ::= { enterprises 2 }
ibmProd  OBJECT IDENTIFIER ::= { ibm 6 }
ibmIROC  OBJECT IDENTIFIER ::= { ibmProd 119 }

------------------------------------------------------------------
-- Textual Conventions
------------------------------------------------------------------
MacAddressNCIROC ::= OCTET STRING (SIZE(6))   -- 802 MAC addr in non-canonical format

------------------------------------------------------------------
-- IBM IROC Anchor
------------------------------------------------------------------
ibmIROCadmin     OBJECT IDENTIFIER ::= { ibmIROC 1 }
ibmIROCsystem    OBJECT IDENTIFIER ::= { ibmIROC 2 }
ibmIROChardware  OBJECT IDENTIFIER ::= { ibmIROC 3 }
ibmIROCrouting   OBJECT IDENTIFIER ::= { ibmIROC 4 }
ibmIROCswitching OBJECT IDENTIFIER ::= { ibmIROC 5 }
ibmIROCtraps     OBJECT IDENTIFIER ::= { ibmIROC 6 }
ibmIROCconfig    OBJECT IDENTIFIER ::= { ibmIROC 7 }

------------------------------------------------------------------
-- IBM IROC Administrative
------------------------------------------------------------------
ibmIROCadminproducts   OBJECT IDENTIFIER ::= { ibmIROCadmin 1 }
ibmIROCadminOID        OBJECT IDENTIFIER ::= { ibmIROCadmin 2 }
ibmIROCadminDebug      OBJECT IDENTIFIER ::= { ibmIROCadmin 3 }
ibmIROCadminSnmp       OBJECT IDENTIFIER ::= { ibmIROCadmin 4 }

------------------------------------------------------------------
-- IBM IROC System
------------------------------------------------------------------
ibmIROCsystemInfo      OBJECT IDENTIFIER ::= { ibmIROCsystem 1 }
ibmIROCcfgInfo         OBJECT IDENTIFIER ::= { ibmIROCsystem 2 }
-- { ibmIROCsystem 3 } is reserved for Thinserver MIB branch
ibmIROCdumpInfo        OBJECT IDENTIFIER ::= { ibmIROCsystem 4 }

------------------------------------------------------------------
-- IBM IROC Hardware
------------------------------------------------------------------
ibmIROChardwareInfo    OBJECT IDENTIFIER ::= { ibmIROChardware 1 }

------------------------------------------------------------------
-- IBM IROC Routing
--
-- NOTES: ibmIROCrouting 1 is reserved
--
------------------------------------------------------------------
ibmIROCroutingppp      OBJECT IDENTIFIER ::= { ibmIROCrouting 2 }
ibmIROCroutingdlsw     OBJECT IDENTIFIER ::= { ibmIROCrouting 3 }
ibmIROCroutingfr       OBJECT IDENTIFIER ::= { ibmIROCrouting 4 }

ibmIROCroutingRlan     OBJECT IDENTIFIER ::= { ibmIROCrouting 5 }
ibmIROCroutingDialOut  OBJECT IDENTIFIER ::= { ibmIROCrouting 6 }

ibmIROCroutingl2tp     OBJECT IDENTIFIER ::= { ibmIROCrouting 7 }
ibmCacheServer         OBJECT IDENTIFIER ::= { ibmIROCrouting 8 }
ibmIROCroutingIpSec    OBJECT IDENTIFIER ::= { ibmIROCrouting 9 }

ibmIROCswhw            OBJECT IDENTIFIER ::= { ibmIROCrouting 10 }

ibmWanRestoralRerouteMIB  OBJECT IDENTIFIER ::= { ibmIROCrouting 11 }
ibmBANMIB                 OBJECT IDENTIFIER ::= { ibmIROCrouting 12 }

ibmIROCrmon               OBJECT IDENTIFIER ::= { ibmIROCrouting 13 }

ibmIROCescon              OBJECT IDENTIFIER ::= { ibmIROCrouting 14 }

ibmIROCVPNpolicy          OBJECT IDENTIFIER ::= { ibmIROCrouting 15 }

ibmIROCroutingvoice       OBJECT IDENTIFIER ::= { ibmIROCrouting 16 }

ibmIROCroutinginterface   OBJECT IDENTIFIER ::= { ibmIROCrouting 17 }

ibmIROCroutingtn3270e     OBJECT IDENTIFIER ::= { ibmIROCrouting 18 }

-- Anchor 19 defined in another release

ibmIROCroutingtcpip       OBJECT IDENTIFIER ::= { ibmIROCrouting 20 }

------------------------------------------------------------------
-- IBM IROC Switching
------------------------------------------------------------------
-- Nothing defined yet !!

------------------------------------------------------------------
-- IBM IROC Config
--
-- NOTE: DO NOT DEFINE ANY OIDs UNDER THIS BRANCH WITHOUT
--       FIRST CONTACTING THE SNMP TEAM!!!
--
------------------------------------------------------------------
ibmIROCconfigAuth      OBJECT IDENTIFIER ::= { ibmIROCconfig 2 }

-- { ibmIROCconfig 3 } is reserved for ibmIROCconfigToolLoad timed load objects
--
-- Currently, they define:
--
--   1.3.6.1.4.1.2.6.119.7.3.1.0   A simple object for timed load time value
--
--   1.3.6.1.4.1.2.6.119.7.3.2.block.rec.inst   An SRAM octet string
--

ibmIROCconfigWrite OBJECT-TYPE
    SYNTAX  INTEGER   {
             noaction  (1),
             write     (2)
            }
    ACCESS  read-write
    STATUS  mandatory
    DESCRIPTION
            "This object is a trigger to cause the current config
             image in memory to be written to disk or flash. A
             SET of this object to write(2) performs the same
             action as the T6 write command. A GET of this
             object with always return a value of noaction(1)."
    ::= { ibmIROCconfig 4 }

------------------------------------------------------------------
-- System Information
------------------------------------------------------------------
------------------------------------------------------------------
-- SNMP Agent Status
------------------------------------------------------------------
ibmIROCAgentDebug  OBJECT IDENTIFIER ::= { ibmIROCadminDebug 1 }

agentMemUse OBJECT-TYPE
    SYNTAX  Gauge
    ACCESS  read-only
    STATUS  mandatory
    DESCRIPTION
            "This object indicates the current amount (in bytes)
             of dynamic memory allocated and in use by the SNMP
             agent. It is primarily in place to watch for any
             potential 'memory leaks', whereby, memory is allocated
             but never freed. This condition is indicated by an
             ever increasing value for this gauge."
    ::= { ibmIROCAgentDebug 1 }

------------------------------------------------------------------
-- SNMP Authentication Failure Trap
------------------------------------------------------------------
ibmIROCSnmpAuthFail  OBJECT IDENTIFIER ::= { ibmIROCadminSnmp 1 }

authTrapSourceIPAddr OBJECT-TYPE
    SYNTAX  IpAddress
    ACCESS  read-only
    STATUS  mandatory
    DESCRIPTION
            "This object indicates the IP address of sender of the
             MIB request that fails authentication.  An authentication
             failure trap is generated when the SNMP agent
             recives a MIB request does not have the proper
             community name."
    ::= { ibmIROCSnmpAuthFail 1}

------------------------------------------------------------------
-- System dump identification
------------------------------------------------------------------
ibmSysDumpTable  OBJECT-TYPE
    SYNTAX     SEQUENCE OF IbmSysDumpEntry
    ACCESS     not-accessible
    STATUS     mandatory
    DESCRIPTION
      "Table to provide system dump identification information."
    ::= { ibmIROCdumpInfo 1 }

ibmSysDumpEntry  OBJECT-TYPE
    SYNTAX     IbmSysDumpEntry
    ACCESS     not-accessible
    STATUS     mandatory
    DESCRIPTION
       "The dump identification information for a single system dump."
    INDEX   {ibmSysDumpIndex}
    ::= { ibmSysDumpTable 1 }

IbmSysDumpEntry ::= SEQUENCE {
    ibmSysDumpIndex                   INTEGER,
    ibmSysDumpFileName                DisplayString,
    ibmSysDumpFileDate                DisplayString,

    ibmSysDumpBuild                   DisplayString,
    ibmSysDumpBuilder                 DisplayString,
    ibmSysDumpBuildName               DisplayString,
    ibmSysDumpRetainName              DisplayString,
    ibmSysDumpProductNumber           DisplayString,
    ibmSysDumpBuildDate               DisplayString,

    ibmSysDumpFatalMsg1               DisplayString,
    ibmSysDumpFatalMsg2               DisplayString,
    ibmSysDumpFatalMsg3               DisplayString,
    ibmSysDumpFatalMsg4               DisplayString,
    ibmSysDumpFatalMsg5               DisplayString,
    ibmSysDumpRemoteIPAddr            DisplayString,
    ibmSysDumpRemotePath              DisplayString
    }

ibmSysDumpIndex  OBJECT-TYPE
    SYNTAX       INTEGER
    ACCESS       read-only
    STATUS       mandatory
    DESCRIPTION
       "A unique identifier for a system dump entry."
    ::= { ibmSysDumpEntry 1 }

ibmSysDumpFileName    OBJECT-TYPE
    SYNTAX            DisplayString
    ACCESS            read-only
    STATUS            mandatory
    DESCRIPTION
       "The system dump file name."
    ::= { ibmSysDumpEntry 2 }

ibmSysDumpFileDate    OBJECT-TYPE
    SYNTAX            DisplayString
    ACCESS            read-only
    STATUS            mandatory
    DESCRIPTION
       "The creation date of the dump file."
    ::= { ibmSysDumpEntry 3 }

ibmSysDumpBuild       OBJECT-TYPE
    SYNTAX            DisplayString
    ACCESS            read-only
    STATUS            mandatory
    DESCRIPTION
       "The level of software running on the router when this dump occurred."
    ::= { ibmSysDumpEntry 4 }

ibmSysDumpBuilder     OBJECT-TYPE
    SYNTAX            DisplayString
    ACCESS            read-only
    STATUS            mandatory
    DESCRIPTION
       "The entity responsible for building the software running on the router."
    ::= { ibmSysDumpEntry 5 }

ibmSysDumpBuildName   OBJECT-TYPE
    SYNTAX            DisplayString
    ACCESS            read-only
    STATUS            mandatory
    DESCRIPTION
       "The internal name of the software running on the router."
    ::= { ibmSysDumpEntry 6 }

ibmSysDumpRetainName  OBJECT-TYPE
    SYNTAX            DisplayString
    ACCESS            read-only
    STATUS            mandatory
    DESCRIPTION
       "The external name of the software running on the router."
    ::= { ibmSysDumpEntry 7 }

ibmSysDumpProductNumber  OBJECT-TYPE
    SYNTAX               DisplayString
    ACCESS               read-only
    STATUS               mandatory
    DESCRIPTION
       "The program product number of the software running on the router."
    ::= { ibmSysDumpEntry 8 }

ibmSysDumpBuildDate      OBJECT-TYPE
    SYNTAX               DisplayString
    ACCESS               read-only
    STATUS               mandatory
    DESCRIPTION
       "The creation date of the software running on the router."
    ::= { ibmSysDumpEntry 9 }

ibmSysDumpFatalMsg1      OBJECT-TYPE
    SYNTAX               DisplayString
    ACCESS               read-only
    STATUS               mandatory
    DESCRIPTION
       "The first error/fatal message associated with the dump.
        Depending on the nature of the failure, this object may or
        may not contain any information."
    ::= { ibmSysDumpEntry 10 }

ibmSysDumpFatalMsg2      OBJECT-TYPE
    SYNTAX               DisplayString
    ACCESS               read-only
    STATUS               mandatory
    DESCRIPTION
       "The first error/fatal message associated with the dump.
        Depending on the nature of the failure, this object may or
        may not contain any information."
    ::= { ibmSysDumpEntry 11 }

ibmSysDumpFatalMsg3      OBJECT-TYPE
    SYNTAX               DisplayString
    ACCESS               read-only
    STATUS               mandatory
    DESCRIPTION
       "The first error/fatal message associated with the dump.
        Depending on the nature of the failure, this object may or
        may not contain any information."
    ::= { ibmSysDumpEntry 12 }

ibmSysDumpFatalMsg4      OBJECT-TYPE
    SYNTAX               DisplayString
    ACCESS               read-only
    STATUS               mandatory
    DESCRIPTION
       "The first error/fatal message associated with the dump.
        Depending on the nature of the failure, this object may or
        may not contain any information."
    ::= { ibmSysDumpEntry 13 }

ibmSysDumpFatalMsg5      OBJECT-TYPE
    SYNTAX               DisplayString
    ACCESS               read-only
    STATUS               mandatory
    DESCRIPTION
       "The first error/fatal message associated with the dump.
        Depending on the nature of the failure, this object may or
        may not contain any information."
    ::= { ibmSysDumpEntry 14 }

ibmSysDumpRemoteIPAddr   OBJECT-TYPE
    SYNTAX               DisplayString
    ACCESS               read-only
    STATUS               mandatory
    DESCRIPTION
       "For platforms that may operate without a fixed disk, if this
        string is non null, it represents the remote host IP address
        where the dump was transferred."
    ::= { ibmSysDumpEntry 15 }

ibmSysDumpRemotePath     OBJECT-TYPE
    SYNTAX               DisplayString
    ACCESS               read-only
    STATUS               mandatory
    DESCRIPTION
       "For platforms that may operate without a fixed disk, if this
        string is non null, it represents the remote host file path
        where the dump was transferred."
    ::= { ibmSysDumpEntry 16 }


------------------------------------------------------------------
-- Hardware Information
------------------------------------------------------------------
platformType OBJECT-TYPE
        SYNTAX          INTEGER   {
           plat-other             (1),
           plat-mss-8210          (2),
           plat-mss-blade         (3),
           plat-mss-client        (4),
           plat-2216-400          (5),
           plat-2210-1s4          (6),
           plat-2210-1s8          (7),
           plat-2210-1u4          (8),
           plat-2210-1u8          (9),
           plat-2210-24e          (10),
           plat-2210-24m          (11),
           plat-2210-24t          (12),
           plat-2210-14t          (13),
           plat-2210-125          (14),
           plat-2210-127          (15),
           plat-2210-121          (16),
           plat-2210-12t          (17),
           plat-2210-126          (18),
           plat-2210-128          (19),
           plat-2210-122          (20),
           plat-2210-12e          (21),
           plat-2220-200          (22),
           plat-3746-MAE          (23),
           plat-mss-domain-client (24),
           plat-mss-8210V2        (25),
           plat-mss-bladeV2       (26),
           plat-netu-xx1          (27),
           plat-2212-10F          (28),
           plat-2212-10H          (29),
           plat-2212-40F          (30),
           plat-2212-40H          (31),
           plat-8371              (32),
           plat-8375              (33),
           plat-2212-15F          (34),
           plat-2212-15H          (35),
           plat-2212-45F          (36),
           plat-2212-45H          (37),
           plat-reserved1         (38),
           plat-reserved2         (39),
           plat-8275-RR           (40),
           plat-8371-8260B        (41),
           plat-reserved          (42)
        }
    ACCESS  read-only
    STATUS  mandatory
    DESCRIPTION
            "The platform type containing this SNMP agent."
    ::= { ibmIROChardwareInfo 1 }

platformDRAMSize OBJECT-TYPE
    SYNTAX  INTEGER
    ACCESS  read-only
    STATUS  mandatory
    DESCRIPTION
            "The amount of dynamic RAM (Megabytes) installed on this platform.
             DRAM is used to contain the routing software and
             associated data areas."
    ::= { ibmIROChardwareInfo 2 }

platformFLASHSize OBJECT-TYPE
    SYNTAX  INTEGER
    ACCESS  read-only
    STATUS  mandatory
    DESCRIPTION
            "The amount of flash memory (Megabytes) installed on the 2210.
             Flash is used to hold configuration and software code
             loads, one pair of which can be loaded and made active
             on the platform.

             This object applies only to 2210, since other platforms' may or may not
             have FLASH, and if so, the size is not of interest. For these platforms,
             this object will take on a value of 0."
    ::= { ibmIROChardwareInfo 3 }

platformNVRAMSize OBJECT-TYPE
    SYNTAX  INTEGER
    ACCESS  read-only
    STATUS  mandatory
    DESCRIPTION
            "The amount of non-volatile memory (Kilobytes) installed on the 2210.
             NVRAM, sometimes referred to as SRAM, is used to hold the active
             configuration records.

             This object applies only to 2210, since other platforms' may or may not
             have NVRAM, and if so, the size is not of interest. For these platforms,
             this object will take on a value of 0."
    ::= { ibmIROChardwareInfo 4 }

platformFeatureSlot OBJECT-TYPE
        SYNTAX          INTEGER   {
           none                 (1),
           isdn-BRI-ST          (2),
           isdn-PRI-E1-120      (3),
           isdn-PRI-E1-75       (4),
           isdn-PRI-T1J1        (5),
           atm-155              (6),
           atm-25               (7),
           serial-wan-4port     (8),
           serial-wan-8port     (9),
           modem-4port          (10),
           modem-8port          (11),
           isdn-BRI-4port-ST    (12),
           isdn-BRI-4port-U     (13),
           isdn-voice-ST-FXO    (14),
           isdn-voice-ST-FXS    (15),
           isdn-voice-ST-EM     (16),
           isdn-voice-U-FXO     (17),
           isdn-voice-U-FXS     (18),
           isdn-voice-U-EM      (19)
        }
    ACCESS  read-only
    STATUS  mandatory
    DESCRIPTION
            "The type of adapter installed in the feature slot of the
             2210 platform. Note that not all adapter types listed
             above are currently supported, nor does this imply they
             will be supported in the future."
    ::= { ibmIROChardwareInfo 5 }

------------------------------------------------------------------
-- Routing Information
------------------------------------------------------------------
------------------------------------------------------------------
-- PPP Protocol and Control Protocol Statistics
------------------------------------------------------------------

   pppProtocolTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppProtocolEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of protocol and control protocol
           statistics for protocols supported by PPP."
        ::= { ibmIROCroutingppp 1 }

   pppProtocolEntry  OBJECT-TYPE
        SYNTAX      PppProtocolEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of protocol and control protocol information
           for a specific protocol supported by PPP."
        INDEX   { pppProtocolIfIndex, pppProtocolId }
        ::= { pppProtocolTable 1 }

   PppProtocolEntry ::= SEQUENCE {
        pppProtocolIfIndex          INTEGER,
        pppProtocolId               INTEGER,
        pppProtocolRegistered       INTEGER,
        pppProtocolState            INTEGER,
        pppProtocolPreviousState    INTEGER,
        pppProtocolLastTimeChange   TimeTicks,
        pppProtocolCtlInRejects     Counter,
        pppProtocolCtlInOctets      Counter,
        pppProtocolCtlInPkts        Counter,
        pppProtocolCtlOutOctets     Counter,
        pppProtocolCtlOutPkts       Counter,
        pppProtocolDataInRejects    Counter,
        pppProtocolDataInOctets     Counter,
        pppProtocolDataInPkts       Counter,
        pppProtocolDataOutOctets    Counter,
        pppProtocolDataOutPkts      Counter
        }

   pppProtocolIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for an interface running PPP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppProtocolEntry 1 }

   pppProtocolId OBJECT-TYPE
        SYNTAX          INTEGER   {
           ip                   (1),
           decnet               (2),
           ipx                  (3),
           bridge               (4),
           appletalk            (5),
           osi                  (6),
           appnhpr              (7),
           appnisr              (8),
           vines                (9),
           compression          (10),
           netbios              (11),
           netbios-forw         (12),
           bandwidth-allocation (13),
           encryption           (14),
           ipv6                 (15)
        }
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier of a protocol supported by PPP."
        ::= { pppProtocolEntry 2 }

   pppProtocolRegistered OBJECT-TYPE
        SYNTAX          INTEGER   {
           yes                  (1),
           no                   (2)
        }
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Indicates whether this protocol is registered with PPP."
        ::= { pppProtocolEntry 3 }

   pppProtocolState OBJECT-TYPE
        SYNTAX          INTEGER   {
           closed               (1),
           listen               (2),
           requestSent          (3),
           ackReceived          (4),
           ackSent              (5),
           opened               (6),
           termSent             (7)
        }
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "The value identifies the present state of the
            protocol."
        ::= { pppProtocolEntry 4 }

   pppProtocolPreviousState OBJECT-TYPE
        SYNTAX          INTEGER    {
           closed               (1),
           listen               (2),
           requestSent          (3),
           ackReceived          (4),
           ackSent              (5),
           opened               (6),
           termSent             (7)
        }
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "The state of the protocol prior to the state given by
            pppProtocolState.

            These states are the same as those described for the object
            pppProtocolState. "
        ::= { pppProtocolEntry 5 }

   pppProtocolLastTimeChange OBJECT-TYPE
        SYNTAX          TimeTicks
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "The value of sysUpTime when the last
            protocol state change occurred."
        ::= { pppProtocolEntry 6 }

------------------------------------------------------------------
-- PPP Network Control Protocol Statistics
------------------------------------------------------------------

   pppProtocolCtlInRejects OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of a control protocol protocol-reject
            packets received over the PPP interface."
        ::= { pppProtocolEntry 7 }

   pppProtocolCtlInOctets OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of control protocol octets received
            over the PPP interface."
        ::= { pppProtocolEntry 8 }

   pppProtocolCtlInPkts OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of control protocol packets
            received over the PPP interface."
        ::= { pppProtocolEntry 9 }

   pppProtocolCtlOutOctets OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of control protocol octets transmitted over
            the PPP interface."
        ::= { pppProtocolEntry 10 }

   pppProtocolCtlOutPkts OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of a control protocol packets
            transmitted over the PPP interface."
        ::= { pppProtocolEntry 11 }

------------------------------------------------------------------
-- PPP Protocol Statistics
------------------------------------------------------------------

   pppProtocolDataInRejects   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of protocol reject packets
            received over the PPP interface."
        ::= { pppProtocolEntry 12 }

   pppProtocolDataInOctets  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of protocol octets received over
            the PPP interface."
        ::= { pppProtocolEntry 13 }

   pppProtocolDataInPkts    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of protocol packets received
            over the PPP interface."
        ::= { pppProtocolEntry 14 }

   pppProtocolDataOutOctets OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of protocol octets transmitted over the
            PPP interface."
        ::= { pppProtocolEntry 15 }

   pppProtocolDataOutPkts   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of protocol packets transmitted
            over the PPP interface."
        ::= { pppProtocolEntry 16 }

------------------------------------------------------------------
-- PPP Link Error Statistics
------------------------------------------------------------------

   pppLinkErrTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppLinkErrEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of link error statistics."
        ::= { ibmIROCroutingppp 2 }

   pppLinkErrEntry  OBJECT-TYPE
        SYNTAX      PppLinkErrEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of link error information
           for a specific interface."
        INDEX   { pppLinkErrIfIndex }
        ::= { pppLinkErrTable 1 }

   PppLinkErrEntry ::= SEQUENCE {
        pppLinkErrIfIndex      INTEGER,
        pppLinkErrBadAddrs     Counter,
        pppLinkErrLastBadAddr  OCTET STRING,
        pppLinkErrBadCtrls     Counter,
        pppLinkErrLastBadCtrl  OCTET STRING,
        pppLinkErrUnkProtos    Counter,
        pppLinkErrLastUnkProto OCTET STRING,
        pppLinkErrInvProtos    Counter,
        pppLinkErrLastInvProto OCTET STRING,
        pppLinkErrConfigTOs    Counter,
        pppLinkErrTermTOs      Counter
        }

   pppLinkErrIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for an interface running PPP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppLinkErrEntry 1 }

   pppLinkErrBadAddrs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of packets received with a bad
            Address field."
        ::= { pppLinkErrEntry 2 }

   pppLinkErrLastBadAddr OBJECT-TYPE
        SYNTAX          OCTET STRING (SIZE(1))
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "The last bad Address field received."
        ::= { pppLinkErrEntry 3 }

   pppLinkErrBadCtrls OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of packets received with a bad
            Control field."
        ::= { pppLinkErrEntry 4 }

   pppLinkErrLastBadCtrl OBJECT-TYPE
        SYNTAX          OCTET STRING (SIZE(1))
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "The last bad Control field received."
        ::= { pppLinkErrEntry 5 }

   pppLinkErrUnkProtos OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of packets received with a Protocol
            identifier not registered with PPP."
        ::= { pppLinkErrEntry 6 }

   pppLinkErrLastUnkProto OBJECT-TYPE
        SYNTAX          OCTET STRING (SIZE(2))
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "The last unknown Protocol identifier received."
        ::= { pppLinkErrEntry 7 }

   pppLinkErrInvProtos OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of packets received with a Protocol
            identifier that is not valid."
        ::= { pppLinkErrEntry 8 }

   pppLinkErrLastInvProto OBJECT-TYPE
        SYNTAX          OCTET STRING (SIZE(2))
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "The last invalid Protocol identifier received."
        ::= { pppLinkErrEntry 9 }

   pppLinkErrConfigTOs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of timeouts that occurred
            on this link when sending a config request
            to open the PPP link."
        ::= { pppLinkErrEntry 10 }

   pppLinkErrTermTOs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of timeouts that occurred
            on this link when sending a terminate request
            to close the PPP link."
        ::= { pppLinkErrEntry 11 }

------------------------------------------------------------------
-- PPP Link Control Protocol Statistics
------------------------------------------------------------------

   pppLCProtoTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppLCProtoEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of link control protocol statistics."
        ::= { ibmIROCroutingppp 3 }

   pppLCProtoEntry  OBJECT-TYPE
        SYNTAX      PppLCProtoEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of link control protocol information
           for a specific interface."
        INDEX   { pppLCProtoIfIndex }
        ::= { pppLCProtoTable 1 }

   PppLCProtoEntry ::= SEQUENCE {
        pppLCProtoIfIndex      INTEGER,
        pppLCProtoState        INTEGER,
        pppLCProtoPreviousState INTEGER,
        pppLCProtoLastTimeChange TimeTicks,

        pppLCProtoOutPackets   Counter,
        pppLCProtoOutOctets    Counter,
        pppLCProtoOutCRs       Counter,
        pppLCProtoOutCAs       Counter,
        pppLCProtoOutCNs       Counter,
        pppLCProtoOutCRejs     Counter,
        pppLCProtoOutTRs       Counter,
        pppLCProtoOutTAs       Counter,
        pppLCProtoOutCodeRejs  Counter,
        pppLCProtoOutEchoReqs  Counter,
        pppLCProtoOutEchoReps  Counter,
        pppLCProtoOutDiscReqs  Counter,
        pppLCProtoOutResetReqs Counter,
        pppLCProtoOutResetAcks Counter,
        pppLCProtoOutIdents    Counter,
        pppLCProtoOutTimeRemains Counter,

        pppLCProtoInRejects    Counter,
        pppLCProtoInPackets    Counter,
        pppLCProtoInOctets     Counter,
        pppLCProtoInCRs        Counter,
        pppLCProtoInCAs        Counter,
        pppLCProtoInCNs        Counter,
        pppLCProtoInCRejs      Counter,
        pppLCProtoInTRs        Counter,
        pppLCProtoInTAs        Counter,
        pppLCProtoInCodeRejs   Counter,
        pppLCProtoInEchoReqs   Counter,
        pppLCProtoInEchoReps   Counter,
        pppLCProtoInDiscReqs   Counter,
        pppLCProtoInResetReqs  Counter,
        pppLCProtoInResetAcks  Counter,
        pppLCProtoInIdents     Counter,
        pppLCProtoInTimeRemains Counter
        }

   pppLCProtoIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for an interface running PPP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppLCProtoEntry 1 }

   pppLCProtoState OBJECT-TYPE
        SYNTAX          INTEGER   {
           closed               (1),
           listen               (2),
           requestSent          (3),
           ackReceived          (4),
           ackSent              (5),
           opened               (6),
           termSent             (7)
        }
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "The value identifies the present state of the PPP
            link.

            The closed(1) state indicates that the link is down and
            there is no attempt being made to open it and all connection
            requests from peers are rejected.

            In listen(2) state, the link
            is down and there is no attempt being made to open it, however,
            all the connection requests from peers are accepted.

            The state
            request-sent(3) indicates that an active attempt is being made
            to open the link. In this state, a Configure-request packet has
            been sent and no Configure-Ack has yet been received.

            In the
            state ack-received(4), a Configure-request packet has been sent
            and Configure-Ack packet has been received.

            The state ack-sent(5)
            indicates that a Congigure-request and Configure-Ack packets
            have been sent and Configure-Ack has not yet been received.

            The opened(6) state implies that a connection has been made and
            data may be sent.

            The state term-sent(7) indicates that an
            attempt is being made to close the connection and that a
            Terminate-request packet has been sent and a Terminate-Ack
            packet has not yet been received. "
        ::= { pppLCProtoEntry 2 }

   pppLCProtoPreviousState OBJECT-TYPE
        SYNTAX          INTEGER    {
           closed               (1),
           listen               (2),
           requestSent          (3),
           ackReceived          (4),
           ackSent              (5),
           opened               (6),
           termSent             (7)
        }
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "The state of the PPP link prior to the state given by
            pppLCProtoState.

            These states are the same as those described for the object
            pppLCProtoState. "
        ::= { pppLCProtoEntry 3 }

   pppLCProtoLastTimeChange OBJECT-TYPE
        SYNTAX          TimeTicks
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "The value of sysUpTime when the last
            PPP link state change occurred."
        ::= { pppLCProtoEntry 4 }

   pppLCProtoOutPackets OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP packets transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 5 }

   pppLCProtoOutOctets  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP octets transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 6 }

   pppLCProtoOutCRs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Config-requests transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 7 }

   pppLCProtoOutCAs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Config-acks transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 8 }

   pppLCProtoOutCNs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Config-nacks transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 9 }

   pppLCProtoOutCRejs   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Config-rejects transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 10 }

   pppLCProtoOutTRs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Terminate-requests transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 11 }

   pppLCProtoOutTAs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Terminate-acks transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 12 }

   pppLCProtoOutCodeRejs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Code-rejects transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 13 }

   pppLCProtoOutEchoReqs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Echo-requests transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 14 }

   pppLCProtoOutEchoReps OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Echo-replies transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 15 }

   pppLCProtoOutDiscReqs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Discard-requests transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 16 }

   pppLCProtoOutResetReqs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Reset-requests transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 17 }

   pppLCProtoOutResetAcks OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Reset-Acks transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 18 }

   pppLCProtoOutIdents OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Identification packets transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 19 }

   pppLCProtoOutTimeRemains OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Time-Remaining packets transmitted
             over the PPP interface."
        ::= { pppLCProtoEntry 20 }

   pppLCProtoInRejects  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of a LCP protocol-reject
            packets received over the PPP interface."
        ::= { pppLCProtoEntry 21 }

   pppLCProtoInPackets OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP packets received
             over the PPP interface."
        ::= { pppLCProtoEntry 22 }

   pppLCProtoInOctets  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP octets received
             over the PPP interface."
        ::= { pppLCProtoEntry 23 }

   pppLCProtoInCRs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Config-requests received
             over the PPP interface."
        ::= { pppLCProtoEntry 24 }

   pppLCProtoInCAs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Config-acks received
             over the PPP interface."
        ::= { pppLCProtoEntry 25 }

   pppLCProtoInCNs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Config-nacks received
             over the PPP interface."
        ::= { pppLCProtoEntry 26 }

   pppLCProtoInCRejs    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Config-rejects received
             over the PPP interface."
        ::= { pppLCProtoEntry 27 }

   pppLCProtoInTRs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Terminate-requests received
             over the PPP interface."
        ::= { pppLCProtoEntry 28 }

   pppLCProtoInTAs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Terminate-acks received
             over the PPP interface."
        ::= { pppLCProtoEntry 29 }

   pppLCProtoInCodeRejs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Code-rejects received
             over the PPP interface."
        ::= { pppLCProtoEntry 30 }

   pppLCProtoInEchoReqs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Echo-Requests received
             over the PPP interface."
        ::= { pppLCProtoEntry 31 }

   pppLCProtoInEchoReps OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Echo-replies received
             over the PPP interface."
        ::= { pppLCProtoEntry 32 }

   pppLCProtoInDiscReqs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Discard-requests received
             over the PPP interface."
        ::= { pppLCProtoEntry 33 }

   pppLCProtoInResetReqs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Reset-requests received
             over the PPP interface."
        ::= { pppLCProtoEntry 34 }

   pppLCProtoInResetAcks OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Reset-Acks received
             over the PPP interface."
        ::= { pppLCProtoEntry 35 }

   pppLCProtoInIdents OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Identification packets received
             over the PPP interface."
        ::= { pppLCProtoEntry 36 }

   pppLCProtoInTimeRemains OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
            "Total number of LCP Time-Remaining packets received
             over the PPP interface."
        ::= { pppLCProtoEntry 37 }

------------------------------------------------------------------
-- PPP PAP Statistics
------------------------------------------------------------------

   pppPAPTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppPAPEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of PAP statistics."
        ::= { ibmIROCroutingppp 4 }

   pppPAPEntry  OBJECT-TYPE
        SYNTAX      PppPAPEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of PAP information."
        INDEX   { pppPAPIfIndex }
        ::= { pppPAPTable 1 }

   PppPAPEntry ::= SEQUENCE {
        pppPAPIfIndex      INTEGER,
        pppPAPInPackets    Counter,
        pppPAPInOctets     Counter,
        pppPAPInRequests   Counter,
        pppPAPInAcks       Counter,
        pppPAPInNacks      Counter,
        pppPAPOutPackets   Counter,
        pppPAPOutOctets    Counter,
        pppPAPOutRequests  Counter,
        pppPAPOutAcks      Counter,
        pppPAPOutNacks     Counter
        }

   pppPAPIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for a PPP interface running PAP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppPAPEntry 1 }

   pppPAPInPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of PAP
            packets received over the PPP interface."
        ::= { pppPAPEntry 2 }

   pppPAPInOctets       OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of PAP octets
            received over the PPP interface."
        ::= { pppPAPEntry 3 }

   pppPAPInRequests     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of PAP requests
            received over the PPP interface."
        ::= { pppPAPEntry 4 }

   pppPAPInAcks         OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of PAP acknowledgements
            received over the PPP interface."
        ::= { pppPAPEntry 5 }

   pppPAPInNacks        OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of PAP non-acknowledgements
            received over the PPP interface."
        ::= { pppPAPEntry 6 }

   pppPAPOutPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of PAP
            packets sent over the PPP interface."
        ::= { pppPAPEntry 7 }

   pppPAPOutOctets       OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of PAP octets
            sent over the PPP interface."
        ::= { pppPAPEntry 8 }

   pppPAPOutRequests     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of PAP requests
            sent over the PPP interface."
        ::= { pppPAPEntry 9 }

   pppPAPOutAcks         OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of PAP acknowledgements
            sent over the PPP interface."
        ::= { pppPAPEntry 10 }

   pppPAPOutNacks        OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of PAP non-acknowledgements
            sent over the PPP interface."
        ::= { pppPAPEntry 11 }

------------------------------------------------------------------
-- PPP CHAP Statistics
------------------------------------------------------------------

   pppCHAPTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppCHAPEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of CHAP statistics."
        ::= { ibmIROCroutingppp 5 }

   pppCHAPEntry  OBJECT-TYPE
        SYNTAX      PppCHAPEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of CHAP information."
        INDEX   { pppCHAPIfIndex }
        ::= { pppCHAPTable 1 }

   PppCHAPEntry ::= SEQUENCE {
        pppCHAPIfIndex       INTEGER,
        pppCHAPInPackets     Counter,
        pppCHAPInOctets      Counter,
        pppCHAPInChallenges  Counter,
        pppCHAPInResponses   Counter,
        pppCHAPInSuccesses   Counter,
        pppCHAPInFailures    Counter,
        pppCHAPOutPackets    Counter,
        pppCHAPOutOctets     Counter,
        pppCHAPOutChallenges Counter,
        pppCHAPOutResponses  Counter,
        pppCHAPOutSuccesses  Counter,
        pppCHAPOutFailures   Counter
        }

   pppCHAPIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for a PPP interface running CHAP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppCHAPEntry 1 }


   pppCHAPInPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP
            packets received over the PPP interface."
        ::= { pppCHAPEntry 2 }

   pppCHAPInOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP
            octets received over the PPP interface."
        ::= { pppCHAPEntry 3 }

   pppCHAPInChallenges  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP challenges
            received over the PPP interface."
        ::= { pppCHAPEntry 4 }

   pppCHAPInResponses   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP responses
            received over the PPP interface."
        ::= { pppCHAPEntry 5 }

   pppCHAPInSuccesses   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP successes
            received over the PPP interface."
        ::= { pppCHAPEntry 6 }

   pppCHAPInFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP failures
            received over the PPP interface."
        ::= { pppCHAPEntry 7 }

   pppCHAPOutPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP
            packets sent over the PPP interface."
        ::= { pppCHAPEntry 8 }

   pppCHAPOutOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP
            octets sent over the PPP interface."
        ::= { pppCHAPEntry 9 }

   pppCHAPOutChallenges  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP challenges
            sent over the PPP interface."
        ::= { pppCHAPEntry 10 }

   pppCHAPOutResponses   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP responses
            sent over the PPP interface."
        ::= { pppCHAPEntry 11 }

   pppCHAPOutSuccesses   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP successes
            sent over the PPP interface."
        ::= { pppCHAPEntry 12 }

   pppCHAPOutFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CHAP failures
            sent over the PPP interface."
        ::= { pppCHAPEntry 13 }

------------------------------------------------------------------
-- PPP SPAP Statistics
------------------------------------------------------------------

   pppSPAPTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppSPAPEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of SPAP statistics."
        ::= { ibmIROCroutingppp 6 }

   pppSPAPEntry  OBJECT-TYPE
        SYNTAX      PppSPAPEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of SPAP information."
        INDEX   { pppSPAPIfIndex }
        ::= { pppSPAPTable 1 }

   PppSPAPEntry ::= SEQUENCE {
        pppSPAPIfIndex      INTEGER,
        pppSPAPInPackets   Counter,
        pppSPAPInOctets    Counter,
        pppSPAPInRequests  Counter,
        pppSPAPInAcks       Counter,
        pppSPAPInNacks       Counter,
        pppSPAPInDialbacks Counter,
        pppSPAPInPleaseAuthenticates  Counter,
        pppSPAPInChangePasswords   Counter,
        pppSPAPInAlerts      Counter,
        pppSPAPInAlertAcks  Counter,
        pppSPAPOutPackets   Counter,
        pppSPAPOutOctets    Counter,
        pppSPAPOutRequests  Counter,
        pppSPAPOutAcks      Counter,
        pppSPAPOutNacks      Counter,
        pppSPAPOutDialbacks Counter,
        pppSPAPOutPleaseAuthenticates    Counter,
        pppSPAPOutChangePasswords    Counter,
        pppSPAPOutAlerts             Counter,
        pppSPAPOutAlertAcks          Counter
        }

   pppSPAPIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for a PPP interface running SPAP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppSPAPEntry 1 }

   pppSPAPInPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP
            packets received over the PPP interface."
        ::= { pppSPAPEntry 2 }

   pppSPAPInOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP
            octets received over the PPP interface."
        ::= { pppSPAPEntry 3 }

   pppSPAPInRequests    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP
            responses received over the PPP interface."
        ::= { pppSPAPEntry 4 }

   pppSPAPInAcks        OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP acknowledgements
            received over the PPP interface."
        ::= { pppSPAPEntry 5 }

   pppSPAPInNacks      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP non-acknowledgements
            received over the PPP interface."
        ::= { pppSPAPEntry 6 }

   pppSPAPInDialbacks  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP dialbacks
            received over the PPP interface."
        ::= { pppSPAPEntry 7 }

   pppSPAPInPleaseAuthenticates OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP authenticate requests
            received over the PPP interface."
        ::= { pppSPAPEntry 8 }

   pppSPAPInChangePasswords     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP password changes
            received over the PPP interface."
        ::= { pppSPAPEntry 9 }

   pppSPAPInAlerts      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP alerts
            received over the PPP interface."
        ::= { pppSPAPEntry 10 }

   pppSPAPInAlertAcks  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP alert acknowledgements
            received over the PPP interface."
        ::= { pppSPAPEntry 11 }

   pppSPAPOutPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP
            packets sent over the PPP interface."
        ::= { pppSPAPEntry 12 }

   pppSPAPOutOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP
            octets sent over the PPP interface."
        ::= { pppSPAPEntry 13 }

   pppSPAPOutRequests    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP
            responses sent over the PPP interface."
        ::= { pppSPAPEntry 14 }

   pppSPAPOutAcks        OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP acknowledgements
            sent over the PPP interface."
        ::= { pppSPAPEntry 15 }

   pppSPAPOutNacks      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP non-acknowledgements
            sent over the PPP interface."
        ::= { pppSPAPEntry 16 }

   pppSPAPOutDialbacks  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP dialbacks
            sent over the PPP interface."
        ::= { pppSPAPEntry 17 }

   pppSPAPOutPleaseAuthenticates OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP authenticate requests
            sent over the PPP interface."
        ::= { pppSPAPEntry 18 }

   pppSPAPOutChangePasswords     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP password changes
            sent over the PPP interface."
        ::= { pppSPAPEntry 19 }

   pppSPAPOutAlerts      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP alerts
            sent over the PPP interface."
        ::= { pppSPAPEntry 20 }

   pppSPAPOutAlertAcks  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of SPAP alert acknowledgements
            sent over the PPP interface."
        ::= { pppSPAPEntry 21 }

------------------------------------------------------------------
-- PPP Bandwidth Allocation Protocol (BAP) Statistics
------------------------------------------------------------------

   pppBAPTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppBAPEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of BAP protocol statistics."
        ::= { ibmIROCroutingppp 7 }

   pppBAPEntry  OBJECT-TYPE
        SYNTAX      PppBAPEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of BAP information."
        INDEX   { pppBAPIfIndex }
        ::= { pppBAPTable 1 }

   PppBAPEntry ::= SEQUENCE {
        pppBAPIfIndex        INTEGER,

        pppBAPInCallReqs     Counter,
        pppBAPInCallAcks     Counter,
        pppBAPInCallNaks     Counter,
        pppBAPInCallRejs     Counter,
        pppBAPInCallBackReqs Counter,
        pppBAPInCallBackAcks Counter,
        pppBAPInCallBackNaks Counter,
        pppBAPInCallBackRejs Counter,
        pppBAPInDropReqs     Counter,
        pppBAPInDropAcks     Counter,
        pppBAPInDropNaks     Counter,
        pppBAPInDropRejs     Counter,
        pppBAPInStatSuccs    Counter,
        pppBAPInStatFails    Counter,

        pppBAPOutCallReqs     Counter,
        pppBAPOutCallAcks     Counter,
        pppBAPOutCallNaks     Counter,
        pppBAPOutCallRejs     Counter,
        pppBAPOutCallBackReqs Counter,
        pppBAPOutCallBackAcks Counter,
        pppBAPOutCallBackNaks Counter,
        pppBAPOutCallBackRejs Counter,
        pppBAPOutDropReqs     Counter,
        pppBAPOutDropAcks     Counter,
        pppBAPOutDropNaks     Counter,
        pppBAPOutDropRejs     Counter,
        pppBAPOutStatSuccs    Counter,
        pppBAPOutStatFails    Counter
        }

   pppBAPIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for a PPP interface running BAP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppBAPEntry 1 }

   pppBAPInCallReqs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming Call Request
            packets received over the PPP interface."
        ::= { pppBAPEntry 2 }

   pppBAPInCallAcks     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming Call Acknowledgement
            packets received over the PPP interface."
        ::= { pppBAPEntry 3 }

   pppBAPInCallNaks     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming Call Nak
            packets received over the PPP interface."
        ::= { pppBAPEntry 4 }

   pppBAPInCallRejs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming Call Reject
            packets received over the PPP interface."
        ::= { pppBAPEntry 5 }

   pppBAPInCallBackReqs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming CallBack Request
            packets received over the PPP interface."
        ::= { pppBAPEntry 6 }

   pppBAPInCallBackAcks OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming CallBack Acknowledgement
            packets received over the PPP interface."
        ::= { pppBAPEntry 7 }

   pppBAPInCallBackNaks OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming CallBack Nak
            packets received over the PPP interface."
        ::= { pppBAPEntry 8 }

   pppBAPInCallBackRejs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming CallBack Reject
            packets received over the PPP interface."
        ::= { pppBAPEntry 9 }

   pppBAPInDropReqs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming Drop Request
            packets received over the PPP interface."
        ::= { pppBAPEntry 10 }

   pppBAPInDropAcks     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming Drop Acknowledgement
            packets received over the PPP interface."
        ::= { pppBAPEntry 11 }

   pppBAPInDropNaks     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming Drop Nak
            packets received over the PPP interface."
        ::= { pppBAPEntry 12 }

   pppBAPInDropRejs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming Drop Reject
            packets received over the PPP interface."
        ::= { pppBAPEntry 13 }

   pppBAPInStatSuccs    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming Call Status Success
            packets received over the PPP interface."
        ::= { pppBAPEntry 14 }

   pppBAPInStatFails    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP incoming Call Status Fail
            packets received over the PPP interface."
        ::= { pppBAPEntry 15 }

   pppBAPOutCallReqs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing Call Request
            packets sent over the PPP interface."
        ::= { pppBAPEntry 16 }

   pppBAPOutCallAcks     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing Call Acknowledgement
            packets sent over the PPP interface."
        ::= { pppBAPEntry 17 }

   pppBAPOutCallNaks     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing Call Nak
            packets sent over the PPP interface."
        ::= { pppBAPEntry 18 }

   pppBAPOutCallRejs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing Call Reject
            packets sent over the PPP interface."
        ::= { pppBAPEntry 19 }

   pppBAPOutCallBackReqs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing CallBack Request
            packets sent over the PPP interface."
        ::= { pppBAPEntry 20 }

   pppBAPOutCallBackAcks OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing CallBack Acknowledgement
            packets sent over the PPP interface."
        ::= { pppBAPEntry 21 }

   pppBAPOutCallBackNaks OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing CallBack Nak
            packets sent over the PPP interface."
        ::= { pppBAPEntry 22 }

   pppBAPOutCallBackRejs OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing CallBack Reject
            packets sent over the PPP interface."
        ::= { pppBAPEntry 23 }

   pppBAPOutDropReqs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing Drop Request
            packets sent over the PPP interface."
        ::= { pppBAPEntry 24 }

   pppBAPOutDropAcks     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing Drop Acknowledgement
            packets sent over the PPP interface."
        ::= { pppBAPEntry 25 }

   pppBAPOutDropNaks     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing Drop Nak
            packets sent over the PPP interface."
        ::= { pppBAPEntry 26 }

   pppBAPOutDropRejs     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing Drop Reject
            packets sent over the PPP interface."
        ::= { pppBAPEntry 27 }

   pppBAPOutStatSuccs    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing Call Status Success
            packets sent over the PPP interface."
        ::= { pppBAPEntry 28 }

   pppBAPOutStatFails    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of BAP outgoing Call Status Fail
            packets sent over the PPP interface."
        ::= { pppBAPEntry 29 }

------------------------------------------------------------------
-- PPP Compression Protocol and Control Protocol Statistics
------------------------------------------------------------------

   pppCPTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppCPEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of compression protocol and control protocol statistics."
        ::= { ibmIROCroutingppp 8 }

   pppCPEntry  OBJECT-TYPE
        SYNTAX      PppCPEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of CP and CCP information."
        INDEX   { pppCPIfIndex }
        ::= { pppCPTable 1 }

   PppCPEntry ::= SEQUENCE {
        pppCPIfIndex                 INTEGER,

        pppCPInCompressedOctets      Counter,
        pppCPInInCompressablePkts    Counter,
        pppCPInDestroyeds            Counter,
        pppCPInCopies                Counter,

        pppCPOutCompressedOctets     Counter,
        pppCPOutInCompressablePkts   Counter,
        pppCPOutDestroyeds           Counter,
        pppCPOutCopies               Counter,

        pppCCPInResetReqs            Counter,
        pppCCPInResetAcks            Counter,
        pppCCPInDictResets           Counter,

        pppCCPOutResetReqs           Counter,
        pppCCPOutResetAcks           Counter,
        pppCCPOutDictResets          Counter,

        pppCCPPacketDiscards         Counter,
        pppCCPOctetDiscards          Counter
        }

   pppCPIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for a PPP interface running CP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppCPEntry 1 }

   pppCPInCompressedOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CP incoming compressed
            octets received over the PPP interface."
        ::= { pppCPEntry 2 }

   pppCPInInCompressablePkts    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CP incoming incompressable
            packets received over the PPP interface."
        ::= { pppCPEntry 3 }

   pppCPInDestroyeds            OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CP incoming packets discarded
            for this PPP interface."
        ::= { pppCPEntry 4 }

   pppCPInCopies                OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CP incoming packets requiring
            a copy to a spare buffer to correct alignment."
        ::= { pppCPEntry 5 }

   pppCPOutCompressedOctets     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CP outgoing compressed
            octets sent over the PPP interface."
        ::= { pppCPEntry 6 }

   pppCPOutInCompressablePkts   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CP outgoing incompressable
            packets sent over the PPP interface."
        ::= { pppCPEntry 7 }

   pppCPOutDestroyeds           OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CP outgoing packets discarded
            for this PPP interface."
        ::= { pppCPEntry 8 }

   pppCPOutCopies               OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CP outgoing packets requiring
            a copy to a spare buffer to correct alignment."
        ::= { pppCPEntry 9 }

   pppCCPInResetReqs            OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CCP incoming Reset request
            packets received over the PPP interface."
        ::= { pppCPEntry 10 }

   pppCCPInResetAcks            OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CCP incoming Reset Acknowledgement
            packets received over the PPP interface."
        ::= { pppCPEntry 11 }

   pppCCPInDictResets           OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CCP incoming Dictionary Reset
            packets received over the PPP interface."
        ::= { pppCPEntry 12 }

   pppCCPOutResetReqs           OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CCP outgoing Reset request
            packets sent over the PPP interface."
        ::= { pppCPEntry 13 }

   pppCCPOutResetAcks           OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CCP outgoing Reset Acknowledgement
            packets sent over the PPP interface."
        ::= { pppCPEntry 14 }

   pppCCPOutDictResets          OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CCP outgoing Dictionary Reset
            packets sent  over the PPP interface."
        ::= { pppCPEntry 15 }


   pppCCPPacketDiscards         OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CCP incoming packet
            discards occuring for this PPP interface."
        ::= { pppCPEntry 16 }

   pppCCPOctetDiscards          OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CCP outgoing packet
            discards occuring for this PPP interface."
        ::= { pppCPEntry 17 }

------------------------------------------------------------------
-- PPP Encryption Protocol and Control Protocol Statistics
------------------------------------------------------------------

   pppEPTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppEPEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of encryption protocol and control protocol statistics."
        ::= { ibmIROCroutingppp 9 }

   pppEPEntry  OBJECT-TYPE
        SYNTAX      PppEPEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of EP and ECP information."
        INDEX   { pppEPIfIndex }
        ::= { pppEPTable 1 }

   PppEPEntry ::= SEQUENCE {
        pppEPIfIndex                 INTEGER,

        pppEPInEncryptedOctets       Counter,
        pppEPInDestroyeds            Counter,
        pppEPInCopies                Counter,

        pppEPOutEncryptedOctets      Counter,
        pppEPOutDestroyeds           Counter,
        pppEPOutCopies               Counter,

        pppECPInResetReqs            Counter,
        pppECPInResetAcks            Counter,
        pppECPInDictResets           Counter,

        pppECPOutResetReqs           Counter,
        pppECPOutResetAcks           Counter,
        pppECPOutDictResets          Counter,

        pppECPPacketDiscards         Counter,
        pppECPOctetDiscards          Counter
        }

   pppEPIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for a PPP interface running EP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppEPEntry 1 }

   pppEPInEncryptedOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EP incoming encrypted
            octets received over the PPP interface."
        ::= { pppEPEntry 2 }

   pppEPInDestroyeds            OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EP incoming packets discarded
            for this PPP interface."
        ::= { pppEPEntry 3 }

   pppEPInCopies                OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EP incoming packets requiring
            a copy to a spare buffer to correct alignment."
        ::= { pppEPEntry 4 }

   pppEPOutEncryptedOctets     OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EP outgoing encrypted
            octets sent over the PPP interface."
        ::= { pppEPEntry 5 }

   pppEPOutDestroyeds           OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EP outgoing packets discarded
            for this PPP interface."
        ::= { pppEPEntry 6 }

   pppEPOutCopies               OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EP outgoing packets requiring
            a copy to a spare buffer to correct alignment."
        ::= { pppEPEntry 7 }

   pppECPInResetReqs            OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of ECP incoming Reset request
            packets received over the PPP interface."
        ::= { pppEPEntry 8 }

   pppECPInResetAcks            OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of ECP incoming Reset Acknowledgement
            packets received over the PPP interface."
        ::= { pppEPEntry 9 }

   pppECPInDictResets           OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of ECP incoming Dictionary Reset
            packets received over the PPP interface."
        ::= { pppEPEntry 10 }

   pppECPOutResetReqs           OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of ECP outgoing Reset request
            packets sent over the PPP interface."
        ::= { pppEPEntry 11 }

   pppECPOutResetAcks           OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of ECP outgoing Reset Acknowledgement
            packets sent over the PPP interface."
        ::= { pppEPEntry 12 }

   pppECPOutDictResets          OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of ECP outgoing Dictionary Reset
            packets sent  over the PPP interface."
        ::= { pppEPEntry 13 }


   pppECPPacketDiscards         OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of ECP incoming packet
            discards occuring for this PPP interface."
        ::= { pppEPEntry 14 }

   pppECPOctetDiscards          OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of ECP outgoing packet
            discards occuring for this PPP interface."
        ::= { pppEPEntry 15 }


------------------------------------------------------------------
-- PPP MS-CHAP Statistics
------------------------------------------------------------------

   pppMSCHAPTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppMSCHAPEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of MSCHAP statistics."
        ::= { ibmIROCroutingppp 10 }

   pppMSCHAPEntry  OBJECT-TYPE
        SYNTAX      PppMSCHAPEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of MSCHAP information."
        INDEX   { pppMSCHAPIfIndex }
        ::= { pppMSCHAPTable 1 }

   PppMSCHAPEntry ::= SEQUENCE {
        pppMSCHAPIfIndex       INTEGER,
        pppMSCHAPInPackets     Counter,
        pppMSCHAPInOctets      Counter,
        pppMSCHAPInChallenges  Counter,
        pppMSCHAPInResponses   Counter,
        pppMSCHAPInSuccesses   Counter,
        pppMSCHAPInFailures    Counter,
        pppMSCHAPInChangePasswords            Counter,

        pppMSCHAPInRestrictedHoursFailures    Counter,
        pppMSCHAPInAccountDisabledFailures    Counter,
        pppMSCHAPInPasswordExpiredFailures    Counter,
        pppMSCHAPInNoPermissionFailures       Counter,
        pppMSCHAPInAuthenticationFailures     Counter,
        pppMSCHAPInChangePasswordFailures     Counter,

        pppMSCHAPOutPackets    Counter,
        pppMSCHAPOutOctets     Counter,
        pppMSCHAPOutChallenges Counter,
        pppMSCHAPOutResponses  Counter,
        pppMSCHAPOutSuccesses  Counter,
        pppMSCHAPOutFailures   Counter,
        pppMSCHAPOutChangePasswords            Counter,

        pppMSCHAPOutRestrictedHoursFailures    Counter,
        pppMSCHAPOutAccountDisabledFailures    Counter,
        pppMSCHAPOutPasswordExpiredFailures    Counter,
        pppMSCHAPOutNoPermissionFailures       Counter,
        pppMSCHAPOutAuthenticationFailures     Counter,
        pppMSCHAPOutChangePasswordFailures     Counter
        }

   pppMSCHAPIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for a PPP interface running MSCHAP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppMSCHAPEntry 1 }


   pppMSCHAPInPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP
            packets received over the PPP interface."
        ::= { pppMSCHAPEntry 2 }

   pppMSCHAPInOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP
            octets received over the PPP interface."
        ::= { pppMSCHAPEntry 3 }

   pppMSCHAPInChallenges  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP challenges
            received over the PPP interface."
        ::= { pppMSCHAPEntry 4 }

   pppMSCHAPInResponses   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP responses
            received over the PPP interface."
        ::= { pppMSCHAPEntry 5 }

   pppMSCHAPInSuccesses   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP successes
            received over the PPP interface."
        ::= { pppMSCHAPEntry 6 }

   pppMSCHAPInFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP failures
            received over the PPP interface."
        ::= { pppMSCHAPEntry 7 }

   pppMSCHAPInChangePasswords   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP change passwords
            received over the PPP interface."
        ::= { pppMSCHAPEntry 8 }

   pppMSCHAPInRestrictedHoursFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP restricted hours failures
            received over the PPP interface."
        ::= { pppMSCHAPEntry 9 }

   pppMSCHAPInAccountDisabledFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP account disabled failures
            received over the PPP interface."
        ::= { pppMSCHAPEntry 10 }

   pppMSCHAPInPasswordExpiredFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP password expired failures
            received over the PPP interface."
        ::= { pppMSCHAPEntry 11 }

   pppMSCHAPInNoPermissionFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP no permission failures
            received over the PPP interface."
        ::= { pppMSCHAPEntry 12 }

   pppMSCHAPInAuthenticationFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP authentication failures
            received over the PPP interface."
        ::= { pppMSCHAPEntry 13 }

   pppMSCHAPInChangePasswordFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP change password failures
            received over the PPP interface."
        ::= { pppMSCHAPEntry 14 }

   pppMSCHAPOutPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP
            packets sent over the PPP interface."
        ::= { pppMSCHAPEntry 15 }

   pppMSCHAPOutOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP
            octets sent over the PPP interface."
        ::= { pppMSCHAPEntry 16 }

   pppMSCHAPOutChallenges  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP challenges
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 17 }

   pppMSCHAPOutResponses   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP responses
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 18 }

   pppMSCHAPOutSuccesses   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP successes
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 19 }

   pppMSCHAPOutFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP failures
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 20 }

   pppMSCHAPOutChangePasswords    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP change passwords
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 21 }

   pppMSCHAPOutRestrictedHoursFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP restricted hours failures
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 22 }

   pppMSCHAPOutAccountDisabledFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP account disabled failures
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 23 }

   pppMSCHAPOutPasswordExpiredFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP password expired failures
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 24 }

   pppMSCHAPOutNoPermissionFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP no permission failures
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 25 }

   pppMSCHAPOutAuthenticationFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP authentication failures
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 26 }

   pppMSCHAPOutChangePasswordFailures    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MSCHAP change password failures
            sent over the PPP interface."
        ::= { pppMSCHAPEntry 27 }


------------------------------------------------------------------
-- PPP CBCP Statistics
------------------------------------------------------------------

   pppCBCPTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppCBCPEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of CBCP statistics."
        ::= { ibmIROCroutingppp 11 }

   pppCBCPEntry  OBJECT-TYPE
        SYNTAX      PppCBCPEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of CBCP information."
        INDEX   { pppCBCPIfIndex }
        ::= { pppCBCPTable 1 }

   PppCBCPEntry ::= SEQUENCE {
        pppCBCPIfIndex       INTEGER,

        pppCBCPInPackets     Counter,
        pppCBCPInOctets      Counter,

        pppCBCPOutPackets    Counter,
        pppCBCPOutOctets     Counter,

        pppCBCPAttempts      Counter,
        pppCBCPSuccess       Counter
        }

   pppCBCPIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for a PPP interface running CBCP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppCBCPEntry 1 }


   pppCBCPInPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CBCP
            packets received over the PPP interface."
        ::= { pppCBCPEntry 2 }

   pppCBCPInOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CBCP
            octets received over the PPP interface."
        ::= { pppCBCPEntry 3 }

   pppCBCPOutPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CBCP
            packets sent over the PPP interface."
        ::= { pppCBCPEntry 4 }

   pppCBCPOutOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CBCP
            octets sent over the PPP interface."
        ::= { pppCBCPEntry 5 }

   pppCBCPAttempts      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CBCP attempts."
        ::= { pppCBCPEntry 6 }

   pppCBCPSuccess      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of CBCP successes."
        ::= { pppCBCPEntry 7 }


------------------------------------------------------------------
-- PPP EAP Statistics
------------------------------------------------------------------

   pppEAPTable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppEAPEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of EAP statistics."
        ::= { ibmIROCroutingppp 12 }

   pppEAPEntry  OBJECT-TYPE
        SYNTAX      PppEAPEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of EAP information."
        INDEX   { pppEAPIfIndex }
        ::= { pppEAPTable 1 }

   PppEAPEntry ::= SEQUENCE {
        pppEAPIfIndex       INTEGER,

        pppEAPInPackets     Counter,
        pppEAPInOctets      Counter,
        pppEAPInRequests    Counter,
        pppEAPInAcks        Counter,
        pppEAPInNaks        Counter,

        pppEAPOutPackets    Counter,
        pppEAPOutOctets     Counter,
        pppEAPOutRequests    Counter,
        pppEAPOutAcks        Counter,
        pppEAPOutNaks        Counter
        }

   pppEAPIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for a PPP interface running EAP.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppEAPEntry 1 }


   pppEAPInPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EAP
            packets received over the PPP interface."
        ::= { pppEAPEntry 2 }

   pppEAPInOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EAP
            octets received over the PPP interface."
        ::= { pppEAPEntry 3 }

   pppEAPInRequests    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EAP
            requests received over the PPP interface."
        ::= { pppEAPEntry 4 }

   pppEAPInAcks        OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EAP
            acknowledgments received over the PPP interface."
        ::= { pppEAPEntry 5 }

   pppEAPInNaks        OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EAP negative
            acknowledgements received over the PPP interface."
        ::= { pppEAPEntry 6 }

   pppEAPOutPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EAP
            packets sent over the PPP interface."
        ::= { pppEAPEntry 7 }

   pppEAPOutOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EAP
            octets sent over the PPP interface."
        ::= { pppEAPEntry 8 }

   pppEAPOutRequests    OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EAP
            requests sent over the PPP interface."
        ::= { pppEAPEntry 9 }

   pppEAPOutAcks        OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EAP
            acknowledgments sent over the PPP interface."
        ::= { pppEAPEntry 10 }

   pppEAPOutNaks        OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of EAP negative
            acknowledgements sent over the PPP interface."
        ::= { pppEAPEntry 11 }


------------------------------------------------------------------
-- PPP MPPE Statistics
------------------------------------------------------------------

   pppMPPETable  OBJECT-TYPE
        SYNTAX     SEQUENCE OF PppMPPEEntry
        ACCESS     not-accessible
        STATUS     mandatory
        DESCRIPTION
          "A table of MPPE statistics."
        ::= { ibmIROCroutingppp 13 }

   pppMPPEEntry  OBJECT-TYPE
        SYNTAX      PppMPPEEntry
        ACCESS      not-accessible
        STATUS      mandatory
        DESCRIPTION
          "An entry of MPPE information."
        INDEX   { pppMPPEIfIndex }
        ::= { pppMPPETable 1 }

   PppMPPEEntry ::= SEQUENCE {
        pppMPPEIfIndex       INTEGER,

        pppMPPEInPackets     Counter,
        pppMPPEInOctets      Counter,
        pppMPPEInDestroyed   Counter,

        pppMPPEOutPackets    Counter,
        pppMPPEOutOctets     Counter,
        pppMPPEOutDestroyed  Counter
        }

   pppMPPEIfIndex OBJECT-TYPE
        SYNTAX          INTEGER (1..65535)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "A unique identifier for a PPP interface running MPPE.
            This object is the same as the MIB-II ifIndex object."
        ::= { pppMPPEEntry 1 }


   pppMPPEInPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MPPE
            packets received over the PPP interface."
        ::= { pppMPPEEntry 2 }

   pppMPPEInOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MPPE
            octets received over the PPP interface."
        ::= { pppMPPEEntry 3 }

   pppMPPEInDestroyed   OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MPPE requests received
            over the PPP interface that were discarded."
        ::= { pppMPPEEntry 4 }

   pppMPPEOutPackets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MPPE
            packets sent over the PPP interface."
        ::= { pppMPPEEntry 5 }

   pppMPPEOutOctets      OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MPPE
            octets sent over the PPP interface."
        ::= { pppMPPEEntry 6 }

   pppMPPEOutDestroyed  OBJECT-TYPE
        SYNTAX          Counter
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION
           "Total number of MPPE requests discarded
            and not sent over the PPP interface."
        ::= { pppMPPEEntry 7 }



------------------------------------------------------------------
-- DLSw Transport Connection Group Table
------------------------------------------------------------------

ibmdlswTConnGroupOperTable  OBJECT-TYPE
    SYNTAX     SEQUENCE OF IbmdlswTConnGroupOperEntry
    ACCESS     not-accessible
    STATUS     mandatory
    DESCRIPTION
       "Information about multicast groups of which this DLSw is currently
        a member."
    ::= { ibmIROCroutingdlsw 1 }

ibmdlswTConnGroupOperEntry  OBJECT-TYPE
    SYNTAX     IbmdlswTConnGroupOperEntry
    ACCESS     not-accessible
    STATUS     mandatory
    DESCRIPTION
       "Information about a single multicast group of which this DLSw is
        a member."
    INDEX   { ibmdlswTConnGroupOperIndex }
    ::= { ibmdlswTConnGroupOperTable 1 }

IbmdlswTConnGroupOperEntry ::= SEQUENCE {
    ibmdlswTConnGroupOperIndex                    INTEGER,
    ibmdlswTConnGroupOperRole                     INTEGER,
    ibmdlswTConnGroupOperJoinTime                 TimeTicks,
    ibmdlswTConnGroupOperConfigIndex              INTEGER,
    ibmdlswTConnGroupOperInDataPkts               Counter,
    ibmdlswTConnGroupOperOutDataPkts              Counter,
    ibmdlswTConnGroupOperInDataOctets             Counter,
    ibmdlswTConnGroupOperOutDataOctets            Counter,
    ibmdlswTConnGroupOperInCntlPkts               Counter,
    ibmdlswTConnGroupOperOutCntlPkts              Counter,
    ibmdlswTConnGroupOperCURexSents               Counter,
    ibmdlswTConnGroupOperICRexRcvds               Counter,
    ibmdlswTConnGroupOperCURexRcvds               Counter,
    ibmdlswTConnGroupOperICRexSents               Counter,
    ibmdlswTConnGroupOperNQexSents                Counter,
    ibmdlswTConnGroupOperNRexRcvds                Counter,
    ibmdlswTConnGroupOperNQexRcvds                Counter,
    ibmdlswTConnGroupOperNRexSents                Counter
    }

ibmdlswTConnGroupOperIndex  OBJECT-TYPE
    SYNTAX     INTEGER (0..2147483647)
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The index to the conceptual row of the table.  Values are assigned
        by the agent and are not reused, but continue to increase in
        value."
    ::= { ibmdlswTConnGroupOperEntry 1 }

ibmdlswTConnGroupOperRole  OBJECT-TYPE
    SYNTAX     INTEGER  {
       peer       (1),
       client     (2),
       server     (3),
       readonly   (4),
       writeonly  (5),
       readwrite  (6),
       other      (7)
    }
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The role that this DLSw plays within the group.  The first three
        roles are used by the IBM multicast DLSw group feature.  The next
        three roles are used when interoperating with DLSw Version 2
        compliant partners that may not have the IBM group feature."
    ::= { ibmdlswTConnGroupOperEntry 2 }

ibmdlswTConnGroupOperJoinTime  OBJECT-TYPE
    SYNTAX     TimeTicks
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The amount of time (in hundredths of a second) since this DLSw
        node last became a member of this group."
    ::= { ibmdlswTConnGroupOperEntry 3 }

ibmdlswTConnGroupOperConfigIndex  OBJECT-TYPE
    SYNTAX     INTEGER (0..2147483647)
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The value of dlswTConnConfigIndex of the dlswTConnConfigEntry
        that governs the configuration information used by this
        ibmdlswTConnGroupOperEntry.  A management station can therefore
        normally examine both configured and operational information
        for this multicast group."
    ::= { ibmdlswTConnGroupOperEntry 4 }

------------------------------------------------------------------
-- Transport Connection Statistics
------------------------------------------------------------------
ibmdlswTConnGroupOperInDataPkts  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of Switch-to-Switch Protocol (SSP) messages of
        type DATAFRAME received for this group."
    ::= { ibmdlswTConnGroupOperEntry 5 }

ibmdlswTConnGroupOperOutDataPkts  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of Switch-to-Switch Protocol (SSP) messages of
        type DATAFRAME transmitted for this group."
    ::= { ibmdlswTConnGroupOperEntry 6 }

ibmdlswTConnGroupOperInDataOctets  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of octets in Switch-to-Switch Protocol (SSP) messages
        of type DATAFRAME received for this
        group.  Each message is counted starting with
        the first octet following the SSP message header."
    ::= { ibmdlswTConnGroupOperEntry 7 }

ibmdlswTConnGroupOperOutDataOctets  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of octets in Switch-to-Switch Protocol (SSP) messages
        of type DATAFRAME transmitted for this
        group.  Each message is counted starting with
        the first octet following the SSP message header."
    ::= { ibmdlswTConnGroupOperEntry 8 }

ibmdlswTConnGroupOperInCntlPkts  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of Switch-to-Switch Protocol (SSP) messages
        received for this group which were not of type DATAFRAME."
    ::= { ibmdlswTConnGroupOperEntry 9 }

ibmdlswTConnGroupOperOutCntlPkts  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of Switch-to-Switch Protocol (SSP) messages
        transmitted for this group which were not of type DATAFRAME."
    ::= { ibmdlswTConnGroupOperEntry 10 }

ibmdlswTConnGroupOperCURexSents  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of CanUReach_ex messages sent for this group."
    ::= { ibmdlswTConnGroupOperEntry 11 }

ibmdlswTConnGroupOperICRexRcvds  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of ICanReach_ex messages received for this group."
    ::= { ibmdlswTConnGroupOperEntry 12 }

ibmdlswTConnGroupOperCURexRcvds  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of CanUReach_ex messages received for this group."
    ::= { ibmdlswTConnGroupOperEntry 13 }

ibmdlswTConnGroupOperICRexSents  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of ICanReach_ex messages sent for this group."
    ::= { ibmdlswTConnGroupOperEntry 14 }

ibmdlswTConnGroupOperNQexSents  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of NetBIOS_NQ_ex (NetBIOS Name Query-explorer) messages
        sent for this group."
    ::= { ibmdlswTConnGroupOperEntry 15 }

ibmdlswTConnGroupOperNRexRcvds  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of NETBIOS_NR_ex (NetBIOS Name Recognized-explorer)
        messages received for this group."
    ::= { ibmdlswTConnGroupOperEntry 16 }

ibmdlswTConnGroupOperNQexRcvds  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of NETBIOS_NQ_ex messages received for this group."
    ::= { ibmdlswTConnGroupOperEntry 17 }

ibmdlswTConnGroupOperNRexSents  OBJECT-TYPE
    SYNTAX     Counter
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The number of NETBIOS_NR_ex messages sent for this group."
    ::= { ibmdlswTConnGroupOperEntry 18 }


------------------------------------------------------------------
-- DLSw QLLC Link Station Table
------------------------------------------------------------------
ibmdlswQllcLsTable  OBJECT-TYPE
    SYNTAX     SEQUENCE OF IbmdlswQllcLsEntry
    ACCESS     not-accessible
    STATUS     mandatory
    DESCRIPTION
      "Table to provide an address mapping from configured QLLC
       addresses to DLSw MAC and SAP addresses, and other configured
       QLLC station information."
    ::= { ibmIROCroutingdlsw 2 }

ibmdlswQllcLsEntry  OBJECT-TYPE
    SYNTAX     IbmdlswQllcLsEntry
    ACCESS     not-accessible
    STATUS     mandatory
    DESCRIPTION
       "The configured information for a single QLLC station."
    INDEX   {ibmdlswQllcLsIfIndex, ibmdlswQllcLsQdomain, ibmdlswQllcLsQaddress}
    ::= { ibmdlswQllcLsTable 1 }

IbmdlswQllcLsEntry ::= SEQUENCE {
    ibmdlswQllcLsIfIndex                   INTEGER,
    ibmdlswQllcLsQdomain                   INTEGER,
    ibmdlswQllcLsQaddress                  OCTET STRING,
    ibmdlswQllcLsChannel                   INTEGER,
    ibmdlswQllcLsLocalMac                  MacAddressNCIROC,
    ibmdlswQllcLsLocalSap                  OCTET STRING,
    ibmdlswQllcLsRemoteMac                 MacAddressNCIROC,
    ibmdlswQllcLsRemoteSap                 OCTET STRING,
    ibmdlswQllcLsPuType                    INTEGER,
    ibmdlswQllcLsBlkNum                    DisplayString,
    ibmdlswQllcLsIdNum                     DisplayString
    }

ibmdlswQllcLsIfIndex  OBJECT-TYPE
    SYNTAX     INTEGER
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "A unique identifier for the X.25 interface running QLLC through
        which this station is reached.  This object is the same as the
        MIB-II ifIndex object."
    ::= { ibmdlswQllcLsEntry 1 }

ibmdlswQllcLsQdomain  OBJECT-TYPE
    SYNTAX     INTEGER  {
       pvc (1),
       svc (2)
    }
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "X.25 circuit type identifier, permanent or switched"
    ::= { ibmdlswQllcLsEntry 2 }

ibmdlswQllcLsQaddress  OBJECT-TYPE
    SYNTAX     OCTET STRING (SIZE (1..15))
    ACCESS     read-write
    STATUS     mandatory
    DESCRIPTION
       "For PVCs, this is the logical channel number dedicated to this
        X.25 circuit.  For SVCs, this is the DTE address of the remote
        QLLC device (i.e., the address that the DLSw node places a call
        to or receives a call from)."
    ::= { ibmdlswQllcLsEntry 3 }

ibmdlswQllcLsChannel  OBJECT-TYPE
    SYNTAX     INTEGER (0..4095)
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "Logical channel number for PVCs and connected SVCs.
        A value of zero indicates an SVC without a connected call."
    ::= { ibmdlswQllcLsEntry 4 }

ibmdlswQllcLsLocalMac  OBJECT-TYPE
    SYNTAX     MacAddressNCIROC
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The MAC address that represents this QLLC station to other devices
        within the DLSw network."
    ::= { ibmdlswQllcLsEntry 5 }

ibmdlswQllcLsLocalSap  OBJECT-TYPE
    SYNTAX     OCTET STRING
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The SAP that accompanies ibmdlswQllcLsLocalMac."
    ::= { ibmdlswQllcLsEntry 6 }

ibmdlswQllcLsRemoteMac  OBJECT-TYPE
    SYNTAX     MacAddressNCIROC
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The MAC address of a device in the DLSw network that this QLLC
        device can initiate a DLSw circuit to.  If zero, the QLLC device
        cannot originate a DLSw circuit, but can only be the destination."
    ::= { ibmdlswQllcLsEntry 7 }

ibmdlswQllcLsRemoteSap  OBJECT-TYPE
    SYNTAX     OCTET STRING
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "The SAP that accompanies ibmdlswQllcLsRemoteMac.  If zero, the
        QLLC device cannot originate a DLSw circuit, but can only be
        the destination."
    ::= { ibmdlswQllcLsEntry 8 }

ibmdlswQllcLsPuType  OBJECT-TYPE
    SYNTAX     INTEGER  {
       type1 (1),
       type2 (2),
       type4 (4),
       type5 (5),
       other (6)
    }
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "SNA Physical Unit type of the QLLC device."
    ::= { ibmdlswQllcLsEntry 9 }

ibmdlswQllcLsBlkNum  OBJECT-TYPE
    SYNTAX     DisplayString (SIZE (3))
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "SNA XID_0 block number for the QLLC device.  A non-zero value implies
        that the DLSw node will generate an XID_0 on behalf of the device."
    ::= { ibmdlswQllcLsEntry 10 }

ibmdlswQllcLsIdNum  OBJECT-TYPE
    SYNTAX     DisplayString (SIZE (5))
    ACCESS     read-only
    STATUS     mandatory
    DESCRIPTION
       "SNA XID_0 id number for the QLLC device.  A non-zero value implies
        that the DLSw node will generate an XID_0 on behalf of the device."
    ::= { ibmdlswQllcLsEntry 11 }



------------------------------------------------------------------
-- Frame Relay CLLM Statistics Table
------------------------------------------------------------------
frCLLMStatsTable       OBJECT-TYPE
         SYNTAX   SEQUENCE OF FrCLLMStatsEntry
         ACCESS   not-accessible
         STATUS   mandatory
         DESCRIPTION
            "A table containing information about CLLM messages
             received from the switch."
         ::= { ibmIROCroutingfr 1 }

         frCLLMStatsEntry OBJECT-TYPE
             SYNTAX   FrCLLMStatsEntry
             ACCESS   not-accessible
             STATUS   mandatory
             DESCRIPTION
                "The CLLM information for a particular virtual
                 circuit."
            INDEX { frCLLMStatsIfIndex, frCLLMStatsDlci }
            ::= { frCLLMStatsTable 1 }


         FrCLLMStatsEntry ::=
             SEQUENCE {
                 frCLLMStatsIfIndex
                     INTEGER,
                 frCLLMStatsDlci
                     INTEGER,
                 frCLLMStatsRcvds
                     Counter
         }

         frCLLMStatsIfIndex OBJECT-TYPE
             SYNTAX   INTEGER
             ACCESS   read-only
             STATUS   mandatory
             DESCRIPTION
                "The ifIndex value identifying the Frame Relay
                 interface to which this CLLM information pertains."
            ::= { frCLLMStatsEntry 1 }

         frCLLMStatsDlci OBJECT-TYPE
             SYNTAX   INTEGER
             ACCESS   read-only
             STATUS   mandatory
             DESCRIPTION
                "The DLCI value identifying the Frame Relay
                 virtual circuit to which this CLLM information pertains."
           ::= { frCLLMStatsEntry 2 }

         frCLLMStatsRcvds OBJECT-TYPE
             SYNTAX   Counter
             ACCESS   read-only
             STATUS   mandatory
             DESCRIPTION
                "The number of CLLM messages received which
                 reported status on this virtual circuit."
           ::= { frCLLMStatsEntry 3 }


------------------------------------------------------------------
-- Frame Relay CLLM Cause Table
------------------------------------------------------------------
frCLLMCauseTable       OBJECT-TYPE
         SYNTAX   SEQUENCE OF FrCLLMCauseEntry
         ACCESS   not-accessible
         STATUS   mandatory
         DESCRIPTION
            "A table containing information about CLLM message
             cause codes."
         ::= { ibmIROCroutingfr 2 }

         frCLLMCauseEntry OBJECT-TYPE
             SYNTAX   FrCLLMCauseEntry
             ACCESS   not-accessible
             STATUS   mandatory
             DESCRIPTION
                "The CLLM cause information for a particular
                 interface."
            INDEX { frCLLMCauseIfIndex }
            ::= { frCLLMCauseTable 1 }


         FrCLLMCauseEntry ::=
             SEQUENCE {
                 frCLLMCauseIfIndex
                     INTEGER,
                 frCLLMCauseCode
                     INTEGER
         }

         frCLLMCauseIfIndex OBJECT-TYPE
             SYNTAX   INTEGER
             ACCESS   read-only
             STATUS   mandatory
             DESCRIPTION
                "The ifIndex value identifying the Frame Relay
                 interface to which this CLLM cause information pertains."
            ::= { frCLLMCauseEntry 1 }

         frCLLMCauseCode OBJECT-TYPE
             SYNTAX   INTEGER
             ACCESS   read-only
             STATUS   mandatory
             DESCRIPTION
                "The cause code in the last CLLM message received
                 on this interface."
           ::= { frCLLMCauseEntry 2 }


------------------------------------------------------------------
-- Frame Relay Simple Objects
------------------------------------------------------------------
frSimpleObjs           OBJECT IDENTIFIER ::= { ibmIROCroutingfr 3 }

frCLLMDlciList OBJECT-TYPE
                SYNTAX     OCTET STRING  (SIZE (1..1024))
                ACCESS     read-only
                STATUS     mandatory
                DESCRIPTION
                  "The list of DLCIs contained in the last CLLM message
                   received."
                ::= { frSimpleObjs 1 }


frTrapStateFECN OBJECT-TYPE
                SYNTAX  INTEGER { enabled(1), disabled(2) }
                ACCESS   read-write
                STATUS   mandatory
                DESCRIPTION
                   "This variable  indicates  whether  the  system
                    produces the frrcvdFECN trap."
                DEFVAL { disabled }
                ::= { frSimpleObjs 2 }


frTrapStateBECN OBJECT-TYPE
                SYNTAX  INTEGER { enabled(1), disabled(2) }
                ACCESS   read-write
                STATUS   mandatory
                DESCRIPTION
                   "This variable  indicates  whether  the  system
                    produces the frrcvdBECN trap."
                DEFVAL { disabled }
                ::= { frSimpleObjs 3 }


frTrapStateCLLM OBJECT-TYPE
                SYNTAX  INTEGER { enabled(1), disabled(2) }
                ACCESS   read-write
                STATUS   mandatory
                DESCRIPTION
                   "This variable  indicates  whether  the  system
                    produces the frrcvdCLLM trap."
                DEFVAL { disabled }
                ::= { frSimpleObjs 4 }

------------------------------------------------------------------
-- Frame Relay BRS anchor
------------------------------------------------------------------
ibmIROCfrBRS           OBJECT IDENTIFIER ::= { ibmIROCroutingfr 4 }

------------------------------------------------------------------
-- Frame Relay circuit statistics anchor
------------------------------------------------------------------
ibmIROCfrcircuit       OBJECT IDENTIFIER ::= { ibmIROCroutingfr 5 }


------------------------------------------------------------------
-- TCP/IP related objects
------------------------------------------------------------------
------------------------------------------------------------------
-- TCP/IP routing table and cache capacity information
------------------------------------------------------------------
tcpiprouteTabSize   OBJECT-TYPE
                    SYNTAX  INTEGER
                    ACCESS   read-only
                    STATUS   mandatory
                    DESCRIPTION
                     "The configured number of entries that the routing
                      table can maintain."
                    ::= { ibmIROCroutingtcpip 1 }

tcpiprouteTabUsed   OBJECT-TYPE
                    SYNTAX  Gauge
                    ACCESS   read-only
                    STATUS   mandatory
                    DESCRIPTION
                     "The current number of routing table entries being
                      used. The number includes both active and inactive
                      entries."
                    ::= { ibmIROCroutingtcpip 2 }

tcpiprouteCacheSize   OBJECT-TYPE
                      SYNTAX  INTEGER
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The configured number of entries that the routing
                        cache can maintain."
                      ::= { ibmIROCroutingtcpip 3 }

tcpiprouteCacheUsed   OBJECT-TYPE
                      SYNTAX  Gauge
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The current number of routing cache entries being
                        used."
                      ::= { ibmIROCroutingtcpip 4 }

------------------------------------------------------------------
-- TCP/IP routing statistics
------------------------------------------------------------------
tcpiprouteOverFlow    OBJECT-TYPE
                      SYNTAX  Counter
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The number of routes that had to be discarded
                        because the routing table was full."
                      ::= { ibmIROCroutingtcpip 5 }

tcpiprouteNoReach     OBJECT-TYPE
                      SYNTAX  Counter
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The number of packets that could not be forwarded
                        because of unknown destinations. This does not count the
                        number of packets forwarded to the default gateway."
                      ::= { ibmIROCroutingtcpip 6 }

tcpiprouteBadSubnet   OBJECT-TYPE
                      SYNTAX  Counter
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The number of packets and routes that have been
                        received for illegal subnets (all ones or all zeroes)."
                      ::= { ibmIROCroutingtcpip 7 }

tcpiprouteBadNet      OBJECT-TYPE
                      SYNTAX  Counter
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The number of packets and routes that have been
                        received for illegal IP destinations."
                      ::= { ibmIROCroutingtcpip 8 }

tcpiprouteUnhBcast    OBJECT-TYPE
                      SYNTAX  Counter
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The number of non-local IP broadcasts received
                        (which are not forwarded)."
                      ::= { ibmIROCroutingtcpip 9 }

tcpiprouteUnhMcast    OBJECT-TYPE
                      SYNTAX  Counter
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The number of IP multicasts received, but whose
                        addresses were not recognized by the router (and
                        are discarded)."
                      ::= { ibmIROCroutingtcpip 10 }

tcpiprouteUnhDirBcast   OBJECT-TYPE
                        SYNTAX  Counter
                        ACCESS   read-only
                        STATUS   mandatory
                        DESCRIPTION
                         "The number of directed, non-local IP broadcasts received
                          when forwarding of these packets is disabled."
                        ::= { ibmIROCroutingtcpip 11 }

tcpiprouteUnhLLbcast  OBJECT-TYPE
                      SYNTAX  Counter
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The number of packets received having non-local
                        IP addresses but were sent to a link-level broadcst
                        address (and are discarded)."
                      ::= { ibmIROCroutingtcpip 12 }

tcpiprouteDiscFilt    OBJECT-TYPE
                      SYNTAX  Counter
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The number of packets received that have been
                        addressed to filtered networks or subnets
                        (and are discarded)."
                      ::= { ibmIROCroutingtcpip 13 }

tcpiprouteMultRcvd    OBJECT-TYPE
                      SYNTAX  Counter
                      ACCESS   read-only
                      STATUS   mandatory
                      DESCRIPTION
                       "The number of IP multicasts that have been
                        received and processed successfully."
                      ::= { ibmIROCroutingtcpip 14 }

------------------------------------------------------------------
-- TCP and server connection statistics
------------------------------------------------------------------
tcpCurrConnections    OBJECT-TYPE
                      SYNTAX  Gauge
                      ACCESS  read-only
                      STATUS  mandatory
                      DESCRIPTION
                       "The current number of TCP connections, which
                        can be in any state. This object and
                        tcpMaxConnections are defined mainly to
                        monitor the number of TCP connections and
                        their affect on memory usage in the router."
                      ::= { ibmIROCroutingtcpip 15 }

tcpMaxConnections     OBJECT-TYPE
                      SYNTAX  INTEGER
                      ACCESS  read-only
                      STATUS  mandatory
                      DESCRIPTION
                       "The maximum number of TCP connections allowed.
                        This object and tcpCurrConnections are defined
                        mainly to monitor the number of TCP connections
                        and their affect on memory usage in the router."
                      ::= { ibmIROCroutingtcpip 16 }

serverCurrConnections    OBJECT-TYPE
                         SYNTAX  Gauge
                         ACCESS  read-only
                         STATUS  mandatory
                         DESCRIPTION
                          "The current number of connections to a local
                           server application (for example, TN3270E or
                           Web Cache). This object and
                           serverMaxConnections are defined mainly to
                           monitor the number of server connections and
                           their affect on memory usage in the router."
                         ::= { ibmIROCroutingtcpip 17 }

serverMaxConnections     OBJECT-TYPE
                         SYNTAX  INTEGER
                         ACCESS  read-only
                         STATUS  mandatory
                         DESCRIPTION
                          "The maximum number of connections allowed to a
                           local server application (for example, TN3270E
                           or Web Cache).
                           This object and serverCurrConnections are defined
                           mainly to monitor the number of server connections
                           and their affect on memory usage in the router."
                         ::= { ibmIROCroutingtcpip 18 }


------------------------------------------------------------------
-- IBM IROC Trap Definitions
------------------------------------------------------------------
ibmIROCtrapsfr         OBJECT IDENTIFIER ::= { ibmIROCtraps 1 }

         frrcvdFECN TRAP-TYPE
             ENTERPRISE ibmIROCtrapsfr
             VARIABLES  { frCircuitIfIndex, frCircuitDlci }
             DESCRIPTION
                "This trap indicates that a frame was received
                 from the network on this virtual circuit and it
                 indicated forward congestion."
             ::= 1

         frrcvdBECN TRAP-TYPE
             ENTERPRISE ibmIROCtrapsfr
             VARIABLES  { frCircuitIfIndex, frCircuitDlci }
             DESCRIPTION
                "This trap indicates that a frame was received
                 from the network on this virtual circuit and it
                 indicated backward congestion."
             ::= 2

         frrcvdCLLM TRAP-TYPE
             ENTERPRISE ibmIROCtrapsfr
             VARIABLES  { frCLLMCauseIfIndex, frCLLMCauseCode, frCLLMDlciList }
             DESCRIPTION
                "This trap indicates that a CLLM message was received
                 from the network."
             ::= 3



ibmIROCtrapssys        OBJECT IDENTIFIER ::= { ibmIROCtraps 2 }

         mosMemLow TRAP-TYPE
             ENTERPRISE ibmIROCtrapssys
             VARIABLES  { proResMemHeapTotal, proResMemHeapNeverAlloc }
             DESCRIPTION
                "This trap indicates that the free heap amount has
                 dropped below a given percentage of the total heap
                 memory available. The default percentage is 10%,
                 however this threshhold can be modified by the user
                 via a patch variable."
             ::= 1

ibmIROCtrapsels        OBJECT IDENTIFIER ::= { ibmIROCtraps 3 }

         elsTrap TRAP-TYPE
             ENTERPRISE   ibmIROCtrapsels
             VARIABLES    { proElsSubSysEventMsg }
             DESCRIPTION
                "When the routing subsystem ELS component is configured to
                 generate SNMP traps, the following trap is generated.
                 It contains a single varBind containing a text string in one
                 of the two following formats.

                 If ELS timestamping is enabled:

                     hr:min:sec subsys_name.event_num: message_text

                     For example - 09:32:56 IP.008: no rte 9.7.1.8 -> 9.7.4.3 dsc

                 If ELS timestamping is disabled:

                     subsys_name.event_num: message_text

                     For example - IP.008: no rte 9.7.1.8 -> 9.7.4.3 dsc


              NOTE: The following subsystems cannot have their events sent
                    in SNMP traps (ARP, ICMP, UDP, SNMP and IP (excluding
                    IP access control events)). This restriction is due to the
                    fact that these subsystems are involved in sending an SNMP
                    trap and allowing them could cause an infinite loop in the
                    router software."

             ::= 2

END