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
|
-- *****************************************************************************
-- Juniper-IP-MIB
--
-- Juniper Networks Enterprise MIB
-- Extensions for IP Protocol Management
--
-- Copyright (c) 1998, 1999 Redstone Communications, Inc.
-- Copyright (c) 1999, 2002 Unisphere Networks, Inc.
-- Copyright (c) 2002-2008 Juniper Networks, Inc.
-- All Rights Reserved.
-- *****************************************************************************
Juniper-IP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, NOTIFICATION-TYPE, Unsigned32, IpAddress, Counter64,
Gauge32
FROM SNMPv2-SMI
TruthValue, RowStatus
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
InterfaceIndex, InterfaceIndexOrZero, ifIndex
FROM IF-MIB
ipCidrRouteEntry
FROM IP-FORWARD-MIB
ipCidrRouteNumber
FROM IP-FORWARD-MIB
juniMibs
FROM Juniper-MIBs
JuniEnable, JuniIpAddrLessIf, JuniNextIfIndex
FROM Juniper-TC;
juniIpMIB MODULE-IDENTITY
LAST-UPDATED "200701172302Z" -- 17-Jan-07 06:02 PM EST
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
" Juniper Networks, Inc.
Postal: 10 Technology Park Drive
Westford, MA 01886-3146
USA
Tel: +1 978 589 5800
E-mail: mib@Juniper.net"
DESCRIPTION
"The IP Protocol MIB for the Juniper Networks enterprise."
-- Revision History
REVISION "200701172302Z" -- 17-Jan-07 06:02 PM EST - JUNOSe 7.3.2
DESCRIPTION
"Added warm-restart replay initial sequence preference for an IP
interface by adding juniIpIfInitSeqPrefOper and juniIpIfInitSeqPrefAdmin."
REVISION "200503301349Z" -- 30-Mar-05 01:49 PM IST - JUNOSe 7.0
DESCRIPTION
"Added IP Route Summary support for Unicast and Multicast Routes."
REVISION "200504292037Z" -- 29-Apr-05 04:37 PM EDT - JUNOSe 7.0
DESCRIPTION
"Added RLI-1925 Source Address Validation Failure Traps support."
REVISION "200409201349Z" -- 20-Sep-04 09:49 AM EDT - JUNOSe 6.1
DESCRIPTION
"Added RLI-1684 Route Table Maximum Route support."
REVISION "200409101526Z" -- 04-Sep-10 10:26 AM EST - JUNOSe 6.0
DESCRIPTION
"Obsoleted the following objects:
juniIpVpnIdOui
juniIpVpnIdIndex"
REVISION "200311031526Z" -- 03-Nov-03 10:26 AM EST - JUNOSe 5.2
DESCRIPTION
"Added support to juniIpIfEntry for TCP MSS configuration."
REVISION "200306251948Z" -- 25-Jun-03 03:48 PM EDT - JUNOSe 5.1
DESCRIPTION
"Added IP interface summary statistics support - juniIpIfSummary.
Added support for Interface Mirroring by adding juniIpIfAnalyzerMode.
Added support to juniIpIfEntry for IP interface auto configure."
REVISION "200302111905Z" -- 11-Feb-03 02:05 PM EST - JUNOSe 5.0
DESCRIPTION
"Replaced Unisphere names with Juniper names.
In juniIpInterfaceGroup, added juniIpIfRouterIndex
In juniIpIfTable, to support unnumbered interfaces referencing numbered
interfaces in addition to loopback interfaces, the following objects
were deprecated:
juniIpIfLoopback
juniIpIfLoopbackUid
and the following objects were added:
juniIpIfInheritNum
juniIpIfInheritNumUid
In juniIpAddrTable, to support unnumbered interfaces referencing
numbered interfaces in addition to loopback interfaces, the following
object was deprecated:
juniIpAdEntUnnumLoopbackIfIndex
and the following object was added:
juniIpAdEntUnnumInheritNumIfIndex
Added new types to juniIpIfType."
REVISION "200210231853Z" -- 23-Oct-02 02:53 PM EDT - JUNOSe 4.1
DESCRIPTION
"Added the following scalar objects:
juniIpBgpCommunityNewFormat
juniIpBgpAsConfedSetNewFormat
Obsoleted the following objects:
juniIpArpTimeout
juniIpRouteLimit "
REVISION "200204032206Z" -- 03-Apr-02 05:06 PM EST - JUNOSe 4.0
DESCRIPTION
"Obsoleted the following objects with the introduction of QoS:
juniIpIfStatsInForwardedPackets
juniIpIfStatsInForwardedOctets
juniIpIfStatsOutRequestedPackets
juniIpIfStatsOutRequesteOctets
juniIpIfStatsGreenOutSchedDropPackets
juniIpIfStatsYellowOutSchedDropPackets
juniIpIfStatsRedOutSchedDropOctets
juniIpIfStatsGreenOutSchedDropOctets
juniIpIfStatsYellowOutSchedDropOctets
juniIpIfStatsRedOutSchedDropOctet "
REVISION "200107051400Z" -- 05-Jul-01 10:00 AM EDT - JUNOSe 3.2
DESCRIPTION
"Added the juniIpIfAssocTable."
REVISION "200106181911Z" -- 18-Jun-01 03:11 PM EDT - JUNOSe 3.0
DESCRIPTION
"o In juniIpIfTable, added the following:
juniIpIfSAValidation
juniIpIfCreationType
juniIpIfProfileId
juniIpIfAlwaysUp
juniIpIfLoopback
juniIpIfLoopbackUid
juniIpIfDebounceTime
juniIpIfForwarding
juniIpIfForceFragmentation
juniIpIfSharesLowerUid
juniIpIfFilterOptions
juniIpIfName
juniIpIfArpTimeout
juniIpIfAdminSpeed
juniIpIfMultipathMode
juniIpIfSharedNhAddr
juniIpIfSharedNhRouterId
juniIpIfPrimaryIpAddress
juniIpIfPrimaryIpMask
juniIpIfOperDebounceTime
o In juniIpAddrTable, added juniIpAdEntIsSecondary
o In juniIpAddrTable, deprecated juniIpAdEntIgmpEnable
o Added following scalars:
juniIpDebounceTime
juniIpRouterId
juniIpSourceRoutingAdminStatus
juniIpVpnIdOui
juniIpVpnIdIndex
o In juniIpIfStatsTable, added:
juniIpIfStatsGreenOutSchedDropPackets
juniIpIfStatsYellowOutSchedDropPackets
juniIpIfStatsRedOutSchedDropPackets
juniIpIfStatsGreenOutSchedDropOctets
juniIpIfStatsYellowOutSchedDropOctets
juniIpIfStatsRedOutSchedDropOctets
o Changed the type of juniIpRouteStaticNextHop to JuniIpAddrLessIf to
support setting static routes next hop values to unnumbered IP
interfaces. This type is a Juniper TC, which can transparently
support the original IpAddress type, so existing clients are not
negatively affected by this change."
REVISION "200007310000Z" -- 31-Jul-00 - JUNOSe 2.2
DESCRIPTION
"o Added extended IP interface statistics."
REVISION "9911090000Z" -- 9-Nov-99 - JUNOSe 1.3
DESCRIPTION
"o In juniIpIfTable, added null(5) enumeration value for juniIpIfType.
o Added juniIpIfTypeId object."
REVISION "9909160000Z" -- 16-Sep-99 - JUNOSe 1.1
DESCRIPTION
"o In juniIpAddrTable, added juniIpAdEntUnnumLoopbackIfIndex,
juniIpAdEntIrdpEnable, juniIpAdEntAccessRouteEnable,
juniIpAdEntAccessRouteHost.
o In juniIpRouteStaticTable, changed Tos to Preference, and added Tag.
o Added juniIpCidrRouteTable (proprietary extensions to standard
ipCidrRouteTable)."
REVISION "9811190000Z" -- 19-Nov-98 - JUNOSe 1.0
DESCRIPTION
"Initial version of this MIB module."
::= { juniMibs 12 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpObjects OBJECT IDENTIFIER ::= { juniIpMIB 1 }
juniIpInterface OBJECT IDENTIFIER ::= { juniIpObjects 1 }
juniIpAddress OBJECT IDENTIFIER ::= { juniIpObjects 2 }
juniIpRoute OBJECT IDENTIFIER ::= { juniIpObjects 3 }
juniIpGlobals OBJECT IDENTIFIER ::= { juniIpObjects 4 }
juniIpIfSummary OBJECT IDENTIFIER ::= { juniIpObjects 5 }
juniIpRouteSummary OBJECT IDENTIFIER ::= { juniIpObjects 6 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IP Global attributes
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpDebounceTime OBJECT-TYPE
SYNTAX Integer32 (0..60000)
UNITS "milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time in milliseconds that an event has to be in the same state
before being reported."
DEFVAL { 0 }
::= { juniIpGlobals 1 }
juniIpRouterId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The router-id that this IP router will use to identify itself."
::= { juniIpGlobals 2 }
juniIpSourceRoutingAdminStatus OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative setting for source routing."
::= { juniIpGlobals 3 }
juniIpVpnIdOui OBJECT-TYPE
SYNTAX Integer32 (0..16777215)
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The OUI portion of the VPN identifier. This object must be set
coincident with the index portion of the VpnId (juniIpVpnIdIndex),
otherwise the set will fail."
::= { juniIpGlobals 4 }
juniIpVpnIdIndex OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The index portion of the VPN identifier. This object must be set
coincident with the OUI portion of the VpnId (juniIpVpnOui), otherwise
the set will fail."
::= { juniIpGlobals 5 }
juniIpBgpCommunityNewFormat OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The BGP community format to be used. Set to true to use the community
number, as number format."
DEFVAL { false }
::= { juniIpGlobals 6 }
juniIpBgpAsConfedSetNewFormat OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The BGP as confederation set format to be used. Set to true to display
the confederation set as a comma separated list, enclosed in squared
braces."
DEFVAL { false }
::= { juniIpGlobals 7 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IP Interface Summary Statistics Attributes
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpIfSummaryTotalIntf OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IP interfaces."
::= { juniIpIfSummary 1 }
juniIpIfSummaryTotalIntfUp OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IP interfaces in operational state UP."
::= { juniIpIfSummary 2 }
juniIpIfSummaryTotalIntfDown OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IP interfaces in operational state DOWN."
::= { juniIpIfSummary 3 }
juniIpIfSummaryTotalIntfProtUp OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IP interfaces in protocol state UP."
::= { juniIpIfSummary 4 }
juniIpIfSummaryTotalIntfProtDown OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IP interfaces in protocol state DOWN."
::= { juniIpIfSummary 5 }
juniIpIfSummaryTotalIntfProtNotPresent OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IP interfaces in protocol state NOT PRESENT."
::= { juniIpIfSummary 6 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IP Route Summary Statistics Attributes
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpRouteUnicastSummary OBJECT IDENTIFIER ::= { juniIpRouteSummary 1 }
juniIpRouteMulticastSummary OBJECT IDENTIFIER ::= { juniIpRouteSummary 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IP Route Unicast Summary Statistics Attributes
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpRouteSummaryUnicastTotalRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP routes."
::= { juniIpRouteUnicastSummary 1 }
juniIpRouteSummaryUnicastTotalBytes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of bytes in unicast route entries."
::= { juniIpRouteUnicastSummary 2 }
juniIpRouteSummaryUnicastIsisRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP ISIS routes."
::= { juniIpRouteUnicastSummary 3 }
juniIpRouteSummaryUnicastIsisLevel1Routes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP Level 1 ISIS routes."
::= { juniIpRouteUnicastSummary 4 }
juniIpRouteSummaryUnicastIsisLevel2Routes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP Level 2 ISIS routes."
::= { juniIpRouteUnicastSummary 5 }
juniIpRouteSummaryUnicastRipRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP RIP routes."
::= { juniIpRouteUnicastSummary 6 }
juniIpRouteSummaryUnicastStaticRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP Static routes."
::= { juniIpRouteUnicastSummary 7 }
juniIpRouteSummaryUnicastConnectedRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP Connected routes."
::= { juniIpRouteUnicastSummary 8 }
juniIpRouteSummaryUnicastBgpRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP BGP routes."
::= { juniIpRouteUnicastSummary 9 }
juniIpRouteSummaryUnicastOspfRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP OSPF routes."
::= { juniIpRouteUnicastSummary 10 }
juniIpRouteSummaryUnicastIntraAreaOspfRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP Intra Area OSPF routes."
::= { juniIpRouteUnicastSummary 11 }
juniIpRouteSummaryUnicastInterAreaOspfRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP Inter Area OSPF routes."
::= { juniIpRouteUnicastSummary 12 }
juniIpRouteSummaryUnicastExternalOspfRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP External OSPF routes."
::= { juniIpRouteUnicastSummary 13 }
juniIpRouteSummaryUnicastOtherInternalRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP Other Internal routes."
::= { juniIpRouteUnicastSummary 14}
juniIpRouteSummaryUnicastAccessRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP Access routes."
::= { juniIpRouteUnicastSummary 15 }
juniIpRouteSummaryUnicastIntCreatedAccessHostRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP Internally Created Access Host routes."
::= { juniIpRouteUnicastSummary 16 }
juniIpRouteSummaryUnicastIntDialoutRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Unicast IP Internally Created Dialout routes."
::= { juniIpRouteUnicastSummary 17 }
juniIpRouteSummaryUnicastRouteMemoryActive OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unicast IP Route Memory Storage."
::= { juniIpRouteUnicastSummary 18 }
juniIpRouteSummaryUnicastLastRouteAddedOrDeletedIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address for last Unicast route added or deleted."
::= { juniIpRouteUnicastSummary 19 }
juniIpRouteSummaryUnicastLastRouteAddedOrDeletedMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subnet mask for last Unicast route added or deleted."
::= { juniIpRouteUnicastSummary 20 }
juniIpRouteSummaryUnicastLastRouteAddedOrDeletedClient OBJECT-TYPE
SYNTAX INTEGER {
inValid(0),
isis(1),
rip(2),
ospf(3),
static(4),
local(5),
bgp(6),
mbgp(7),
staticLow(8),
ospfInternal(9),
ospfExternal(10),
dvmrp(11),
dvmrpAggregate(12),
hidden(13),
access(14),
accessInternal(15),
dialOut(16),
default(17) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Client for last Unicast route added or deleted."
::= { juniIpRouteUnicastSummary 21 }
juniIpRouteSummaryUnicastLastRouteAddedOrDeletedDate OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..30))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Date for last Unicast route added or deleted."
::= { juniIpRouteUnicastSummary 22 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IP Route Multicast Summary Statistics Attributes
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpRouteSummaryMulticastTotalRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP routes."
::= { juniIpRouteMulticastSummary 1 }
juniIpRouteSummaryMulticastTotalBytes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of bytes in multicast route entries."
::= { juniIpRouteMulticastSummary 2 }
juniIpRouteSummaryMulticastIsisRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP ISIS routes."
::= { juniIpRouteMulticastSummary 3 }
juniIpRouteSummaryMulticastLevel1IsisRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP Level 1 ISIS routes."
::= { juniIpRouteMulticastSummary 4 }
juniIpRouteSummaryMulticastLevel2IsisRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP Level 2 ISIS routes."
::= { juniIpRouteMulticastSummary 5 }
juniIpRouteSummaryMulticastRipRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP RIP routes."
::= { juniIpRouteMulticastSummary 6 }
juniIpRouteSummaryMulticastStaticRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP Static routes."
::= { juniIpRouteMulticastSummary 7 }
juniIpRouteSummaryMulticastConnectedRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP Connected routes."
::= { juniIpRouteMulticastSummary 8 }
juniIpRouteSummaryMulticastBgpRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP BGP routes."
::= { juniIpRouteMulticastSummary 9 }
juniIpRouteSummaryMulticastOspfRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP OSPF routes."
::= { juniIpRouteMulticastSummary 10 }
juniIpRouteSummaryMulticastIntraAreaOspfRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP Intra Area OSPF routes."
::= { juniIpRouteMulticastSummary 11 }
juniIpRouteSummaryMulticastInterAreaOspfRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP Inter Area OSPF routes."
::= { juniIpRouteMulticastSummary 12 }
juniIpRouteSummaryMulticastExternalOspfRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP External OSPF routes."
::= { juniIpRouteMulticastSummary 13 }
juniIpRouteSummaryMulticastOtherInternalRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP Other Internal routes."
::= { juniIpRouteMulticastSummary 14}
juniIpRouteSummaryMulticastAccessRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP Access routes."
::= { juniIpRouteMulticastSummary 15 }
juniIpRouteSummaryMulticastIntCreatedAccessHostRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP Internally Created Access Host routes."
::= { juniIpRouteMulticastSummary 16 }
juniIpRouteSummaryMultiastIntDialoutRoutes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Multicast IP Internally Created Dialout routes."
::= { juniIpRouteMulticastSummary 17 }
juniIpRouteSummaryMulticastRouteMemoryActive OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Multicast IP Route Memory Storage."
::= { juniIpRouteMulticastSummary 18 }
juniIpRouteSummaryMulticastLastRouteAddedOrDeletedIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address for last Multicast route added or deleted."
::= { juniIpRouteMulticastSummary 19 }
juniIpRouteSummaryMulticastLastRouteAddedOrDeletedMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subnet Mask for last Multicast route added or deleted."
::= { juniIpRouteMulticastSummary 20 }
juniIpRouteSummaryMulticastLastRouteAddedOrDeletedClient OBJECT-TYPE
SYNTAX INTEGER {
inValid(0),
isis(1),
rip(2),
ospf(3),
static(4),
local(5),
bgp(6),
mbgp(7),
staticLow(8),
ospfInternal(9),
ospfExternal(10),
dvmrp(11),
dvmrpAggregate(12),
hidden(13),
access(14),
accessInternal(15),
dialOut(16),
default(17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Client for last Multicast route added or deleted."
::= { juniIpRouteMulticastSummary 21}
juniIpRouteSummaryMulticastLastRouteAddedOrDeletedDate OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..30))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Date for last Multicast route added or deleted."
::= { juniIpRouteMulticastSummary 22}
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IP Interface attributes
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
-- IfIndex selection for creating new IP interfaces
--
juniIpNextIfIndex OBJECT-TYPE
SYNTAX JuniNextIfIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Coordinate ifIndex value allocation for entries in juniIpIfTable.
A GET of this object returns the next available ifIndex value to be used
to create an entry in the associated interface table; or zero, if no
valid ifIndex value is available. This object also returns a value of
zero when it is the lexicographic successor of a varbind presented in an
SNMP GETNEXT or GETBULK request, for which circumstance it is assumed
that ifIndex allocation is unintended.
Successive GETs will typically return different values, thus avoiding
collisions among cooperating management clients seeking to create table
entries simultaneously. "
::= { juniIpInterface 1 }
--
-- The IP Interface Table
--
juniIpIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniIpIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries for IP interfaces present in the system."
::= { juniIpInterface 2 }
juniIpIfEntry OBJECT-TYPE
SYNTAX JuniIpIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry describes the characteristics of an IP interface.
Creating/deleting entries in this table causes corresponding entries for
be created/deleted in ifTable/ifXTable/juniIfTable."
INDEX { juniIpIfIndex }
::= { juniIpIfTable 1 }
JuniIpIfEntry ::= SEQUENCE {
juniIpIfIndex InterfaceIndex,
juniIpIfRowStatus RowStatus,
juniIpIfLowerIfIndex InterfaceIndexOrZero,
juniIpIfType INTEGER,
juniIpIfTypeId Unsigned32,
juniIpIfSAValidationEnable JuniEnable,
juniIpIfCreationType INTEGER,
juniIpIfProfileId Unsigned32,
juniIpIfAlwaysUp JuniEnable,
juniIpIfLoopback JuniEnable,
juniIpIfLoopbackUid InterfaceIndexOrZero,
juniIpIfDebounceTime Integer32,
juniIpIfForwarding JuniEnable,
juniIpIfForceFragmentation JuniEnable,
juniIpIfSharesLowerUid JuniEnable,
juniIpIfFilterOptions Unsigned32,
juniIpIfName OCTET STRING,
juniIpIfArpTimeout Unsigned32,
juniIpIfAdminSpeed Unsigned32,
juniIpIfMultipathMode INTEGER,
juniIpIfSharedNhAddr IpAddress,
juniIpIfSharedNhRouterId Unsigned32,
juniIpIfPrimaryIpAddress IpAddress,
juniIpIfPrimaryIpMask IpAddress,
juniIpIfOperDebounceTime Integer32,
juniIpIfRouterIndex Unsigned32,
juniIpIfInheritNum JuniEnable,
juniIpIfInheritNumUid InterfaceIndexOrZero,
juniIpIfAnalyzerMode INTEGER,
juniIpIfAutoConfigure JuniEnable,
juniIpIfTcpMss Integer32,
juniIpIfInitSeqPrefOper Unsigned32,
juniIpIfInitSeqPrefAdmin Unsigned32,
juniIpIfArpSpoofCheck JuniEnable }
juniIpIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the IP interface. When creating entries in this table,
suitable values for this object are determined by reading
juniIpNextIfIndex."
::= { juniIpIfEntry 1 }
juniIpIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Controls creation/deletion of entries in this table according to the
RowStatus textual convention, constrained to support the following
values only:
createAndGo
destroy
To create an entry in this table, the following entry objects MUST be
explicitly configured:
juniIpIfRowStatus
juniIpIfLowerIfIndex
In addition, when creating an entry the following conditions must hold:
A value for juniIpIfIndex must have been determined previously,
typically by reading juniIpNextIfIndex.
The interface identified by a nonzero juniIpIfLowerIfIndex must
exist.
If juniIpIfType is configured to be 'loopback' or 'null',
juniIpIfLowerIfIndex must be set to zero.
The selected value of juniIpIfType must be compatible with the
underlying media interface identified by juniIpIfLowerIfIndex.
Once created, the following objects may not be modified:
juniIpIfLowerIfIndex
juniIpIfType
juniIpIfTypeId
A corresponding entry in ifTable/ifXTable/juniIfTable is created/
destroyed as a result of creating/destroying an entry in this table."
::= { juniIpIfEntry 2 }
juniIpIfLowerIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ifIndex of a media interface over which this IP interface is to be
layered. A value of zero is used when juniIpIfType is specified to be
loopback(4) or null(5)."
::= { juniIpIfEntry 3 }
juniIpIfType OBJECT-TYPE
SYNTAX INTEGER {
other(0),
broadcast(1),
pointToPoint(2),
nbma(3),
loopback(4),
null(5),
bgpMplsVpn(6),
vrfInternal(7),
dialout(8) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of network interface."
DEFVAL { pointToPoint }
::= { juniIpIfEntry 4 }
juniIpIfTypeId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A numerical distinguisher relevant for the loopback and null IP
interface types.
loopback Must be unique for all IP interfaces of this type.
null Must be unique for all IP interfaces of this type.
(FOR IMPLEMENTATIONS THAT SUPPORT ONE AND ONLY ONE NULL
INTERFACE, THE VALUE ZERO MUST BE USED.)
For all other IP interface types, this object is not relevant, reports a
value of zero when read, and must be given a value of zero if explicitly
configured during creation."
DEFVAL { 0 }
::= { juniIpIfEntry 5 }
juniIpIfSAValidationEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable source address validation on this IP network interface."
DEFVAL { disable }
::= { juniIpIfEntry 6 }
juniIpIfCreationType OBJECT-TYPE
SYNTAX INTEGER {
static(1),
dynamic(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify if the interface was created due to static configuration or due
to some dynamic event. Dynamic interfaces are not stored in NVS."
::= { juniIpIfEntry 7 }
juniIpIfProfileId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identified the profile used when creating a dynamic interface."
DEFVAL { 0 }
::= { juniIpIfEntry 8 }
juniIpIfAlwaysUp OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When enabled, the interface is determined to be up regardless of the
state of any lower layer interfaces."
DEFVAL { disable }
::= { juniIpIfEntry 9 }
juniIpIfLoopback OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"Indicates whether the interface is a loopback type interface.
This object has been replaced by juniIpIfInheritNum."
DEFVAL { disable }
::= { juniIpIfEntry 10 }
juniIpIfLoopbackUid OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"Specify the interface index of a loopback interface whose IP address
should be used when sourcing traffic on this interface. Useful for
unnumbered interfaces.
This object has been replaced by juniIpIfInheritNumUid."
DEFVAL { 0 }
::= { juniIpIfEntry 11 }
juniIpIfDebounceTime OBJECT-TYPE
SYNTAX Integer32 (0..60000)
UNITS "milliseconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the time in milliseconds that a layer 2 interface must remain
in a state before it is conveyed to the IP layer. Useful for interfaces
that experience brief outages that should not constitute a route flap.
A value of 0 indicates that the feature is disabled."
DEFVAL { 0 }
::= { juniIpIfEntry 12 }
juniIpIfForwarding OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable the forwarding of IP traffic to/from this interface.
This is currently only applicable to the out-of-band management port."
DEFVAL { enable }
::= { juniIpIfEntry 13 }
juniIpIfForceFragmentation OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Force the fragmentation of all IP packets greater than the interface
MTU even if the DF bit is set."
DEFVAL { disable }
::= { juniIpIfEntry 14 }
juniIpIfSharesLowerUid OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the interface as sharing a lower interface with another
interface vs owning it outright."
::= { juniIpIfEntry 15 }
juniIpIfFilterOptions OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Bit mask to configure the interface to filter packets with IP header
options. Currently, either no bits or all bits may be set."
DEFVAL { 0 }
::= { juniIpIfEntry 16 }
juniIpIfName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specify the IP interface discriminator for an IP interface not attached
to a layer 2 interface with a specific location."
DEFVAL { ''H }
::= { juniIpIfEntry 17 }
juniIpIfArpTimeout OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specify the ARP timeout for this interface in seconds."
DEFVAL { 21600 }
::= { juniIpIfEntry 18 }
juniIpIfAdminSpeed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set an administrative speed for the interface that overrides the speed
learned from the lower layer. A value of 0 indicates no speed is
specified."
DEFVAL { 0 }
::= { juniIpIfEntry 19 }
juniIpIfMultipathMode OBJECT-TYPE
SYNTAX INTEGER {
hashed(1),
roundRobin(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Configure the mode this interface should use when forwarding equal-cost
multipath traffic."
DEFVAL { hashed }
::= { juniIpIfEntry 20 }
juniIpIfSharedNhAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address of either a direct or indirect next-hop toward which
this shared interface should point."
DEFVAL { 0 }
::= { juniIpIfEntry 21 }
juniIpIfSharedNhRouterId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The identifier for the domain of a virtual router in which the
juniIpIfSharedNhAddr should be resolved."
DEFVAL { 0 }
::= { juniIpIfEntry 22 }
juniIpIfPrimaryIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the primary IP network on an interface."
::= { juniIpIfEntry 23 }
juniIpIfPrimaryIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address mask of the primary IP network on an interface."
::= { juniIpIfEntry 24 }
juniIpIfOperDebounceTime OBJECT-TYPE
SYNTAX Integer32 (0..60000)
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the operational time in milliseconds that a layer2 interface
must remain in a state before it is conveyed to the IP layer. Useful
for interfaces that experience brief outages that should not constitute
a route flap. A value of 0 indicates that the feature is disabled."
::= { juniIpIfEntry 25 }
juniIpIfRouterIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index or ID of the router."
::= { juniIpIfEntry 26 }
juniIpIfInheritNum OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether this numbered interface is referenced by unnumbered
interfaces."
::= { juniIpIfEntry 27 }
juniIpIfInheritNumUid OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specify the interface index of a numbered interface whose IP address
should be used when sourcing traffic on this interface. Useful for
unnumbered interfaces."
DEFVAL { 0 }
::= { juniIpIfEntry 28 }
juniIpIfAnalyzerMode OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1),
default(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to set the interface to analyzer mode. When enabled(1), all IP
packets entering this interface and all non-mirror IP packets leaving
this interface will be dropped. The value default(2) specifies that
this interface will be the default analyzer port for the virtual-router
where the interface resides."
DEFVAL { disable }
::= { juniIpIfEntry 29 }
juniIpIfAutoConfigure OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When enabled, IP subscriber interfaces are created dynamically based on
any attributes defined in the service-profile and the rules associated
with the DCM profile selected for this subscriber."
DEFVAL { disable }
::= { juniIpIfEntry 30 }
juniIpIfTcpMss OBJECT-TYPE
SYNTAX Integer32 (0|160..10240)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Configures TCP MSS value for an IP interface. When configured, MSS
value of TCP SYN packets received or transmitted on the interface will
be compared with the configured value and lowest of the two will replace
the value in the packet."
DEFVAL { 0 }
::= { juniIpIfEntry 31 }
juniIpIfInitSeqPrefOper OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the operational warm-restart replay initial sequence
preference value for an IP interface. Following an HA SRP switchover,
high-preference (value 1) IP interfaces are replayed first, followed by
static routes, and then low-preference (value 0) IP interfaces. This
allows static routes that are dependent on high-preference interfaces to
be resolved and routing protocols to exchange information with peers
over high-preference interfaces before low-preference interfaces are
replayed. An IP interface is designated as high-preference either (1)
implicitly by configuring an IGP or PIM protocol on that interface, or
(2) explicitly by juniIpIfInitSeqPrefAdmin (or CLI) configuration."
::= { juniIpIfEntry 32 }
juniIpIfInitSeqPrefAdmin OBJECT-TYPE
SYNTAX Unsigned32 (0..1)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Configures the warm-restart replay initial sequence preference value
for an IP interface. See the juniIpIfInitSeqPrefOper description for more
information."
DEFVAL { 0 }
::= { juniIpIfEntry 33 }
juniIpIfArpSpoofCheck OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When enabled, IP ARP spoof checking is performed on ARP packets
received on the IP interface."
DEFVAL { enable }
::= { juniIpIfEntry 34 }
--
-- The IP Interface Statistics Table
--
juniIpIfStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniIpIfStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries for IP interfaces present in the system."
::= { juniIpInterface 3 }
juniIpIfStatsEntry OBJECT-TYPE
SYNTAX JuniIpIfStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains statistics for an IP interface."
INDEX { juniIpIfStatsIndex }
::= { juniIpIfStatsTable 1 }
JuniIpIfStatsEntry ::= SEQUENCE {
juniIpIfStatsIndex InterfaceIndex,
juniIpIfStatsInPackets Counter64,
juniIpIfStatsInOctets Counter64,
juniIpIfStatsInPoliciedPackets Counter64,
juniIpIfStatsInPoliciedOctets Counter64,
juniIpIfStatsInErrorPackets Counter64,
juniIpIfStatsInSpoofedPackets Counter64,
juniIpIfStatsInForwardedPackets Counter64,
juniIpIfStatsInForwardedOctets Counter64,
juniIpIfStatsOutForwardedPackets Counter64,
juniIpIfStatsOutForwardedOctets Counter64,
juniIpIfStatsOutSchedDropPackets Counter64,
juniIpIfStatsOutSchedDropOctets Counter64,
juniIpIfStatsOutRequestedPackets Counter64,
juniIpIfStatsOutRequestedOctets Counter64,
juniIpIfStatsOutPoliciedPackets Counter64,
juniIpIfStatsOutPoliciedOctets Counter64,
juniIpIfStatsGreenOutSchedDropPackets Counter64,
juniIpIfStatsYellowOutSchedDropPackets Counter64,
juniIpIfStatsRedOutSchedDropPackets Counter64,
juniIpIfStatsGreenOutSchedDropOctets Counter64,
juniIpIfStatsYellowOutSchedDropOctets Counter64,
juniIpIfStatsRedOutSchedDropOctets Counter64 }
juniIpIfStatsIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the IP interface."
::= { juniIpIfStatsEntry 1 }
juniIpIfStatsInPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received on this interface."
::= { juniIpIfStatsEntry 2 }
juniIpIfStatsInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets received on this interface."
::= { juniIpIfStatsEntry 3 }
juniIpIfStatsInPoliciedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets dropped due to rate limiters attached to this
interface."
::= { juniIpIfStatsEntry 4 }
juniIpIfStatsInPoliciedOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets dropped due to rate limiters attached to this
interface."
::= { juniIpIfStatsEntry 5 }
juniIpIfStatsInErrorPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received with errors on this interface."
::= { juniIpIfStatsEntry 6 }
juniIpIfStatsInSpoofedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received on this interface with destination
unknown."
::= { juniIpIfStatsEntry 7 }
juniIpIfStatsInForwardedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of packets received on this interface that were forwarded
by any interface in the system."
::= { juniIpIfStatsEntry 8 }
juniIpIfStatsInForwardedOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of octets received on this interface that were forwarded by
any interface in the system."
::= { juniIpIfStatsEntry 9 }
juniIpIfStatsOutForwardedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets forwarded by this interface."
::= { juniIpIfStatsEntry 10 }
juniIpIfStatsOutForwardedOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets forwarded by this interface."
::= { juniIpIfStatsEntry 11 }
juniIpIfStatsOutSchedDropPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets dropped at this interface due to output queue
congestion."
::= { juniIpIfStatsEntry 12 }
juniIpIfStatsOutSchedDropOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets dropped at this interface due to output queue
congestion."
::= { juniIpIfStatsEntry 13 }
juniIpIfStatsOutRequestedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of packets requested for transmission at this interface."
::= { juniIpIfStatsEntry 14 }
juniIpIfStatsOutRequestedOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of octets requested for transmission at this interface."
::= { juniIpIfStatsEntry 15 }
juniIpIfStatsOutPoliciedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets dropped due to rate limiters attached to this
interface."
::= { juniIpIfStatsEntry 16 }
juniIpIfStatsOutPoliciedOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets dropped due to rate limiters attached to this
interface."
::= { juniIpIfStatsEntry 17 }
juniIpIfStatsGreenOutSchedDropPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of packets dropped at this interface due to output queue
congestion in the green output queue. The green output queue has lowest
drop probability."
::= { juniIpIfStatsEntry 18 }
juniIpIfStatsYellowOutSchedDropPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of packets dropped at this interface due to output queue
congestion in the yellow output queue. The yellow output queue has
medium level drop probability."
::= { juniIpIfStatsEntry 19 }
juniIpIfStatsRedOutSchedDropPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of packets dropped at this interface due to output queue
congestion in the red output queue. The red output queue has highest
level drop probability."
::= { juniIpIfStatsEntry 20 }
juniIpIfStatsGreenOutSchedDropOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of octets dropped at this interface due to output queue
congestion in the green output queue. The green output queue has the
lowest drop probability."
::= { juniIpIfStatsEntry 21 }
juniIpIfStatsYellowOutSchedDropOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of octets dropped at this interface due to output queue
congestion in the yellow output queue. The yellow output queue has the
medium drop probability."
::= { juniIpIfStatsEntry 22 }
juniIpIfStatsRedOutSchedDropOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The number of octets dropped at this interface due to output queue
congestion in the red output queue. The red output queue has the
highest drop probability."
::= { juniIpIfStatsEntry 23 }
--
-- The IP Interface Association Table
--
juniIpIfAssocTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniIpIfAssocEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains entries of interfaces present in the system."
::= { juniIpInterface 4 }
juniIpIfAssocEntry OBJECT-TYPE
SYNTAX JuniIpIfAssocEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table returns the ifIndex of the IP interface
associated with the lower layer ifIndex supplied as the index to this
table.
The purpose of this table is to translate L2 interfaces to corresponding
L3 interfaces for billing applications. Since interesting billing
related statistics are kept at L3, it is often useful to know the L2-L3
relationship. Note that this table is not confined to L2-L3
relationships. Any interface sublayer can be used to access this table
to determine the relationship with the L3 interface."
INDEX { juniIpIfAssocLowerIfIndex }
::= { juniIpIfAssocTable 1 }
JuniIpIfAssocEntry ::= SEQUENCE {
juniIpIfAssocLowerIfIndex InterfaceIndex,
juniIpIfAssocIpIfIndex InterfaceIndexOrZero }
juniIpIfAssocLowerIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the lower layer interface."
::= { juniIpIfAssocEntry 1 }
juniIpIfAssocIpIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ifIndex of the IP interface associated with the lower layer
juniIpIfAssocLowerIfIndex. In cases where there is not a 1 to 1
relationship between lower layer and higher layer IP interface, a zero
value juniIpIfAssocIpIfIndex is returned; this includes the case where
an IP interface has not yet been configued at the top of the interface
column.
An example usage of this table:
Assume a user needs to know the ifIndex relationship for all interfaces
with the L3 IP interface.
Then starting at the bottom of the stack below, the ATM and AAL5's
ifIndex would be used to access the table. The agent will return 0 for
each of these cases because multiple customer's traffic is demultiplexed
at these levels.
IP_1
PPP IP_2
ATM1483_1 ATM1483_2
\ /
AAL5
ATM
If the ATM1483_1 ifIndex is used to access this table, then the value of
juniIpIfAssocLowerIfIndex will be set to the ifIndex of IP_1.
Similarily, if the ATM1483_2 ifIndex is used to access this table, the
juniIpifAssocLowerIfIndex will set to the ifIndex of IP_2."
::= { juniIpIfAssocEntry 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IP Address attributes
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
-- IP globals
--
juniIpAddrGlobals OBJECT IDENTIFIER ::= { juniIpAddress 1 }
juniIpArpTimeout OBJECT-TYPE
SYNTAX Integer32 (1..60)
UNITS "seconds"
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Timeout, in seconds, for ARP requests issued by this entity."
::= { juniIpAddrGlobals 1 }
--
-- IP Address management
--
juniIpAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniIpAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP addressing information for this entity's IP network interfaces.
Representation of both numbered and unnumbered IP interfaces is
supported."
::= { juniIpAddress 2 }
juniIpAddrEntry OBJECT-TYPE
SYNTAX JuniIpAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP addressing information for one of this entity's IP network
interfaces. This interface could be either numbered or unnumbered.
The following objects correspond to (read-only) counterparts in the
IP-MIB ipAddrTable:
juniIpAdEntAddr
juniIpAdEntIfIndex
juniIpAdEntNetMask
juniIpAdEntBcastAddr
juniIpAdEntReasmMaxSize "
INDEX { juniIpAdEntAddr }
::= { juniIpAddrTable 1 }
JuniIpAddrEntry ::= SEQUENCE {
juniIpAdEntAddr JuniIpAddrLessIf,
juniIpAdEntIfIndex InterfaceIndex,
juniIpAdEntNetMask IpAddress,
juniIpAdEntBcastAddr Integer32,
juniIpAdEntReasmMaxSize Integer32,
juniIpAdEntRowStatus RowStatus,
juniIpAdEntAdminStatus JuniEnable,
juniIpAdEntArpRspEnable JuniEnable,
juniIpAdEntProxyArpRspEnable JuniEnable,
juniIpAdEntIgmpEnable JuniEnable,
juniIpAdEntDirectedBcastEnable JuniEnable,
juniIpAdEntIcmpRedirectEnable JuniEnable,
juniIpAdEntIcmpMaskReplyEnable JuniEnable,
juniIpAdEntIcmpUnreachEnable JuniEnable,
juniIpAdEntMtu Integer32,
juniIpAdEntUnnumLoopbackIfIndex InterfaceIndexOrZero,
juniIpAdEntIrdpEnable JuniEnable,
juniIpAdEntAccessRouteEnable JuniEnable,
juniIpAdEntAccessRouteHost IpAddress,
juniIpAdEntIsSecondary JuniEnable,
juniIpAdEntUnnumInheritNumIfIndex InterfaceIndexOrZero }
juniIpAdEntAddr OBJECT-TYPE
SYNTAX JuniIpAddrLessIf
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP address for a numbered IP network interface, if this object's
value has the form 'a.b.c.d', where 'a' is nonzero; or, the ifIndex
(interpreting the low 24 bits of this value as an integer) of an
unnumbered ('address-less') IP interface, if this object's value has the
form '0.b.c.d'."
::= { juniIpAddrEntry 1 }
juniIpAdEntIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ifIndex of the network interface to which this entry's IP
addressing mode pertains."
::= { juniIpAddrEntry 2 }
juniIpAdEntNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP subnet mask associated with the IP address of this entry. The
network and host bit fields of the mask are filled with 1's and 0's,
respectively.
If this entry represents an unnumbered IP interface, this object should
have a value of all ones."
DEFVAL { 'ffffffff'H }
::= { juniIpAddrEntry 3 }
juniIpAdEntBcastAddr OBJECT-TYPE
SYNTAX Integer32 (0..1)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the least-significant bit in the IP broadcast address used
for sending datagrams on the IP network interface associated with this
entry. For example, when the Internet standard all-ones broadcast
address is used, the value will be 1. This value applies to both the
subnet and network broadcasts addresses used by the entity on this
interface."
::= { juniIpAddrEntry 4 }
juniIpAdEntReasmMaxSize OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the largest IP datagram which this entity can re-assemble
from incoming IP fragmented datagrams received on this interface."
::= { juniIpAddrEntry 5 }
juniIpAdEntRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Controls the creation/deletion of entries in this table according to
the RowStatus textual convention, constrained to support the following
values only:
createAndGo
destroy
To create entries for both numbered and unnumbered IP interfaces, the
following entry objects MUST be explicitly configured:
juniIpAdEntRowStatus
juniIpAdEntIfIndex
To create an entry for a numbered IP interface, the following conditions
must also hold:
<none>
To create an entry for an unnumbered IP interface, the following
conditions must also hold:
juniIpAdEntUnnumInheritNumIfIndex must be configured with a nonzero
ifIndex value of an IP numbered interface."
::= { juniIpAddrEntry 6 }
juniIpAdEntAdminStatus OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable operation of IP on this IP network interface."
DEFVAL { enable }
::= { juniIpAddrEntry 7 }
juniIpAdEntArpRspEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable ARP response on this IP network interface."
DEFVAL { enable }
::= { juniIpAddrEntry 8 }
juniIpAdEntProxyArpRspEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable proxy ARP response on this IP network interface."
DEFVAL { disable }
::= { juniIpAddrEntry 9 }
juniIpAdEntIgmpEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"Enable/disable IGMP operation on this IP network interface."
DEFVAL { disable }
::= { juniIpAddrEntry 10 }
juniIpAdEntDirectedBcastEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable forwarding of directed broadcasts on this IP network
interface."
DEFVAL { disable }
::= { juniIpAddrEntry 11 }
juniIpAdEntIcmpRedirectEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable transmission of ICMP Redirect messages on this IP
network interface."
DEFVAL { disable }
::= { juniIpAddrEntry 12 }
juniIpAdEntIcmpMaskReplyEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable transmission of ICMP Mask Reply messages on this IP
network interface."
DEFVAL { disable }
::= { juniIpAddrEntry 13 }
juniIpAdEntIcmpUnreachEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable transmission of ICMP Unreachable messages on this IP
network interface."
DEFVAL { disable }
::= { juniIpAddrEntry 14 }
juniIpAdEntMtu OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The configured MTU size for this IP network interface. If set to zero,
the default MTU size, as determined by the underlying network media, is
used."
::= { juniIpAddrEntry 15 }
juniIpAdEntUnnumLoopbackIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"For unnumbered interfaces, the ifIndex of the IP loopback interface
whose IP address is used as the source IP address for IP packets
transmitted on the unnumbered network.
For numbered interfaces, this object has a value of zero.
This object has been replaced by juniIpAdEntUnnumInheritNumIfIndex."
DEFVAL { 0 }
::= { juniIpAddrEntry 16 }
juniIpAdEntIrdpEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Controls whether ICMP Router Discovery Protocol operation is permitted
to be sent on this network."
DEFVAL { enable }
::= { juniIpAddrEntry 17 }
juniIpAdEntAccessRouteEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If enabled, then establishment/loss of a point-to-point network
connection causes a host route for the remote host to be created/deleted
automatically."
DEFVAL { disable }
::= { juniIpAddrEntry 18 }
juniIpAdEntAccessRouteHost OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If an access route has been established, the IP address of the remote
host is reported by this object; otherwise, this object contains the
value 0.0.0.0."
::= { juniIpAddrEntry 19 }
juniIpAdEntIsSecondary OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If enabled, then the IP address corresponding to this entry is a
secondary address. If disabled, then the IP address corresponding to
this entry is te primary address."
DEFVAL { disable }
::= { juniIpAddrEntry 20 }
juniIpAdEntUnnumInheritNumIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For unnumbered interfaces, the ifIndex of the IP numbered interface
whose IP address is used as the source IP address for IP packets
transmitted on the unnumbered network.
For numbered interfaces, this object has a value of zero."
DEFVAL { 0 }
::= { juniIpAddrEntry 21 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IP Route
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
-- Route Globals
--
juniIpRouteGlobals OBJECT IDENTIFIER ::= { juniIpRoute 1 }
juniIpRouteLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Maximum number of IP routes maintained by this entity.
Setting a value lower than the current number of routes prevents
additional routes from being learned or configured, but does not cause
existing excess routes to be deleted to enforce the new limit."
::= { juniIpRouteGlobals 1 }
juniIpRouteTableLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VRF Route Table Maximum Number of Routes Limit."
DEFVAL { 0 }
::= { juniIpRouteGlobals 2 }
juniIpRouteTableWarnPercent OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VRF Route Table Percentage of the Route Limit at which to issue a warning.
The percentage is only valid when juniIpRouteTableWarnOnly is false. It must be set to 0 if
juniIpRouteTableWarnOnly is true."
DEFVAL { 0 }
::= { juniIpRouteGlobals 3 }
juniIpRouteTableWarnOnly OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VRF Route Table Maximum Number of Routes Warning flag.
Do not actually limit the number of routes in the table"
DEFVAL { false }
::= { juniIpRouteGlobals 4 }
juniIpRouteTableWarnThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The computed number of route to issue a warning. If juniIpRouteTableWarnOnly is true
this value will be juniIpRouteTableLimit and if juniIpRouteTableWarnOnly is false it will
be juniIpRouteTableLimit * juniIpRouteTableWarnPercentage"
::= { juniIpRouteGlobals 5 }
--
-- Static Route Table
--
juniIpRouteStaticTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniIpRouteStaticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of static routes configured on this entity.
The object definitions and indexing for this table are chosen to closely
align with the IP-FORWARD-MIB's ipCidrRouteTable.
This table serves three purposes:
1. Provide the means for configuring static routes.
2. Provide an efficient view of static routes (otherwise they must be
observed by traversing the entire routing table).
3. Provide view of static routes configured on network interfaces that
are currently inactive. (In this implementation, static routes
configured on inactive interfaces are not visible in the routing
table.)"
::= { juniIpRoute 2 }
juniIpRouteStaticEntry OBJECT-TYPE
SYNTAX JuniIpRouteStaticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A static route."
INDEX { juniIpRouteStaticDest,
juniIpRouteStaticMask,
juniIpRouteStaticPref,
juniIpRouteStaticNextHop }
::= { juniIpRouteStaticTable 1 }
JuniIpRouteStaticEntry ::= SEQUENCE {
juniIpRouteStaticDest IpAddress,
juniIpRouteStaticMask IpAddress,
juniIpRouteStaticPref Integer32,
juniIpRouteStaticNextHop JuniIpAddrLessIf,
juniIpRouteStaticRowStatus RowStatus,
juniIpRouteStaticIfIndex Integer32,
juniIpRouteStaticStatus INTEGER,
juniIpRouteStaticNextHopAS Integer32,
juniIpRouteStaticMetric Integer32,
juniIpRouteStaticTag Unsigned32 }
juniIpRouteStaticDest OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination IP address of this route.
This object may not take a Multicast (Class D) address value.
Any assignment (implicit or otherwise) of an instance of this object to
a value x must be rejected if the bitwise logical-AND of x with the
value of the corresponding instance of the juniIpRouteStaticMask object
is not equal to x."
::= { juniIpRouteStaticEntry 1 }
juniIpRouteStaticMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate the mask to be logical-ANDed with the destination address
before being compared to the value in the juniIpRouteStaticDest field.
For those systems that do not support arbitrary subnet masks, an agent
constructs the value of the juniIpRouteStaticMask by reference to the IP
Address Class.
Any assignment (implicit or otherwise) of an instance of this object to
a value x must be rejected if the bitwise logical-AND of x with the
value of the corresponding instance of the juniIpRouteStaticDest object
is not equal to juniIpRouteStaticDest."
::= { juniIpRouteStaticEntry 2 }
-- The following convention is included for specification
-- of TOS Field contents. At this time, the Host Requirements
-- and the Router Requirements documents disagree on the width
-- of the TOS field. This mapping describes the Router
-- Requirements mapping, and leaves room to widen the TOS field
-- without impact to fielded systems.
juniIpRouteStaticPref OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The preference of this static route. Higher values correspond to
higher preference. A static route with preference of zero will never be
installed as an active route."
::= { juniIpRouteStaticEntry 3 }
juniIpRouteStaticNextHop OBJECT-TYPE
SYNTAX JuniIpAddrLessIf
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The address of the next hop toward the destination."
::= { juniIpRouteStaticEntry 4 }
juniIpRouteStaticRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to row installation and removal
conventions."
::= { juniIpRouteStaticEntry 5 }
juniIpRouteStaticIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ifIndex value which identifies the local interface through which
the next hop of this route should be reached. A value of zero means the
router should automatically determine the interface through which the
specified next-hop address is reached.
An implementation may disallow non-zero values from being configured."
DEFVAL { 0 }
::= { juniIpRouteStaticEntry 6 }
juniIpRouteStaticStatus OBJECT-TYPE
SYNTAX INTEGER {
active(0),
inactive(1),
incomplete(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of this static route.
active(0) indicates this route is currently being used to reach the
specified destination.
inactive(1) indicates this route is considered valid, but currently is
superseded by another routing table entry for the destination, having a
higher preference value.
incomplete(2) indicates this route entry contains information that is
incomplete, or is inconsistent with other system configuration (for
example, the interface specified in juniIpRouteStaticIfIndex does not
exist)."
::= { juniIpRouteStaticEntry 7 }
juniIpRouteStaticNextHopAS OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Autonomous System Number of the Next Hop. The semantics of this
object are determined by the routing-protocol specified in the route's
ipCidrRouteProto value. When this object is unknown or not relevant its
value should be set to zero."
DEFVAL { 0 }
::= { juniIpRouteStaticEntry 8 }
juniIpRouteStaticMetric OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The primary routing metric for this route. The semantics of this
metric are determined by the routing-protocol specified in the route's
ipCidrRouteProto value. If this metric is not used, its value should be
set to -1."
DEFVAL { -1 }
::= { juniIpRouteStaticEntry 9 }
juniIpRouteStaticTag OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A tag value for this static route."
DEFVAL { 0 }
::= { juniIpRouteStaticEntry 10 }
--
-- Extensions to IP CIDR Route Table
--
juniIpCidrRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniIpCidrRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of routes active on this entity. This table is an augmentation
of the IP-FORWARD-MIB's ipCidrRouteTable."
::= { juniIpRoute 3 }
juniIpCidrRouteEntry OBJECT-TYPE
SYNTAX JuniIpCidrRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Additional attributes of an active route."
AUGMENTS { ipCidrRouteEntry }
::= { juniIpCidrRouteTable 1 }
JuniIpCidrRouteEntry ::= SEQUENCE {
juniIpCidrRoutePref Integer32,
juniIpCidrRouteArea IpAddress,
juniIpCidrRouteTag Unsigned32 }
juniIpCidrRoutePref OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The preference of this route. Higher values correspond to higher
preference."
::= { juniIpCidrRouteEntry 1 }
juniIpCidrRouteArea OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Area to which this route pertains. A value of 0.0.0.0 indicates no
area is identified."
::= { juniIpCidrRouteEntry 2 }
juniIpCidrRouteTag OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A tag value for this route."
::= { juniIpCidrRouteEntry 3 }
--
-- The IP Route BFD Table
--
juniIpRouteStaticBFDTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniIpRouteStaticBFDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Juniper IP interface table describes the BFD-specific
characteristics of interfaces."
::= { juniIpRoute 4 }
juniIpRouteStaticBFDEntry OBJECT-TYPE
SYNTAX JuniIpRouteStaticBFDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Juniper IP interface table describes the BFD-specific
characteristics of one interface."
AUGMENTS { juniIpRouteStaticEntry }
::= { juniIpRouteStaticBFDTable 1 }
JuniIpRouteStaticBFDEntry ::= SEQUENCE {
juniIpRouteStaticBfdEnable TruthValue,
juniIpRouteStaticBfdMinRxInterval Integer32,
juniIpRouteStaticBfdMinTxInterval Integer32,
juniIpRouteStaticBfdMultiplier Integer32
}
juniIpRouteStaticBfdEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable indicates whether BFD session on the interface is active or not"
DEFVAL { false }
::= { juniIpRouteStaticBFDEntry 1 }
juniIpRouteStaticBfdMinRxInterval OBJECT-TYPE
SYNTAX Integer32 (100..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable specifies upper-limit on rate local-system requires remote-system to
transmit bfd control-packets [milliseconds]"
DEFVAL { 300 }
::= { juniIpRouteStaticBFDEntry 2 }
juniIpRouteStaticBfdMinTxInterval OBJECT-TYPE
SYNTAX Integer32 (100..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable specifies lower-limit on rate local-system requires remote-system to
transmit bfd control-packets [milliseconds]"
DEFVAL { 300 }
::= { juniIpRouteStaticBFDEntry 3 }
juniIpRouteStaticBfdMultiplier OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable specifies detection-multiplier "
DEFVAL { 3 }
::= { juniIpRouteStaticBFDEntry 4 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Notifications
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- No notifications are defined in this MIB. Placeholders follow.
juniIpTrapEnables OBJECT IDENTIFIER ::= { juniIpMIB 2 }
juniIpTraps OBJECT IDENTIFIER ::= { juniIpMIB 3 }
juniIpTrapPrefix OBJECT IDENTIFIER ::= { juniIpTraps 0 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Trap Definitions
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpSaValidateTrapEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set to true to enable source address validation traps."
DEFVAL { false }
::= { juniIpTrapEnables 1 }
juniIpRouteTableTrapRouteLimitExceeded NOTIFICATION-TYPE
OBJECTS {juniIpRouteTableLimit, ipCidrRouteNumber}
STATUS current
DESCRIPTION
"The juniIpRouteTableTrapRouteLimitExceeded Trap indicates that the configured
route Table Limit has been exceeded. Issued once every 5 minutes that
the limit is being exceeded."
::= { juniIpTrapPrefix 1 }
juniIpRouteTableTrapRouteLimitRemove NOTIFICATION-TYPE
OBJECTS {juniIpRouteTableLimit, ipCidrRouteNumber}
STATUS current
DESCRIPTION
"The juniIpRouteTableTrapRouteTableLimitRemove Trap indicates that routes have been
freed up for 30 seconds and the Route Table Limit is no longer being violated.
Issued once."
::= { juniIpTrapPrefix 2 }
juniIpRouteTableTrapWarnThresholdExceeded NOTIFICATION-TYPE
OBJECTS {juniIpRouteTableLimit, juniIpRouteTableWarnThreshold, ipCidrRouteNumber}
STATUS current
DESCRIPTION
"The juniIpRouteTableTrapWarnThresholdExceeded Trap indicates that the computed
warning threshold has been exceeded.
Issued once every 5 minutes that the warning threshold is being execeeded."
::= { juniIpTrapPrefix 3 }
juniIpTrapSaValidationFailure NOTIFICATION-TYPE
OBJECTS {ifIndex, juniIpIfSaValFailSrcIpAddr, juniIpIfSaValFailDestIpAddr}
STATUS current
DESCRIPTION
"The juniIpTrapSaValidationFailure Trap indicates that a source address validation
failure occurred on an interface. The interface on which the failure occurred,
the source ip address and the destination ip address of the packet causing the
failure are returned."
::= { juniIpTrapPrefix 4 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Notification control objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpMIBNotificationObjects OBJECT IDENTIFIER ::= { juniIpTraps 1 }
juniIpIfSaValFailSrcIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The source IP address of the packet that caused the last source address
validation failure on the IP interface."
::= { juniIpMIBNotificationObjects 1 }
juniIpIfSaValFailDestIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The destination IP address of the packet that caused the last source address
validation failure on the IP interface."
::= { juniIpMIBNotificationObjects 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpConformance OBJECT IDENTIFIER ::= { juniIpMIB 4 }
juniIpCompliances OBJECT IDENTIFIER ::= { juniIpConformance 1 }
juniIpGroups OBJECT IDENTIFIER ::= { juniIpConformance 2 }
--
-- compliance statements
--
juniIpCompliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
IP MIB. This statement became obsolete when the IP interface and IP
address groups changed and the global objects were added."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup,
juniIpAddressGroup,
juniIpRouteGroup }
::= { juniIpCompliances 1 } -- JUNOSe 2.2
juniIpCompliance2 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
IP MIB. This statement became obsolete when the juniIpIfAssocTable was
added."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup2,
juniIpAddressGroup2,
juniIpRouteGroup,
juniIpGlobalGroup }
::= { juniIpCompliances 2 } -- JUNOSe 3.0
juniIpCompliance3 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
IP MIB. This statement became obsolete when the QoS related objects
were obsoleted."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup3,
juniIpAddressGroup2,
juniIpRouteGroup,
juniIpGlobalGroup }
::= { juniIpCompliances 3 } -- JUNOSe 3.2
juniIpCompliance4 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the
Juniper IP MIB. This statement became obsolete when the QoS related
objects were obsoleted."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup4,
juniIpAddressGroup2,
juniIpRouteGroup,
juniIpGlobalGroup }
::= { juniIpCompliances 4 } -- JUNOSe 4.0
juniIpCompliance5 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
IP MIB. This statement became obsolete when support was added for
router index and unnumbered interfaces referencing numbered interfaces."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup4,
juniIpAddressGroup3,
juniIpRouteGroup2,
juniIpGlobalGroup2 }
::= { juniIpCompliances 5 } -- JUNOSe 4.1
juniIpCompliance6 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
IP MIB. This statement became obsolete when interface mirroring and
interface auto configure support was added."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup5,
juniIpAddressGroup4,
juniIpRouteGroup2,
juniIpGlobalGroup2 }
::= { juniIpCompliances 6 } -- JUNOSe 5.0
juniIpCompliance7 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
IP MIB. This statement became obsolete when interface TCP MSS feature
was added."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup6,
juniIpAddressGroup4,
juniIpRouteGroup2,
juniIpGlobalGroup2,
juniIpIfSummaryGroup }
::= { juniIpCompliances 7 } -- JUNOSe 5.1
juniIpCompliance8 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
IP MIB. This statement became obsolete when juniIpVpnIdOui and
juniIpVpnIdIndex were obsoleted."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup7,
juniIpAddressGroup4,
juniIpRouteGroup2,
juniIpGlobalGroup2,
juniIpIfSummaryGroup }
::= { juniIpCompliances 8 } -- JUNOSe 5.2
juniIpCompliance9 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for entities which implement the Juniper IP
MIB."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup7,
juniIpAddressGroup4,
juniIpRouteGroup2,
juniIpGlobalGroup3,
juniIpIfSummaryGroup,
juniIpNotificationsGroup }
::= { juniIpCompliances 9 } -- JUNOSe 6.0
juniIpCompliance10 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for entities which implement the Juniper IP
MIB."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup7,
juniIpAddressGroup4,
juniIpRouteGroup3,
juniIpGlobalGroup3,
juniIpIfSummaryGroup,
juniIpNotificationsGroup }
::= { juniIpCompliances 10 } -- JUNOSe 6.1
juniIpCompliance11 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for entities which implement the Juniper IP
MIB. This statement became obsolete when juniIpVpnIdOui and
juniIpVpnIdIndex were obsoleted."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup7,
juniIpAddressGroup4,
juniIpRouteGroup3,
juniIpGlobalGroup3,
juniIpIfSummaryGroup,
juniIpNotificationGroup1,
juniIpMIBNotificationObjectsGroup,
juniIpRouteSummaryGroup }
::= { juniIpCompliances 11 } -- JUNOSe 7.0
juniIpCompliance12 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for entities which implement the Juniper IP
MIB. This statement became obsolete when juniIpIfInitSeqPrefOper and
juniIpIfInitSeqPrefAdmin were added."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup7,
juniIpAddressGroup4,
juniIpRouteGroup3,
juniIpGlobalGroup3,
juniIpIfSummaryGroup,
juniIpNotificationGroup1,
juniIpMIBNotificationObjectsGroup,
juniIpRouteSummaryGroup,
juniIpRouteStaticBFDGroup }
::= { juniIpCompliances 12 } -- JUNOSe 7.3
juniIpCompliance13 MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for entities which implement the Juniper IP
MIB. This statement became obsolete when juniIpIfArpSpoofCheck was added."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup8,
juniIpAddressGroup4,
juniIpRouteGroup3,
juniIpGlobalGroup3,
juniIpIfSummaryGroup,
juniIpNotificationGroup1,
juniIpMIBNotificationObjectsGroup,
juniIpRouteSummaryGroup,
juniIpRouteStaticBFDGroup }
::= { juniIpCompliances 13 } -- JUNOSe 7.3.2
juniIpCompliance14 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement the Juniper IP
MIB."
MODULE -- this module
MANDATORY-GROUPS {
juniIpInterfaceGroup9,
juniIpAddressGroup4,
juniIpRouteGroup3,
juniIpGlobalGroup3,
juniIpIfSummaryGroup,
juniIpNotificationGroup1,
juniIpMIBNotificationObjectsGroup,
juniIpRouteSummaryGroup,
juniIpRouteStaticBFDGroup }
::= { juniIpCompliances 14 } -- JUNOSe 9.3
--
-- units of conformance
--
juniIpInterfaceGroup OBJECT-GROUP
OBJECTS {
juniIpNextIfIndex,
juniIpIfRowStatus,
juniIpIfLowerIfIndex,
juniIpIfType,
juniIpIfTypeId,
juniIpIfStatsInPackets,
juniIpIfStatsInOctets,
juniIpIfStatsInPoliciedPackets,
juniIpIfStatsInPoliciedOctets,
juniIpIfStatsInErrorPackets,
juniIpIfStatsInSpoofedPackets,
juniIpIfStatsInForwardedPackets,
juniIpIfStatsInForwardedOctets,
juniIpIfStatsOutForwardedPackets,
juniIpIfStatsOutForwardedOctets,
juniIpIfStatsOutSchedDropPackets,
juniIpIfStatsOutSchedDropOctets,
juniIpIfStatsOutRequestedPackets,
juniIpIfStatsOutRequestedOctets,
juniIpIfStatsOutPoliciedPackets,
juniIpIfStatsOutPoliciedOctets }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP interface capabilities
in a Juniper product. This group became obsolete when new objects were
added to the juniIpIfTable and the juniIpIfStatsTable."
::= { juniIpGroups 1 } -- JUNOSe 2.2
juniIpAddressGroup OBJECT-GROUP
OBJECTS {
juniIpArpTimeout,
juniIpAdEntRowStatus,
juniIpAdEntIfIndex,
juniIpAdEntNetMask,
juniIpAdEntAdminStatus,
juniIpAdEntArpRspEnable,
juniIpAdEntProxyArpRspEnable,
juniIpAdEntIgmpEnable,
juniIpAdEntDirectedBcastEnable,
juniIpAdEntIcmpRedirectEnable,
juniIpAdEntIcmpMaskReplyEnable,
juniIpAdEntIcmpUnreachEnable,
juniIpAdEntMtu,
juniIpAdEntUnnumLoopbackIfIndex,
juniIpAdEntIrdpEnable,
juniIpAdEntAccessRouteEnable,
juniIpAdEntAccessRouteHost }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP address capabilities in
a Juniper product. This group became obsolete when
juniIpAdEntIgmpEnable was deprecated and juniIpAdEntIsSecondary was
added."
::= { juniIpGroups 2 } -- JUNOSe 2.2
juniIpRouteGroup OBJECT-GROUP
OBJECTS {
juniIpRouteLimit,
juniIpRouteStaticDest,
juniIpRouteStaticMask,
juniIpRouteStaticPref,
juniIpRouteStaticNextHop,
juniIpRouteStaticRowStatus,
juniIpRouteStaticIfIndex,
juniIpRouteStaticStatus,
juniIpRouteStaticNextHopAS,
juniIpRouteStaticMetric,
juniIpRouteStaticTag,
juniIpCidrRoutePref,
juniIpCidrRouteArea,
juniIpCidrRouteTag }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP routing capabilities in
a Juniper product. This group became obsolete when juniIpRouteLimit was
obsoleted."
::= { juniIpGroups 3 } -- JUNOSe 2.2
juniIpGlobalGroup OBJECT-GROUP
OBJECTS {
juniIpDebounceTime,
juniIpRouterId,
juniIpSourceRoutingAdminStatus,
juniIpVpnIdOui,
juniIpVpnIdIndex }
STATUS obsolete
DESCRIPTION
"Obsolete collection of IP global objects for managing instances of IP
in a Juniper product. This group became obsolete when BGP new format
objects were added."
::= { juniIpGroups 4 } -- JUNOSe 3.0
juniIpInterfaceGroup2 OBJECT-GROUP
OBJECTS {
juniIpNextIfIndex,
juniIpIfRowStatus,
juniIpIfLowerIfIndex,
juniIpIfType,
juniIpIfTypeId,
juniIpIfSAValidationEnable,
juniIpIfCreationType,
juniIpIfProfileId,
juniIpIfAlwaysUp,
juniIpIfLoopback,
juniIpIfLoopbackUid,
juniIpIfDebounceTime,
juniIpIfForwarding,
juniIpIfForceFragmentation,
juniIpIfSharesLowerUid,
juniIpIfFilterOptions,
juniIpIfName,
juniIpIfArpTimeout,
juniIpIfAdminSpeed,
juniIpIfMultipathMode,
juniIpIfSharedNhAddr,
juniIpIfSharedNhRouterId,
juniIpIfPrimaryIpAddress,
juniIpIfPrimaryIpMask,
juniIpIfOperDebounceTime,
juniIpIfStatsInPackets,
juniIpIfStatsInOctets,
juniIpIfStatsInPoliciedPackets,
juniIpIfStatsInPoliciedOctets,
juniIpIfStatsInErrorPackets,
juniIpIfStatsInSpoofedPackets,
juniIpIfStatsInForwardedPackets,
juniIpIfStatsInForwardedOctets,
juniIpIfStatsOutForwardedPackets,
juniIpIfStatsOutForwardedOctets,
juniIpIfStatsOutSchedDropPackets,
juniIpIfStatsOutSchedDropOctets,
juniIpIfStatsOutRequestedPackets,
juniIpIfStatsOutRequestedOctets,
juniIpIfStatsOutPoliciedPackets,
juniIpIfStatsOutPoliciedOctets,
juniIpIfStatsGreenOutSchedDropPackets,
juniIpIfStatsYellowOutSchedDropPackets,
juniIpIfStatsRedOutSchedDropPackets,
juniIpIfStatsGreenOutSchedDropOctets,
juniIpIfStatsYellowOutSchedDropOctets,
juniIpIfStatsRedOutSchedDropOctets }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP interface capabilities
in a Juniper product. This group became obsolete when the
juniIpIfAssocTable was added."
::= { juniIpGroups 5 } -- JUNOSe 3.0
juniIpAddressGroup2 OBJECT-GROUP
OBJECTS {
juniIpArpTimeout,
juniIpAdEntRowStatus,
juniIpAdEntIfIndex,
juniIpAdEntNetMask,
juniIpAdEntBcastAddr,
juniIpAdEntReasmMaxSize,
juniIpAdEntAdminStatus,
juniIpAdEntArpRspEnable,
juniIpAdEntProxyArpRspEnable,
juniIpAdEntDirectedBcastEnable,
juniIpAdEntIcmpRedirectEnable,
juniIpAdEntIcmpMaskReplyEnable,
juniIpAdEntIcmpUnreachEnable,
juniIpAdEntMtu,
juniIpAdEntUnnumLoopbackIfIndex,
juniIpAdEntIrdpEnable,
juniIpAdEntAccessRouteEnable,
juniIpAdEntAccessRouteHost,
juniIpAdEntIsSecondary }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP address capabilities in
a Juniper product. This group became obsolete when when
juniIpArpTimeout was obsoleted."
::= { juniIpGroups 6 } -- JUNOSe 3.0
juniIpInterfaceGroup3 OBJECT-GROUP
OBJECTS {
juniIpNextIfIndex,
juniIpIfRowStatus,
juniIpIfLowerIfIndex,
juniIpIfType,
juniIpIfTypeId,
juniIpIfSAValidationEnable,
juniIpIfCreationType,
juniIpIfProfileId,
juniIpIfAlwaysUp,
juniIpIfLoopback,
juniIpIfLoopbackUid,
juniIpIfDebounceTime,
juniIpIfForwarding,
juniIpIfForceFragmentation,
juniIpIfSharesLowerUid,
juniIpIfFilterOptions,
juniIpIfName,
juniIpIfArpTimeout,
juniIpIfAdminSpeed,
juniIpIfMultipathMode,
juniIpIfSharedNhAddr,
juniIpIfSharedNhRouterId,
juniIpIfPrimaryIpAddress,
juniIpIfPrimaryIpMask,
juniIpIfOperDebounceTime,
juniIpIfStatsInPackets,
juniIpIfStatsInOctets,
juniIpIfStatsInPoliciedPackets,
juniIpIfStatsInPoliciedOctets,
juniIpIfStatsInErrorPackets,
juniIpIfStatsInSpoofedPackets,
juniIpIfStatsInForwardedPackets,
juniIpIfStatsInForwardedOctets,
juniIpIfStatsOutForwardedPackets,
juniIpIfStatsOutForwardedOctets,
juniIpIfStatsOutSchedDropPackets,
juniIpIfStatsOutSchedDropOctets,
juniIpIfStatsOutRequestedPackets,
juniIpIfStatsOutRequestedOctets,
juniIpIfStatsOutPoliciedPackets,
juniIpIfStatsOutPoliciedOctets,
juniIpIfStatsGreenOutSchedDropPackets,
juniIpIfStatsYellowOutSchedDropPackets,
juniIpIfStatsRedOutSchedDropPackets,
juniIpIfStatsGreenOutSchedDropOctets,
juniIpIfStatsYellowOutSchedDropOctets,
juniIpIfStatsRedOutSchedDropOctets,
juniIpIfAssocIpIfIndex }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP interface capabilities
in a Juniper product. This group became obsolete when the QoS related
objects were obsoleted."
::= { juniIpGroups 7 } -- JUNOSe 3.2
juniIpInterfaceGroup4 OBJECT-GROUP
OBJECTS {
juniIpNextIfIndex,
juniIpIfRowStatus,
juniIpIfLowerIfIndex,
juniIpIfType,
juniIpIfTypeId,
juniIpIfSAValidationEnable,
juniIpIfCreationType,
juniIpIfProfileId,
juniIpIfAlwaysUp,
juniIpIfLoopback,
juniIpIfLoopbackUid,
juniIpIfDebounceTime,
juniIpIfForwarding,
juniIpIfForceFragmentation,
juniIpIfSharesLowerUid,
juniIpIfFilterOptions,
juniIpIfName,
juniIpIfArpTimeout,
juniIpIfAdminSpeed,
juniIpIfMultipathMode,
juniIpIfSharedNhAddr,
juniIpIfSharedNhRouterId,
juniIpIfPrimaryIpAddress,
juniIpIfPrimaryIpMask,
juniIpIfOperDebounceTime,
juniIpIfStatsInPackets,
juniIpIfStatsInOctets,
juniIpIfStatsInPoliciedPackets,
juniIpIfStatsInPoliciedOctets,
juniIpIfStatsInErrorPackets,
juniIpIfStatsInSpoofedPackets,
juniIpIfStatsOutForwardedPackets,
juniIpIfStatsOutForwardedOctets,
juniIpIfStatsOutSchedDropPackets,
juniIpIfStatsOutSchedDropOctets,
juniIpIfStatsOutPoliciedPackets,
juniIpIfStatsOutPoliciedOctets,
juniIpIfAssocIpIfIndex }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP interface capabilities
in a Juniper product. This group became obsolete when the
juniIpIfInheritNum and juniIpIfInheritNumUid objects were added and
juniIpIfLoopback and juniIpIfLoopbackUid were deprecated."
::= { juniIpGroups 8 } -- JUNOSe 4.0
juniIpAddressGroup3 OBJECT-GROUP
OBJECTS {
juniIpAdEntRowStatus,
juniIpAdEntIfIndex,
juniIpAdEntNetMask,
juniIpAdEntBcastAddr,
juniIpAdEntReasmMaxSize,
juniIpAdEntAdminStatus,
juniIpAdEntArpRspEnable,
juniIpAdEntProxyArpRspEnable,
juniIpAdEntDirectedBcastEnable,
juniIpAdEntIcmpRedirectEnable,
juniIpAdEntIcmpMaskReplyEnable,
juniIpAdEntIcmpUnreachEnable,
juniIpAdEntMtu,
juniIpAdEntUnnumLoopbackIfIndex,
juniIpAdEntIrdpEnable,
juniIpAdEntAccessRouteEnable,
juniIpAdEntAccessRouteHost,
juniIpAdEntIsSecondary }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP address capabilities in
a Juniper product. This group became obsolete when the
juniIpAdEntUnnumInheritNumIfIndex object was added and
juniIpAdEntUnnumLoopbackIfIndex was deprecated."
::= { juniIpGroups 9 } -- JUNOSe 4.1
juniIpRouteGroup2 OBJECT-GROUP
OBJECTS {
juniIpRouteStaticDest,
juniIpRouteStaticMask,
juniIpRouteStaticPref,
juniIpRouteStaticNextHop,
juniIpRouteStaticRowStatus,
juniIpRouteStaticIfIndex,
juniIpRouteStaticStatus,
juniIpRouteStaticNextHopAS,
juniIpRouteStaticMetric,
juniIpRouteStaticTag,
juniIpCidrRoutePref,
juniIpCidrRouteArea,
juniIpCidrRouteTag }
STATUS obsolete
DESCRIPTION
"A collection of objects for managing IP routing capabilities in a
Juniper product."
::= { juniIpGroups 10 } -- JUNOSe 4.1
juniIpGlobalGroup2 OBJECT-GROUP
OBJECTS {
juniIpDebounceTime,
juniIpRouterId,
juniIpSourceRoutingAdminStatus,
juniIpVpnIdOui,
juniIpVpnIdIndex,
juniIpBgpCommunityNewFormat,
juniIpBgpAsConfedSetNewFormat }
STATUS obsolete
DESCRIPTION
"Obsolete collection of IP global objects for managing instances of IP
in a Juniper product. This group became obsolete when juniIpVpnIdOui and
juniIpVpnIdIndex were obsoleted."
::= { juniIpGroups 11 } -- JUNOSe 4.1
juniIpInterfaceGroup5 OBJECT-GROUP
OBJECTS {
juniIpNextIfIndex,
juniIpIfRowStatus,
juniIpIfLowerIfIndex,
juniIpIfType,
juniIpIfTypeId,
juniIpIfSAValidationEnable,
juniIpIfCreationType,
juniIpIfProfileId,
juniIpIfAlwaysUp,
juniIpIfDebounceTime,
juniIpIfForwarding,
juniIpIfForceFragmentation,
juniIpIfSharesLowerUid,
juniIpIfFilterOptions,
juniIpIfName,
juniIpIfArpTimeout,
juniIpIfAdminSpeed,
juniIpIfMultipathMode,
juniIpIfSharedNhAddr,
juniIpIfSharedNhRouterId,
juniIpIfPrimaryIpAddress,
juniIpIfPrimaryIpMask,
juniIpIfOperDebounceTime,
juniIpIfRouterIndex,
juniIpIfInheritNum,
juniIpIfInheritNumUid,
juniIpIfStatsInPackets,
juniIpIfStatsInOctets,
juniIpIfStatsInPoliciedPackets,
juniIpIfStatsInPoliciedOctets,
juniIpIfStatsInErrorPackets,
juniIpIfStatsInSpoofedPackets,
juniIpIfStatsOutForwardedPackets,
juniIpIfStatsOutForwardedOctets,
juniIpIfStatsOutSchedDropPackets,
juniIpIfStatsOutSchedDropOctets,
juniIpIfStatsOutPoliciedPackets,
juniIpIfStatsOutPoliciedOctets,
juniIpIfAssocIpIfIndex }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP interface capabilities
in a Juniper product. This group became obsolete when the
juniIpIfAnalyzerMode object was added."
::= { juniIpGroups 12 } -- JUNOSe 5.0
juniIpAddressGroup4 OBJECT-GROUP
OBJECTS {
juniIpAdEntRowStatus,
juniIpAdEntIfIndex,
juniIpAdEntNetMask,
juniIpAdEntBcastAddr,
juniIpAdEntReasmMaxSize,
juniIpAdEntAdminStatus,
juniIpAdEntArpRspEnable,
juniIpAdEntProxyArpRspEnable,
juniIpAdEntDirectedBcastEnable,
juniIpAdEntIcmpRedirectEnable,
juniIpAdEntIcmpMaskReplyEnable,
juniIpAdEntIcmpUnreachEnable,
juniIpAdEntMtu,
juniIpAdEntIrdpEnable,
juniIpAdEntAccessRouteEnable,
juniIpAdEntAccessRouteHost,
juniIpAdEntIsSecondary,
juniIpAdEntUnnumInheritNumIfIndex }
STATUS current
DESCRIPTION
"A collection of objects for managing IP address capabilities in a
Juniper product."
::= { juniIpGroups 13 } -- JUNOSe 5.0
juniIpInterfaceDeprecatedGroup OBJECT-GROUP
OBJECTS {
juniIpIfLoopback,
juniIpIfLoopbackUid }
STATUS deprecated
DESCRIPTION
"A collection of deprecated objects for managing IP interface
capabilities in a Juniper product. This group may continue to be
support on some products."
::= { juniIpGroups 14 } -- JUNOSe 5.0
juniIpAddressDeprecatedGroup OBJECT-GROUP
OBJECTS {
juniIpAdEntIgmpEnable,
juniIpAdEntUnnumLoopbackIfIndex }
STATUS deprecated
DESCRIPTION
"A collection of deprecated objects for managing IP address capabilities
in a Juniper product. This group may continue to be support on some
products."
::= { juniIpGroups 15 } -- JUNOSe 5.0
juniIpInterfaceGroup6 OBJECT-GROUP
OBJECTS {
juniIpNextIfIndex,
juniIpIfRowStatus,
juniIpIfLowerIfIndex,
juniIpIfType,
juniIpIfTypeId,
juniIpIfSAValidationEnable,
juniIpIfCreationType,
juniIpIfProfileId,
juniIpIfAlwaysUp,
juniIpIfDebounceTime,
juniIpIfForwarding,
juniIpIfForceFragmentation,
juniIpIfSharesLowerUid,
juniIpIfFilterOptions,
juniIpIfName,
juniIpIfArpTimeout,
juniIpIfAdminSpeed,
juniIpIfMultipathMode,
juniIpIfSharedNhAddr,
juniIpIfSharedNhRouterId,
juniIpIfPrimaryIpAddress,
juniIpIfPrimaryIpMask,
juniIpIfOperDebounceTime,
juniIpIfRouterIndex,
juniIpIfInheritNum,
juniIpIfInheritNumUid,
juniIpIfAnalyzerMode,
juniIpIfAutoConfigure,
juniIpIfStatsInPackets,
juniIpIfStatsInOctets,
juniIpIfStatsInPoliciedPackets,
juniIpIfStatsInPoliciedOctets,
juniIpIfStatsInErrorPackets,
juniIpIfStatsInSpoofedPackets,
juniIpIfStatsOutForwardedPackets,
juniIpIfStatsOutForwardedOctets,
juniIpIfStatsOutSchedDropPackets,
juniIpIfStatsOutSchedDropOctets,
juniIpIfStatsOutPoliciedPackets,
juniIpIfStatsOutPoliciedOctets,
juniIpIfAssocIpIfIndex }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP interface capabilities
in a Juniper product. This group became obsolete when the
juniIpIfTcpMss object was added."
::= { juniIpGroups 16 } -- JUNOSe 5.1
juniIpIfSummaryGroup OBJECT-GROUP
OBJECTS {
juniIpIfSummaryTotalIntf,
juniIpIfSummaryTotalIntfUp,
juniIpIfSummaryTotalIntfDown,
juniIpIfSummaryTotalIntfProtUp,
juniIpIfSummaryTotalIntfProtDown,
juniIpIfSummaryTotalIntfProtNotPresent }
STATUS current
DESCRIPTION
"A collection of IP Interface Summary Statistics."
::= { juniIpGroups 17 } -- JUNOSe 5.1
juniIpInterfaceGroup7 OBJECT-GROUP
OBJECTS {
juniIpNextIfIndex,
juniIpIfRowStatus,
juniIpIfLowerIfIndex,
juniIpIfType,
juniIpIfTypeId,
juniIpIfSAValidationEnable,
juniIpIfCreationType,
juniIpIfProfileId,
juniIpIfAlwaysUp,
juniIpIfDebounceTime,
juniIpIfForwarding,
juniIpIfForceFragmentation,
juniIpIfSharesLowerUid,
juniIpIfFilterOptions,
juniIpIfName,
juniIpIfArpTimeout,
juniIpIfAdminSpeed,
juniIpIfMultipathMode,
juniIpIfSharedNhAddr,
juniIpIfSharedNhRouterId,
juniIpIfPrimaryIpAddress,
juniIpIfPrimaryIpMask,
juniIpIfOperDebounceTime,
juniIpIfRouterIndex,
juniIpIfInheritNum,
juniIpIfInheritNumUid,
juniIpIfAnalyzerMode,
juniIpIfAutoConfigure,
juniIpIfTcpMss,
juniIpIfStatsInPackets,
juniIpIfStatsInOctets,
juniIpIfStatsInPoliciedPackets,
juniIpIfStatsInPoliciedOctets,
juniIpIfStatsInErrorPackets,
juniIpIfStatsInSpoofedPackets,
juniIpIfStatsOutForwardedPackets,
juniIpIfStatsOutForwardedOctets,
juniIpIfStatsOutSchedDropPackets,
juniIpIfStatsOutSchedDropOctets,
juniIpIfStatsOutPoliciedPackets,
juniIpIfStatsOutPoliciedOctets,
juniIpIfAssocIpIfIndex }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects for managing IP interface capabilities
in a Juniper product. This group became obsolete when the
juniIpIfInitSeqPrefOper and juniIpIfInitSeqPrefAdmin objects were added."
::= { juniIpGroups 18 } -- JUNOSe 5.2
juniIpGlobalGroup3 OBJECT-GROUP
OBJECTS {
juniIpDebounceTime,
juniIpRouterId,
juniIpSourceRoutingAdminStatus,
juniIpBgpCommunityNewFormat,
juniIpBgpAsConfedSetNewFormat }
STATUS current
DESCRIPTION
"A collection of IP global objects for managing instances of IP in a
Juniper product."
::= { juniIpGroups 19 }
juniIpRouteGroup3 OBJECT-GROUP
OBJECTS {
juniIpRouteTableLimit,
juniIpRouteTableWarnPercent,
juniIpRouteTableWarnOnly,
juniIpRouteTableWarnThreshold,
juniIpRouteStaticDest,
juniIpRouteStaticMask,
juniIpRouteStaticPref,
juniIpRouteStaticNextHop,
juniIpRouteStaticRowStatus,
juniIpRouteStaticIfIndex,
juniIpRouteStaticStatus,
juniIpRouteStaticNextHopAS,
juniIpRouteStaticMetric,
juniIpRouteStaticTag,
juniIpCidrRoutePref,
juniIpCidrRouteArea,
juniIpCidrRouteTag }
STATUS current
DESCRIPTION
"A collection of objects for managing IP routing capabilities in a
Juniper product."
::= { juniIpGroups 20 } -- JUNOSe 6.1
juniIpNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
juniIpRouteTableTrapRouteLimitExceeded,
juniIpRouteTableTrapRouteLimitRemove,
juniIpRouteTableTrapWarnThresholdExceeded }
STATUS obsolete
DESCRIPTION
"The management notifications pertaining to IP Route Table state changes."
::= { juniIpGroups 21 } -- JUNOSe 6.1
juniIpNotificationGroup1 NOTIFICATION-GROUP
NOTIFICATIONS {
juniIpRouteTableTrapRouteLimitExceeded,
juniIpRouteTableTrapRouteLimitRemove,
juniIpRouteTableTrapWarnThresholdExceeded,
juniIpTrapSaValidationFailure }
STATUS current
DESCRIPTION
"The management notifications pertaining to IP."
::= { juniIpGroups 22 } -- JUNOSe 7.0
juniIpMIBNotificationObjectsGroup OBJECT-GROUP
OBJECTS {
juniIpIfSaValFailSrcIpAddr,
juniIpIfSaValFailDestIpAddr }
STATUS current
DESCRIPTION
"The management notification objects pertaining to IP."
::= { juniIpGroups 23 } -- JUNOSe 7.0
juniIpRouteSummaryGroup OBJECT-GROUP
OBJECTS {
juniIpRouteSummaryUnicastTotalRoutes,
juniIpRouteSummaryUnicastTotalBytes,
juniIpRouteSummaryUnicastIsisRoutes,
juniIpRouteSummaryUnicastIsisLevel1Routes,
juniIpRouteSummaryUnicastIsisLevel2Routes,
juniIpRouteSummaryUnicastRipRoutes,
juniIpRouteSummaryUnicastStaticRoutes,
juniIpRouteSummaryUnicastConnectedRoutes,
juniIpRouteSummaryUnicastBgpRoutes,
juniIpRouteSummaryUnicastOspfRoutes,
juniIpRouteSummaryUnicastIntraAreaOspfRoutes,
juniIpRouteSummaryUnicastOtherInternalRoutes,
juniIpRouteSummaryUnicastExternalOspfRoutes,
juniIpRouteSummaryUnicastInterAreaOspfRoutes,
juniIpRouteSummaryUnicastAccessRoutes,
juniIpRouteSummaryUnicastIntCreatedAccessHostRoutes,
juniIpRouteSummaryUnicastIntDialoutRoutes,
juniIpRouteSummaryUnicastRouteMemoryActive,
juniIpRouteSummaryUnicastLastRouteAddedOrDeletedIP,
juniIpRouteSummaryUnicastLastRouteAddedOrDeletedMask,
juniIpRouteSummaryUnicastLastRouteAddedOrDeletedClient,
juniIpRouteSummaryUnicastLastRouteAddedOrDeletedDate,
juniIpRouteSummaryMulticastTotalRoutes,
juniIpRouteSummaryMulticastTotalBytes,
juniIpRouteSummaryMulticastIsisRoutes,
juniIpRouteSummaryMulticastLevel1IsisRoutes,
juniIpRouteSummaryMulticastLevel2IsisRoutes,
juniIpRouteSummaryMulticastRipRoutes,
juniIpRouteSummaryMulticastStaticRoutes,
juniIpRouteSummaryMulticastConnectedRoutes,
juniIpRouteSummaryMulticastBgpRoutes,
juniIpRouteSummaryMulticastOspfRoutes,
juniIpRouteSummaryMulticastIntraAreaOspfRoutes,
juniIpRouteSummaryMulticastInterAreaOspfRoutes,
juniIpRouteSummaryMulticastExternalOspfRoutes,
juniIpRouteSummaryMulticastOtherInternalRoutes,
juniIpRouteSummaryMulticastAccessRoutes,
juniIpRouteSummaryMulticastIntCreatedAccessHostRoutes,
juniIpRouteSummaryMultiastIntDialoutRoutes,
juniIpRouteSummaryMulticastRouteMemoryActive,
juniIpRouteSummaryMulticastLastRouteAddedOrDeletedIP,
juniIpRouteSummaryMulticastLastRouteAddedOrDeletedMask,
juniIpRouteSummaryMulticastLastRouteAddedOrDeletedClient,
juniIpRouteSummaryMulticastLastRouteAddedOrDeletedDate }
STATUS current
DESCRIPTION
"The management notifications pertaining to IP Route Table state changes."
::= { juniIpGroups 24 } -- JUNOSe 7.0
juniIpRouteStaticBFDGroup OBJECT-GROUP
OBJECTS {
juniIpRouteStaticBfdEnable,
juniIpRouteStaticBfdMinRxInterval,
juniIpRouteStaticBfdMinTxInterval,
juniIpRouteStaticBfdMultiplier
}
STATUS current
DESCRIPTION
"The management notifications pertaining to IP Route Table state changes."
::= { juniIpGroups 25 }
juniIpInterfaceGroup8 OBJECT-GROUP
OBJECTS {
juniIpNextIfIndex,
juniIpIfRowStatus,
juniIpIfLowerIfIndex,
juniIpIfType,
juniIpIfTypeId,
juniIpIfSAValidationEnable,
juniIpIfCreationType,
juniIpIfProfileId,
juniIpIfAlwaysUp,
juniIpIfDebounceTime,
juniIpIfForwarding,
juniIpIfForceFragmentation,
juniIpIfSharesLowerUid,
juniIpIfFilterOptions,
juniIpIfName,
juniIpIfArpTimeout,
juniIpIfAdminSpeed,
juniIpIfMultipathMode,
juniIpIfSharedNhAddr,
juniIpIfSharedNhRouterId,
juniIpIfPrimaryIpAddress,
juniIpIfPrimaryIpMask,
juniIpIfOperDebounceTime,
juniIpIfRouterIndex,
juniIpIfInheritNum,
juniIpIfInheritNumUid,
juniIpIfAnalyzerMode,
juniIpIfAutoConfigure,
juniIpIfTcpMss,
juniIpIfInitSeqPrefOper,
juniIpIfInitSeqPrefAdmin,
juniIpIfStatsInPackets,
juniIpIfStatsInOctets,
juniIpIfStatsInPoliciedPackets,
juniIpIfStatsInPoliciedOctets,
juniIpIfStatsInErrorPackets,
juniIpIfStatsInSpoofedPackets,
juniIpIfStatsOutForwardedPackets,
juniIpIfStatsOutForwardedOctets,
juniIpIfStatsOutSchedDropPackets,
juniIpIfStatsOutSchedDropOctets,
juniIpIfStatsOutPoliciedPackets,
juniIpIfStatsOutPoliciedOctets,
juniIpIfAssocIpIfIndex }
STATUS obsolete
DESCRIPTION
"A collection of objects for managing IP interface capabilities in a
Juniper product."
::= { juniIpGroups 26 } -- JUNOSe 7.3.2
juniIpInterfaceGroup9 OBJECT-GROUP
OBJECTS {
juniIpNextIfIndex,
juniIpIfRowStatus,
juniIpIfLowerIfIndex,
juniIpIfType,
juniIpIfTypeId,
juniIpIfSAValidationEnable,
juniIpIfCreationType,
juniIpIfProfileId,
juniIpIfAlwaysUp,
juniIpIfDebounceTime,
juniIpIfForwarding,
juniIpIfForceFragmentation,
juniIpIfSharesLowerUid,
juniIpIfFilterOptions,
juniIpIfName,
juniIpIfArpTimeout,
juniIpIfAdminSpeed,
juniIpIfMultipathMode,
juniIpIfSharedNhAddr,
juniIpIfSharedNhRouterId,
juniIpIfPrimaryIpAddress,
juniIpIfPrimaryIpMask,
juniIpIfOperDebounceTime,
juniIpIfRouterIndex,
juniIpIfInheritNum,
juniIpIfInheritNumUid,
juniIpIfAnalyzerMode,
juniIpIfAutoConfigure,
juniIpIfTcpMss,
juniIpIfInitSeqPrefOper,
juniIpIfInitSeqPrefAdmin,
juniIpIfArpSpoofCheck,
juniIpIfStatsInPackets,
juniIpIfStatsInOctets,
juniIpIfStatsInPoliciedPackets,
juniIpIfStatsInPoliciedOctets,
juniIpIfStatsInErrorPackets,
juniIpIfStatsInSpoofedPackets,
juniIpIfStatsOutForwardedPackets,
juniIpIfStatsOutForwardedOctets,
juniIpIfStatsOutSchedDropPackets,
juniIpIfStatsOutSchedDropOctets,
juniIpIfStatsOutPoliciedPackets,
juniIpIfStatsOutPoliciedOctets,
juniIpIfAssocIpIfIndex }
STATUS current
DESCRIPTION
"A collection of objects for managing IP interface capabilities in a
Juniper product."
::= { juniIpGroups 27 } -- JUNOSe 9.3
END
|