1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
|
ALCATEL-IND1-TIMETRA-FILTER-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Unsigned32, Integer32, IpAddress, Counter32, Counter64,
Gauge32, TimeTicks, Opaque
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION, RowStatus, MacAddress,
TruthValue, DisplayString, TimeStamp,
RowPointer
FROM SNMPv2-TC
timetraSRMIBModules, tmnxSRObjs, tmnxSRNotifyPrefix,
tmnxSRConfs
FROM ALCATEL-IND1-TIMETRA-GLOBAL-MIB
TmnxAdminState, TmnxOperState, TNamedItem,
TNamedItemOrEmpty, Dot1PPriority, IpAddressPrefixLength,
ServiceAccessPoint, TItemDescription, TDSCPNameOrEmpty,
TDSCPFilterActionValue, TIpProtocol, TIpOption,
TTcpUdpPort, TTcpUdpPortOperator, TFrameType,
TmnxServId, TmnxPortID, TmnxEncapVal,
SdpBindId
FROM ALCATEL-IND1-TIMETRA-TC-MIB
InetAddressIPv6,InetAddressPrefixLength
FROM INET-ADDRESS-MIB
;
timetraFilterMIBModule MODULE-IDENTITY
LAST-UPDATED "0801010000Z"
ORGANIZATION "Alcatel"
CONTACT-INFO
"Alcatel 7x50 Support
Web: http://www.alcatel.com/comps/pages/carrier_support.jhtml"
DESCRIPTION
"This document is the SNMP MIB module to manage and provision
Filter features on Alcatel 7x50 systems.
Copyright 2003-2008 Alcatel-Lucent. All rights reserved.
Reproduction of this document is authorized on the condition that
the foregoing copyright notice is included.
This SNMP MIB module (Specification) embodies Alcatel's
proprietary intellectual property. Alcatel retains
all title and ownership in the Specification, including any
revisions.
Alcatel grants all interested parties a non-exclusive
license to use and distribute an unmodified copy of this
Specification in connection with management of Alcatel
products, and without fee, provided this copyright notice and
license appear on all copies.
This Specification is supplied 'as is', and Alcatel
makes no warranty, either express or implied, as to the use,
operation, condition, or performance of the Specification."
--
-- Revision History
--
REVISION "0801010000Z"
DESCRIPTION "Rev 6.0 01 Jan 2008 00:00
6.0 release of the TIMETRA-FILTER-MIB."
REVISION "0701010000Z"
DESCRIPTION "Rev 5.0 01 Jan 2007 00:00
5.0 release of the TIMETRA-FILTER-MIB."
REVISION "0602280000Z"
DESCRIPTION "Rev 4.0 28 Feb 2006 00:00
4.0 release of the TIMETRA-FILTER-MIB."
REVISION "0508310000Z"
DESCRIPTION "Rev 3.0 31 Aug 2005 00:00
3.0 release of the TIMETRA-FILTER-MIB."
REVISION "0501240000Z"
DESCRIPTION "Rev 2.1 24 Jan 2005 00:00
2.1 release of the TIMETRA-FILTER-MIB."
REVISION "0401150000Z"
DESCRIPTION "Rev 2.0 15 Jan 2004 00:00
2.0 release of the TIMETRA-FILTER-MIB."
REVISION "0308150000Z"
DESCRIPTION "Rev 1.2 15 Aug 2003 00:00
1.2 release of the TIMETRA-FILTER-MIB."
REVISION "200301290000Z"
DESCRIPTION "Rev 0.1 29 Jan 2003 00:00
Initial version of the TIMETRA-FILTER-MIB."
::= { timetraSRMIBModules 21 }
tFilterObjects OBJECT IDENTIFIER ::= { tmnxSRObjs 21 }
tFilterNotificationsPrefix OBJECT IDENTIFIER ::= { tmnxSRNotifyPrefix 21 }
tFilterNotifications OBJECT IDENTIFIER ::= { tFilterNotificationsPrefix 0 }
tFilterMIBConformance OBJECT IDENTIFIER ::= { tmnxSRConfs 21 }
tFilterNotificationObjects OBJECT IDENTIFIER ::= { tFilterObjects 8 }
tFilterTimeStampObjects OBJECT IDENTIFIER ::= { tFilterObjects 9 }
--
-- TEXTUAL-CONVENTIONs for Alcatel 7x50 SR series Filter Elements
--
TFilterID ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"the identification number of a filter. 0 indicates an invalid
filter-id."
SYNTAX Unsigned32 (0..65535)
TIPFilterID ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"the identification number of an IP filter."
SYNTAX Unsigned32 (0..65535)
TMACFilterID ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"the identification number of a MAC filter."
SYNTAX Unsigned32 (0..65535)
TItemScope ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual-convention determines some aspects of an item's
behavior regarding creation and use, unused entry garbage collection,
and automated promulgation by Element Management System to
other systems in the service domain.
TItemScope applies to SAP-ingress, SAP-egress, and Network policies,
and to IP filters and MAC filters.
exclusive:
When the scope of an item is defined as exclusive, the item can
only be applied once, for example to a single SAP. Attempting
to assign the policy to a second SAP is not allowed and will
result in an error. If the item is removed from the exclusive
SAP, it will become available for assignment to another
exclusive SAP.
A non-applied exclusive scope policy is a candidate to be removed
from the system by a TBD garbage collection command.
The system default policies cannot be put into the exclusive scope.
An error will be generated if scope exclusive is executed in
any policies with a policy-id equal to 1.
template:
When the scope of an item is defined as template, the item can be
applied any number of times. Policies with template scope
will not be considered for deletion by a TBD garbage collection
command; all items of scope 'template' must be deleted explicitly.
The system default policies will always be scope template.
An error will occur if a policy-id 1 is attempted to be
set to scope exclusive."
SYNTAX INTEGER { exclusive(1), template(2) }
TItemMatch ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"when set to off, the item is not matched.
when set to false, packets without the item match the filter.
when set to true, packets with the item match the filter."
SYNTAX INTEGER { off(1), false(2), true(3) }
TEntryIndicator ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Uniquely identifies an entry in a policy or filter table. The
value 0 is not a valid entry-id. When used as insertion point
the value 0 indicates that entries must be inserted at the very
beginning, i.e.before the first entry defined."
SYNTAX Unsigned32 (0..65535)
TEntryId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"uniquely identifies an entry in a policy or filter table.
to facilitate insertion of entries in the tables, we recommend
assigning entry IDs by 10s: 10, 20, 30, etc.
"
SYNTAX Unsigned32 (0..65535)
TEntryIdOrZero ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"uniquely identifies an entry in a policy or filter table.
to facilitate insertion of entries in the tables, we recommend
assigning entry IDs by 10s: 10, 20, 30, etc.
The value 0, means that the object does not refer to a filter
entry at this time.
"
SYNTAX Unsigned32 (0..65535)
TFilterAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"action to take on the traffic when no filter entry matches.
when set to drop(1), packets matching the filter entry are dropped.
when set to forward(2), packets matching the filter entry are forwarded.
"
SYNTAX INTEGER { drop(1), forward(2), httpRedirect(4) }
TFilterActionOrDefault ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"action to take on the traffic when the filter entry matches.
when set to drop(1), packets matching the filter entry are dropped.
when set to forward(2), packets matching the filter entry are forwarded.
when set to default(3), packets matching the filter entry are dropped.
"
SYNTAX INTEGER { drop(1), forward(2), default(3), httpRedirect(4) }
TFilterLogId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"uniquely identifies an entry in the filter log table. 0 indicates an
invalid log-id."
SYNTAX Unsigned32 (0 | 101..199)
TFilterLogDestination ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"determines the location where filtered packets are logged."
SYNTAX INTEGER { memory(1), syslog(2), file(3) }
TTimeRangeState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The textual convention TTimeRangeState is used to indicate the state
of an object that is controlled by a time range.
- timeRangeNotApplic:
no time range is applicable for this entry.
- timeRangeNotActive:
A time range is defined but is not active at this moment.
- timeRangeActive.
A time range is defined, and is activated successfully.
- timeRangeActiveDownloadFailed:
A time range is defined and is activated, but the corresponding
object could not be installed due to resource problems."
SYNTAX INTEGER { timeRangeNotApplic(0),
timeRangeNotActive(1),
timeRangeActive(2),
timeRangeActiveDownloadFailed(3) }
TFilterLogSummaryCriterium ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the field on which log summarisation will be done.
- when set to srcAddr, received log packets are summarized
based on the src ip/mac-addr
- when set to dstAddr, received log packets are summarized
based on the dst ip/mac-addr"
SYNTAX INTEGER { srcAddr (0),
dstAddr (1) }
TFilterType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of filter."
SYNTAX INTEGER { fltrtypeselNone (0),
fltrtypeselIp (1),
fltrtypeselMac (2),
fltrtypeselCpm (3),
fltrtypeselIpv6 (4),
fltrtypeselCpm6 (5) }
--
-- mib objects
--
--
-- IP Filter Table
--
tIPFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF TIPFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains a List of all ip filters configured on this system."
::= { tFilterObjects 1 }
tIPFilterEntry OBJECT-TYPE
SYNTAX TIPFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular IP Filter entry. Entries are
created/deleted by user. Entries have a presumed StorageType of
nonVolatile."
INDEX { tIPFilterId }
::= { tIPFilterTable 1 }
TIPFilterEntry ::= SEQUENCE
{
tIPFilterId TIPFilterID,
tIPFilterRowStatus RowStatus,
tIPFilterScope TItemScope,
tIPFilterDescription TItemDescription,
tIPFilterDefaultAction TFilterAction
}
tIPFilterId OBJECT-TYPE
SYNTAX TIPFilterID (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies an ip filter as configures on this system."
::= { tIPFilterEntry 1 }
tIPFilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows entries to be created and deleted in the
tIPFilterTable."
::= { tIPFilterEntry 2 }
tIPFilterScope OBJECT-TYPE
SYNTAX TItemScope
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the scope of this filter definition. If defined
as exclusive(1), this filter can be instantiated only once as compared
to the multiple instances that the filter can have if defined as
template(2)."
DEFVAL { template }
::= { tIPFilterEntry 3 }
tIPFilterDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"User-provided description for this filter."
DEFVAL { ''H }
::= { tIPFilterEntry 4 }
tIPFilterDefaultAction OBJECT-TYPE
SYNTAX TFilterAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The action to take for packets that do not match any filter entries."
DEFVAL { drop }
::= { tIPFilterEntry 5 }
--
-- IP Filter Entry parameters
--
tIPFilterParamsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TIPFilterParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of all IP filter match entries for all IP filters."
::= { tFilterObjects 2 }
tIPFilterParamsEntry OBJECT-TYPE
SYNTAX TIPFilterParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular IP Filter entry.
Every IP Filter can have zero or more IP Filter match entries.
a filter entry with no match criteria set will match every
packet, and the entry action will be taken.
Entries are created/deleted by user.
There is no StorageType object, entries have a presumed
StorageType of nonVolatile.
"
INDEX { tIPFilterId, tIPFilterParamsIndex }
::= { tIPFilterParamsTable 1 }
TIPFilterParamsEntry ::= SEQUENCE
{
tIPFilterParamsIndex TEntryId,
tIPFilterParamsRowStatus RowStatus,
tIPFilterParamsLogId TFilterLogId,
tIPFilterParamsDescription TItemDescription,
tIPFilterParamsAction TFilterActionOrDefault,
tIPFilterParamsForwardNH IpAddress,
tIPFilterParamsForwardNHIndirect TruthValue,
tIPFilterParamsRemarkDSCP TDSCPFilterActionValue,
tIPFilterParamsRemarkDSCPMask TDSCPFilterActionValue,
tIPFilterParamsRemarkDot1p Dot1PPriority,
tIPFilterParamsSourceIpAddr IpAddress,
tIPFilterParamsSourceIpMask IpAddressPrefixLength,
tIPFilterParamsDestinationIpAddr IpAddress,
tIPFilterParamsDestinationIpMask IpAddressPrefixLength,
tIPFilterParamsProtocol TIpProtocol,
tIPFilterParamsSourcePortValue1 TTcpUdpPort,
tIPFilterParamsSourcePortValue2 TTcpUdpPort,
tIPFilterParamsSourcePortOperator TTcpUdpPortOperator,
tIPFilterParamsDestPortValue1 TTcpUdpPort,
tIPFilterParamsDestPortValue2 TTcpUdpPort,
tIPFilterParamsDestPortOperator TTcpUdpPortOperator,
tIPFilterParamsDSCP TDSCPNameOrEmpty,
tIPFilterParamsFragment TItemMatch,
tIPFilterParamsOptionPresent TItemMatch,
tIPFilterParamsIpOptionValue TIpOption,
tIPFilterParamsIpOptionMask TIpOption,
tIPFilterParamsMultipleOption TItemMatch,
tIPFilterParamsTcpSyn TItemMatch,
tIPFilterParamsTcpAck TItemMatch,
tIPFilterParamsIcmpCode INTEGER,
tIPFilterParamsIcmpType INTEGER,
tIPFilterParamsCflowdSample TruthValue,
tIPFilterParamsCflowdIfSample TruthValue,
tIPFilterParamsForwardNHInterface DisplayString,
tIPFilterParamsIngressHitCount Counter64,
tIPFilterParamsEgressHitCount Counter64,
tIPFilterParamsLogInstantiated TruthValue,
tIPFilterParamsForwardRedPlcy TNamedItemOrEmpty,
tIPFilterParamsActiveDest IpAddress,
tIPFilterParamsFwdSvcId TmnxServId,
tIPFilterParamsFwdSapPortId TmnxPortID,
tIPFilterParamsFwdSapEncapVal TmnxEncapVal,
tIPFilterParamsFwdSdpBind SdpBindId,
tIPFilterParamsTimeRangeName TNamedItemOrEmpty,
tIPFilterParamsTimeRangeState TTimeRangeState,
tIPFilterParamsRedirectURL DisplayString,
tIPFilterParamsSrcIpFullMask IpAddress,
tIPFilterParamsDestIpFullMask IpAddress,
tIPFilterParamsIngrHitByteCount Counter64,
tIPFilterParamsEgrHitByteCount Counter64
}
tIPFilterParamsIndex OBJECT-TYPE
SYNTAX TEntryId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the secondary index for the entry. Every ip filter can have
multiple entries, therefore every ip filter entry is identified by
the tIPFilterId and tIPFilterParamsIndex."
::= { tIPFilterParamsEntry 1 }
tIPFilterParamsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows entries to be created and deleted in the
tIPFilterParamsTable."
::= { tIPFilterParamsEntry 2 }
tIPFilterParamsLogId OBJECT-TYPE
SYNTAX TFilterLogId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the log to use for packets that match
this entry. The value zero indicates that logging is disabled."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 3 }
tIPFilterParamsDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"User-provided description for this filter entry."
DEFVAL { ''H }
::= { tIPFilterParamsEntry 4 }
tIPFilterParamsAction OBJECT-TYPE
SYNTAX TFilterActionOrDefault
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The action to take for packets that match this filter entry. The value
default(3) specifies this entry to inherit the behavior defined as the
default for the filter."
DEFVAL { drop }
::= { tIPFilterParamsEntry 5 }
tIPFilterParamsForwardNH OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ip-address of the nexthop to which the packet should be forwarded
if it hits this filter entry. The action of this entry should be
'forward' in such a case."
DEFVAL { '00000000'H }
::= { tIPFilterParamsEntry 6 }
tIPFilterParamsForwardNHIndirect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPFilterParamsForwardNHIndirect specifies if the nexthop is directly/
indirectly reachable."
DEFVAL { false }
::= { tIPFilterParamsEntry 7 }
tIPFilterParamsRemarkDSCP OBJECT-TYPE
SYNTAX TDSCPFilterActionValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The DSCP value that should be remarked in case a packet hits this
filter entry."
DEFVAL { -1 }
::= { tIPFilterParamsEntry 8 }
tIPFilterParamsRemarkDSCPMask OBJECT-TYPE
SYNTAX TDSCPFilterActionValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPFilterParamsRemarkDSCPMask specifies the care bits while remarking
with the DSCP value."
DEFVAL { 255 }
::= { tIPFilterParamsEntry 9 }
tIPFilterParamsRemarkDot1p OBJECT-TYPE
SYNTAX Dot1PPriority
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPFilterParamsRemarkDot1p specifies the Dot1p value that needs to be
remarked on the packet if it hits this filter entry."
DEFVAL { -1 }
::= { tIPFilterParamsEntry 10 }
tIPFilterParamsSourceIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IP address to match the source-ip of the packet."
DEFVAL { '00000000'H }
::= { tIPFilterParamsEntry 11 }
tIPFilterParamsSourceIpMask OBJECT-TYPE
SYNTAX IpAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If different from 0, the object tIPFilterParamsSourceIpMask
specifies the IP Mask value for this policy IP Filter entry.
The mask is ANDed with the received source IP address to match
the tIPFilterParamsSourceIpAddr.
If the value of tIPFilterParamsSourceIpMask is 0, and the
value of tIPFilterParamsSrcIpFullMask is non zero then the
value of tIPFilterParamsSrcIpFullMask is used as mask.
If the value of tIPFilterParamsSourceIpMask is non zero,
it will be equal to the mask expressed the object
tIPFilterParamsSrcIpFullMask.
If both tIPFilterParamsSourceIpMask and
tIPFilterParamsSrcIpFullMask are set to 0, not matching is done
on the source Ip address.
If a value is specified for this object, then the value of the
object tIPFilterParamsSrcIpFullMask will be set to reflect
this same mask."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 12 }
tIPFilterParamsDestinationIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IP address to match the destination-ip of the packet."
DEFVAL { '00000000'H }
::= { tIPFilterParamsEntry 13 }
tIPFilterParamsDestinationIpMask OBJECT-TYPE
SYNTAX IpAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If different from 0, the object tIPFilterParamsDestinationIpMask
specifies the IP Mask value for this policy IP Filter entry.
The mask is ANDed with the received Destination IP address to match
the tIPFilterParamsDestinationIpAddr.
If the value of tIPFilterParamsDestinationIpMask is 0, and the
value of tIPFilterParamsDestIpFullMask is non zero then the
value of tIPFilterParamsDestIpFullMask is used as mask.
If the value of tIPFilterParamsDestinationIpMask is non zero,
it will be equal to the mask expressed the object
tIPFilterParamsDestIpFullMask.
If both tIPFilterParamsDestinationIpMask and
tIPFilterParamsDestIpFullMask are set to 0, not matching is done
on the Destination Ip address.
If a value is specified for this object, then the value of the
object tIPFilterParamsDestIpFullMask will be set to reflect
this same mask."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 14 }
tIPFilterParamsProtocol OBJECT-TYPE
SYNTAX TIpProtocol
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IP protocol to match. set to -1 to disable matching IP protocol. If
the protocol is changed the protocol specific parameters are reset.
For instance if protocol is changed from TCP to UDP, then the objects
tIPFilterParamsTcpSyn and tIPFilterParamsTcpAck will be turned off."
DEFVAL { -1 }
::= { tIPFilterParamsEntry 15 }
tIPFilterParamsSourcePortValue1 OBJECT-TYPE
SYNTAX TTcpUdpPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"TCP/UDP port value1. The value of this object is used as per the
description for tIPFilterParamsSourcePortOperator."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 16 }
tIPFilterParamsSourcePortValue2 OBJECT-TYPE
SYNTAX TTcpUdpPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"TCP/UDP port value2. The value of this object is used as per the
description for tIPFilterParamsSourcePortOperator."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 17 }
tIPFilterParamsSourcePortOperator OBJECT-TYPE
SYNTAX TTcpUdpPortOperator
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The operator specifies the manner in which
tIPFilterParamsSourcePortValue1 and tIPFilterParamsSourcePortValue2
are to be used. The value of these latter 2 objects and
tIPFilterParamsSourcePortOperator is used as described in
TTcpUdpPortOperator."
DEFVAL { none }
::= { tIPFilterParamsEntry 18 }
tIPFilterParamsDestPortValue1 OBJECT-TYPE
SYNTAX TTcpUdpPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"TCP/UDP port value1. The value of this object is used as per the
description for tIPFilterParamsDestPortOperator."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 19 }
tIPFilterParamsDestPortValue2 OBJECT-TYPE
SYNTAX TTcpUdpPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"TCP/UDP port value2. The value of this object is used as per the
description for tIPFilterParamsDestPortOperator."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 20 }
tIPFilterParamsDestPortOperator OBJECT-TYPE
SYNTAX TTcpUdpPortOperator
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The operator specifies the manner in which
tIPFilterParamsDestPortValue1 and tIPFilterParamsDestPortValue2
are to be used. The value of these latter 2 objects and
tIPFilterParamsDestPortOperator is used as described in
TTcpUdpPortOperator."
DEFVAL { none }
::= { tIPFilterParamsEntry 21 }
tIPFilterParamsDSCP OBJECT-TYPE
SYNTAX TDSCPNameOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"DSCP to be matched on the packet."
DEFVAL { ''H }
::= { tIPFilterParamsEntry 22 }
tIPFilterParamsFragment OBJECT-TYPE
SYNTAX TItemMatch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If enabled, this object matches fragmented/unfragmented packets as per
the value of the object."
DEFVAL { off }
::= { tIPFilterParamsEntry 24 }
tIPFilterParamsOptionPresent OBJECT-TYPE
SYNTAX TItemMatch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If enabled, this object matches packets if they have options present
or not as per the value of the object."
DEFVAL { off }
::= { tIPFilterParamsEntry 25 }
tIPFilterParamsIpOptionValue OBJECT-TYPE
SYNTAX TIpOption
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the specific ip-option to match."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 26 }
tIPFilterParamsIpOptionMask OBJECT-TYPE
SYNTAX TIpOption
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Mask is ANDed with the ip-option before being compared to
tIPFilterParamsIpOptionValue."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 27 }
tIPFilterParamsMultipleOption OBJECT-TYPE
SYNTAX TItemMatch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If enabled, matches multiple options as per the value of the object."
DEFVAL { off }
::= { tIPFilterParamsEntry 28 }
tIPFilterParamsTcpSyn OBJECT-TYPE
SYNTAX TItemMatch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If Enabled, matches a TCP Syn as per value of the object."
DEFVAL { off }
::= { tIPFilterParamsEntry 29 }
tIPFilterParamsTcpAck OBJECT-TYPE
SYNTAX TItemMatch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If Enabled, matches a TCP Ack as per value of the object."
DEFVAL { off }
::= { tIPFilterParamsEntry 30 }
tIPFilterParamsIcmpCode OBJECT-TYPE
SYNTAX INTEGER (-1|0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Icmp code to be matched. tIPFilterParamsIcmpCode complements the
object tIPFilterParamsIcmpType. Both of them need to be set to actually
enable ICMP matching. The value -1 means Icmp code matching is not
enabled."
DEFVAL { -1 }
::= { tIPFilterParamsEntry 31 }
tIPFilterParamsIcmpType OBJECT-TYPE
SYNTAX INTEGER (-1|0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Icmp type to be matched. tIPFilterParamsIcmpType complements the
object tIPFilterParamsIcmpCode. Both of them need to be set to actually
enable ICMP matching. The value -1 means Icmp type matching is not
enabled."
DEFVAL { -1 }
::= { tIPFilterParamsEntry 32 }
tIPFilterParamsCflowdSample OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When tIPFilterParamsCflowdSample has a value of 'true', Cflowd
sampling and analysis is performed on those packet streams where this
filter has been applied. Only packets matching this IP filter entry
are subjected to Cflowd sampling and analysis. A Cflowd profile
controls the sampling and analysis of data flows through the router."
DEFVAL { false }
::= { tIPFilterParamsEntry 33 }
tIPFilterParamsCflowdIfSample OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When tIPFilterParamsCflowdIfSample has a value of 'true', Cflowd
sampling and analysis is performed on those packet streams where this
filter has been applied. Only packets matching this IP filter entry
are subjected to Cflowd sampling and analysis. A Cflowd profile
controls the sampling and analysis of data flows through the router."
DEFVAL { true }
::= { tIPFilterParamsEntry 34 }
tIPFilterParamsForwardNHInterface OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The interface name for the nexthop to which the packet should be
forwarded if it hits this filter entry. The action of this entry
should be 'forward' in such a case."
DEFVAL { ''H }
::= { tIPFilterParamsEntry 35 }
tIPFilterParamsIngressHitCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of times an ingress packet
matched this entry."
::= { tIPFilterParamsEntry 36 }
tIPFilterParamsEgressHitCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of times an egress packet
matched this entry."
::= { tIPFilterParamsEntry 37 }
tIPFilterParamsLogInstantiated OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tIPFilterParamsLogInstantiated indicates if the filter log for
this filter entry has been instantiated or not."
::= { tIPFilterParamsEntry 38 }
tIPFilterParamsForwardRedPlcy OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPFilterParamsForwardRedPlcy specifies the redirect policy to be
used to determine the nexthop."
DEFVAL { ''H }
::= { tIPFilterParamsEntry 39 }
tIPFilterParamsActiveDest OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tIPFilterParamsActiveDest indicates the IP address of the active
destination for this IP filter. A value of 0 indicates that there
is currently no active destination."
::= { tIPFilterParamsEntry 40 }
tIPFilterParamsFwdSvcId OBJECT-TYPE
SYNTAX TmnxServId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tIPFilterParamsFwdSvcId indicates the service id of the
destination for this IP filter entry. A value of 0 indicates that
there is currently no active SAP or SDP destination."
::= { tIPFilterParamsEntry 41 }
tIPFilterParamsFwdSapPortId OBJECT-TYPE
SYNTAX TmnxPortID
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPFilterParamsFwdSapPortId specifies the sap port identity of the
destination for this IP filter entry.
A value of 0 indicates that there is currently no SAP destination
defined. A value different from 0 can only be specified if the value
of the tIPFilterParamsAction object of this entry is 'forward'.
In addition a non-zero value can only be given if the object
tIPFilterParamsFwdSdpBind has a zero value."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 42 }
tIPFilterParamsFwdSapEncapVal OBJECT-TYPE
SYNTAX TmnxEncapVal
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPFilterParamsFwdSapEncapVal specifies the sap port encap value
of the destination SAP for this IP filter entry.
A value different from 0 can only be specified if the value of the
tIPFilterParamsAction object of this entry is 'forward'. In addition
a non-zero value can only be given if the object
tIPFilterParamsFwdSdpBind has a zero value. A value of 0 indicates
that either
1) the sap encapsulation value is not specified when
tIPFilterParamsFwdSapPortId and tIPFilterParamsFwdSvcId
have valid values; or
2) that there is no SAP destination."
DEFVAL { 0 }
::= { tIPFilterParamsEntry 43 }
tIPFilterParamsFwdSdpBind OBJECT-TYPE
SYNTAX SdpBindId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPFilterParamsFwdSdpBind specifies the sdp bibd identity of the
destination for this IP filter entry.
A value of 0 indicates that there is currently no SDP binding defined.
A value different from 0 can only be specified if the value of the
tIPFilterParamsAction object of this entry is 'forward'. In addition
a non-zero value can only be given if the objects
tIPFilterParamsFwdSapPortId and tIPFilterParamsFwdSapEncapVal have a
zero value."
DEFVAL { '0000000000000000'h }
::= { tIPFilterParamsEntry 44 }
tIPFilterParamsTimeRangeName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPFilterParamsTimeRangeName specifies the tmnxTimeRangeEntry to be
associated with this filter entry.
A value for this object can only be specified during row creation, and
cannot be altered lateron.
Also, a value is accepted only if the tmnxTimeRangeEntry is defined
in the TIMETRA-SCHEDULER-MIB::tmnxTimeRangeTable.tTimeRangeName."
DEFVAL { ''H }
::= { tIPFilterParamsEntry 45 }
tIPFilterParamsTimeRangeState OBJECT-TYPE
SYNTAX TTimeRangeState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tIPFilterParamsTimeRangeState indicates whether or not the entry
is currently in effect.
- timeRangeNotApplic:
no time range is applicable for this entry.
- timeRangeNotActive:
A time range is defined in tIPFilterParamsTimeRangeName, but is not
active at this moment. Consequently the filter entry is not
installed.
- timeRangeActive.
A time range is defined in tIPFilterParamsTimeRangeName, and is
activated successfully.
- timeRangeActiveDownloadFailed:
A time range is defined in tIPFilterParamsTimeRangeName, and is
activated, but the corresponding filter entry could not be
installed due to resource problems."
::= { tIPFilterParamsEntry 46 }
tIPFilterParamsRedirectURL OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tIPFilterParamsRedirectURL specifies the URL
to redirect to, when the value of tIPFilterParamsAction is
'httpRedirect'."
::= { tIPFilterParamsEntry 47 }
tIPFilterParamsSrcIpFullMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If different from 0, the object tIPFilterParamsSrcIpFullMask
specifies the IP Mask value for this policy IP Filter entry.
The mask is ANDed with the received Source IP address to match
the tIPFilterParamsSourceIpAddr.
If the value of tIPFilterParamsSourceIpMask is non zero,
it will be equal to the mask expressed the object
tIPFilterParamsSrcIpFullMask.
If both tIPFilterParamsSourceIpMask and
tIPFilterParamsSrcIpFullMask are set to 0, no matching is done
on the Source Ip address.
This object should contain consecutive ones and zeros. Both
a regular and an inverse mask is allowed (i.e. the sequence of
consecutive ones can appear at the front or at the end of the
mask).
If a regular mask is specified for tIPFilterParamsSrcIpFullMask
then the value of tIPFilterParamsSourceIpMask will be changed
to reflect this value. If an inverse is specified, the value of
tIPFilterParamsSourceIpMask will be set to 0."
DEFVAL { '00000000'h }
::= { tIPFilterParamsEntry 48 }
tIPFilterParamsDestIpFullMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If different from 0, the object tIPFilterParamsDestIpFullMask
specifies the IP Mask value for this policy IP Filter entry.
The mask is ANDed with the received Destination IP address to match
the tIPFilterParamsDestinationIpAddr.
If the value of tIPFilterParamsDestinationIpMask is non zero,
it will be equal to the mask expressed the object
tIPFilterParamsDestIpFullMask.
If both tIPFilterParamsDestinationIpMask and
tIPFilterParamsDestIpFullMask are set to 0, no matching is done
on the Destination Ip address.
This object should contain consecutive ones and zeros. Both
a regular and an inverse mask is allowed (i.e. the sequence of
consecutive ones can appear at the front or at the end of the
mask).
If a regular mask is specified for tIPFilterParamsDestIpFullMask
then the value of tIPFilterParamsDestinationIpMask will be changed
to reflect this value. If an inverse is specified, the value of
tIPFilterParamsDestinationIpMask will be set to 0."
DEFVAL { '00000000'h }
::= { tIPFilterParamsEntry 49 }
tIPFilterParamsIngrHitByteCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tIPFilterParamsIngrHitByteCount indicates the number
of bytes of all ingress packets that matched this entry."
::= { tIPFilterParamsEntry 50 }
tIPFilterParamsEgrHitByteCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tIPFilterParamsEgrHitByteCount indicates the number
of bytes of all egress packets that matched this entry."
::= { tIPFilterParamsEntry 51 }
--
-- MAC filter table
--
tMacFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF TMacFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains a List of all mac filters configured on this system."
::= { tFilterObjects 3 }
tMacFilterEntry OBJECT-TYPE
SYNTAX TMacFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular MAC Filter. Entries are created/deleted
by user. Entries have a presumed StorageType of nonVolatile."
INDEX { tMacFilterId }
::= { tMacFilterTable 1 }
TMacFilterEntry ::= SEQUENCE
{
tMacFilterId TMACFilterID,
tMacFilterRowStatus RowStatus,
tMacFilterScope TItemScope,
tMacFilterDescription TItemDescription,
tMacFilterDefaultAction TFilterAction
}
tMacFilterId OBJECT-TYPE
SYNTAX TMACFilterID (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a mac filter as configures on this system."
::= { tMacFilterEntry 1 }
tMacFilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows entries to be created and deleted in the
tMacFilterTable."
::= { tMacFilterEntry 2 }
tMacFilterScope OBJECT-TYPE
SYNTAX TItemScope
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the scope of this filter definition. If defined
as exclusive(1), this filter can be instantiated only once as compared
to the multiple instances that the filter can have if defined as
template(2)."
DEFVAL { template }
::= { tMacFilterEntry 3 }
tMacFilterDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"User-provided description for this filter."
DEFVAL { ''H }
::= { tMacFilterEntry 4 }
tMacFilterDefaultAction OBJECT-TYPE
SYNTAX TFilterAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The action to take for packets that do not match any filter entries."
DEFVAL { drop }
::= { tMacFilterEntry 5 }
--
-- MAC Filter Entry parameters
--
tMacFilterParamsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TMacFilterParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of all MAC filter match entries for all MAC filters."
::= { tFilterObjects 4 }
tMacFilterParamsEntry OBJECT-TYPE
SYNTAX TMacFilterParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular MAC Filter entry.
Every MAC Filter can have zero or more MAC Filter match entries.
a filter entry with no match criteria set will match every
packet, and the entry action will be taken.
Entries are created/deleted by user.
There is no StorageType object, entries have a presumed
StorageType of nonVolatile.
"
INDEX { tMacFilterId, tMacFilterParamsIndex }
::= { tMacFilterParamsTable 1 }
TMacFilterParamsEntry ::= SEQUENCE
{
tMacFilterParamsIndex TEntryId,
tMacFilterParamsRowStatus RowStatus,
tMacFilterParamsLogId TFilterLogId,
tMacFilterParamsDescription TItemDescription,
tMacFilterParamsAction TFilterActionOrDefault,
tMacFilterParamsFrameType TFrameType,
tMacFilterParamsSrcMAC MacAddress,
tMacFilterParamsSrcMACMask MacAddress,
tMacFilterParamsDstMAC MacAddress,
tMacFilterParamsDstMACMask MacAddress,
tMacFilterParamsDot1pValue Dot1PPriority,
tMacFilterParamsDot1pMask Dot1PPriority,
tMacFilterParamsEtherType INTEGER,
tMacFilterParamsDsap ServiceAccessPoint,
tMacFilterParamsDsapMask ServiceAccessPoint,
tMacFilterParamsSsap ServiceAccessPoint,
tMacFilterParamsSsapMask ServiceAccessPoint,
tMacFilterParamsSnapPid INTEGER,
tMacFilterParamsSnapOui INTEGER,
tMacFilterParamsIngressHitCount Counter64,
tMacFilterParamsEgressHitCount Counter64,
tMacFilterParamsLogInstantiated TruthValue,
tMacFilterParamsFwdSvcId TmnxServId,
tMacFilterParamsFwdSapPortId TmnxPortID,
tMacFilterParamsFwdSapEncapVal TmnxEncapVal,
tMacFilterParamsFwdSdpBind SdpBindId,
tMacFilterParamsTimeRangeName TNamedItemOrEmpty,
tMacFilterParamsTimeRangeState TTimeRangeState,
tMacFilterParamsRedirectURL DisplayString,
tMacFilterParamsIngrHitByteCount Counter64,
tMacFilterParamsEgrHitByteCount Counter64
}
tMacFilterParamsIndex OBJECT-TYPE
SYNTAX TEntryId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the secondary index for the entry. Every mac filter can have
multiple entries, therefore every mac filter entry is identified by
the tMacFilterId and tMacFilterParamsIndex."
::= { tMacFilterParamsEntry 1 }
tMacFilterParamsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows entries to be created and deleted in the
tMacFilterParamsTable."
::= { tMacFilterParamsEntry 2 }
tMacFilterParamsLogId OBJECT-TYPE
SYNTAX TFilterLogId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the log to use for packets that match
this entry. The value zero indicates that logging is disabled."
DEFVAL { 0 }
::= { tMacFilterParamsEntry 3 }
tMacFilterParamsDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"User-provided description for this filter entry."
DEFVAL { ''H }
::= { tMacFilterParamsEntry 4 }
tMacFilterParamsAction OBJECT-TYPE
SYNTAX TFilterActionOrDefault
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The action to take for packets that match this filter entry. The value
default(3) specifies this entry to inherit the behavior defined as the
default for the filter."
DEFVAL { drop }
::= { tMacFilterParamsEntry 5 }
tMacFilterParamsFrameType OBJECT-TYPE
SYNTAX TFrameType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of mac frame for which we are defining this match criteria."
DEFVAL { e802dot3 }
::= { tMacFilterParamsEntry 6 }
tMacFilterParamsSrcMAC OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Source MAC to match for this policy MAC filter entry."
DEFVAL { '000000000000'H }
::= { tMacFilterParamsEntry 8 }
tMacFilterParamsSrcMACMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Source MAC mask value for this policy MAC filter entry.
The mask is ANDed with the MAC to match tMacFilterParamsSrcMAC.
A zero bit means ignore this bit, do not match. a one bit means
match this bit with tMacFilterParamsSrcMAC.
Use the value 00-00-00-00-00-00 to disable this filter criteria."
DEFVAL { '000000000000'H }
::= { tMacFilterParamsEntry 9 }
tMacFilterParamsDstMAC OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Destination MAC mask value for this policy MAC filter entry."
DEFVAL { '000000000000'H }
::= { tMacFilterParamsEntry 10 }
tMacFilterParamsDstMACMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Destination MAC mask value for this policy MAC filter entry.
The mask is ANDed with the MAC to match tMacFilterParamsDstMAC.
A zero bit means ignore this bit, do not match. a one bit means
match this bit with tMacFilterParamsDstMAC.
Use the value 00-00-00-00-00-00 to disable this filter criteria."
DEFVAL { '000000000000'H }
::= { tMacFilterParamsEntry 11 }
tMacFilterParamsDot1pValue OBJECT-TYPE
SYNTAX Dot1PPriority
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IEEE 802.1p priority value for this policy MAC filter entry.
Use -1 to disable matching this filter criteria."
DEFVAL { -1 }
::= { tMacFilterParamsEntry 12 }
tMacFilterParamsDot1pMask OBJECT-TYPE
SYNTAX Dot1PPriority
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IEEE 802.1p priority mask value for this policy MAC filter entry.
Use zero to disable matching, use 7 to match everything."
DEFVAL { 0 }
::= { tMacFilterParamsEntry 13 }
tMacFilterParamsEtherType OBJECT-TYPE
SYNTAX INTEGER (-1 | 0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Ethertype for this policy MAC filter entry. Use -1 to disable matching
by this criteria. This object has no significance if the object
tMacFilterParamsFrameType is not set to Ethernet_II."
DEFVAL { -1 }
::= { tMacFilterParamsEntry 14 }
tMacFilterParamsDsap OBJECT-TYPE
SYNTAX ServiceAccessPoint
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"MAC DSAP to match for this policy MAC filter entry. This object has no
significance if the object tMacFilterParamsFrameType is not set to
802dot2LLC."
DEFVAL { -1 }
::= { tMacFilterParamsEntry 15 }
tMacFilterParamsDsapMask OBJECT-TYPE
SYNTAX ServiceAccessPoint
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"MAC DSAP mask for this policy MAC filter entry. use 0 to disable
matching by this criteria. This object has no significance if the
object tMacFilterParamsFrameType is not set to 802dot2LLC."
DEFVAL { -1 }
::= { tMacFilterParamsEntry 16 }
tMacFilterParamsSsap OBJECT-TYPE
SYNTAX ServiceAccessPoint
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"MAC SSAP to match for this policy MAC filter entry. This object has no
significance if the object tMacFilterParamsFrameType is not set to
802dot2LLC."
DEFVAL { -1 }
::= { tMacFilterParamsEntry 17 }
tMacFilterParamsSsapMask OBJECT-TYPE
SYNTAX ServiceAccessPoint
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"MAC SSAP mask for this policy MAC filter entry. use 0 to disable
matching by this criteria. This object has no significance if the
object tMacFilterParamsFrameType is not set to 802dot2LLC."
DEFVAL { -1 }
::= { tMacFilterParamsEntry 18 }
tMacFilterParamsSnapPid OBJECT-TYPE
SYNTAX INTEGER (-1 | 0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"MAC SNAP PID to match for this policy MAC filter entry. use -1 to
disable matching by this criteria. This object has no significance if
object tMacFilterParamsFrameType is not set to 802dot2SNAP."
DEFVAL { -1 }
::= { tMacFilterParamsEntry 19 }
tMacFilterParamsSnapOui OBJECT-TYPE
SYNTAX INTEGER { off(1), zero(2), nonZero(3) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"MAC SNAP OUI to match. The values zero(2) and nonZero(3) specify what
to match. Matching can be disabled by the use of the value off(1).
This object has no significance if the object
tMacFilterParamsFrameType is not set to 802dot2SNAP."
DEFVAL { off }
::= { tMacFilterParamsEntry 20 }
tMacFilterParamsIngressHitCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of times an ingress packet
matched this entry."
::= { tMacFilterParamsEntry 21 }
tMacFilterParamsEgressHitCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of times an egress packet
matched this entry."
::= { tMacFilterParamsEntry 22 }
tMacFilterParamsLogInstantiated OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tMacFilterParamsLogInstantiated indicates if the filter log for
this filter entry has been instantiated or not."
::= { tMacFilterParamsEntry 23 }
tMacFilterParamsFwdSvcId OBJECT-TYPE
SYNTAX TmnxServId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tMacFilterParamsFwdSvcId indicates the service id of the
destination for this Mac filter entry. A value of 0 indicates that
there is currently no active SAP or SDP destination."
::= { tMacFilterParamsEntry 24 }
tMacFilterParamsFwdSapPortId OBJECT-TYPE
SYNTAX TmnxPortID
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tMacFilterParamsFwdSapPortId specifies the sap port identity of the
destination for this Mac filter entry. A value of 0 indicates that
there is currently no SAP destination defined.
A value different from 0 can only be specified if the
tMacFilterParamsFwdSvcId object also has a non-zero value,
and if the the value of the tMacFilterParamsAction object of this
entry is 'forward'. In addition a non-zero value can only be given if
the object tMacFilterParamsFwdSdpBind has a zero value."
DEFVAL { 0 }
::= { tMacFilterParamsEntry 25 }
tMacFilterParamsFwdSapEncapVal OBJECT-TYPE
SYNTAX TmnxEncapVal
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tMacFilterParamsFwdSapEncapVal specifies the sap port encap value
of the destination SAP for this Mac filter entry.
A value different from 0 can only be specified if the
tMacFilterParamsFwdSvcId object also has a non-zero value,
the tMacFilterParamsFwdSapPortId object has a non zero value,
and if the the value of the tMacFilterParamsAction object of this entry
is 'forward'.
In addition a non-zero value can only be given if the object
tMacFilterParamsFwdSdpBind has a zero value.
A value of 0 indicates that either
1) the sap encapsulation value is not specified when
tMacFilterParamsFwdSapPortId and tMacFilterParamsFwdSvcId
have valid values; or
2) that there is no SAP destination."
DEFVAL { 0 }
::= { tMacFilterParamsEntry 26 }
tMacFilterParamsFwdSdpBind OBJECT-TYPE
SYNTAX SdpBindId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tMacFilterParamsFwdSdpBind specifies the sdp bibd identity of the
destination for this Mac filter entry. A value of 0 indicates that
there is currently no SDP binding defined.
A value different from 0 can only be specified if the
tMacFilterParamsFwdSvcId object also has a non-zero value,
and if the the value of the tMacFilterParamsAction object of this
entry is 'forward'. In addition a non-zero value can only be given if
the objects tMacFilterParamsFwdSapPortId and
tMacFilterParamsFwdSapEncapVal have a zero value."
DEFVAL { '0000000000000000'h }
::= { tMacFilterParamsEntry 27 }
tMacFilterParamsTimeRangeName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tMacFilterParamsTimeRangeName specifies the tmnxTimeRangeEntry to be
associated with this filter entry.
A value for this object can only be specified during row creation, and
cannot be altered lateron.
Also, a value is accepted only if the tmnxTimeRangeEntry is defined in
the TIMETRA-SCHEDULER-MIB::tmnxTimeRangeTable.tTimeRangeName."
DEFVAL { ''H }
::= { tMacFilterParamsEntry 28 }
tMacFilterParamsTimeRangeState OBJECT-TYPE
SYNTAX TTimeRangeState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tMacFilterParamsTimeRangeState indicates whether or not the entry
is currently in effect.
- timeRangeNotApplic:
no time range is applicable for this entry.
- timeRangeNotActive:
A time range is defined in tMacFilterParamsTimeRangeName, but is not
active at this moment. Consequently the filter entry is not
installed.
- timeRangeActive.
A time range is defined in tMacFilterParamsTimeRangeName, and is
activated successfully.
- timeRangeActiveDownloadFailed:
A time range is defined in tMacFilterParamsTimeRangeName, and is
activated, but the corresponding filter entry could not be
installed due to resource problems."
::= { tMacFilterParamsEntry 29 }
tMacFilterParamsRedirectURL OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tMacFilterParamsRedirectURL specifies the URL
to redirect to, when the value of tMacFilterParamsAction is
'httpRedirect'."
::= { tMacFilterParamsEntry 30 }
tMacFilterParamsIngrHitByteCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tMacFilterParamsIngrHitByteCount indicates the number
of bytes of all ingress packets that matched this entry."
::= { tMacFilterParamsEntry 31 }
tMacFilterParamsEgrHitByteCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tMacFilterParamsEgrHitByteCount indicates the number
of bytes of all egress packets that matched this entry."
::= { tMacFilterParamsEntry 32 }
--
-- Filter Log table
--
tFilterLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF TFilterLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of all filter logs."
::= { tFilterObjects 5 }
tFilterLogEntry OBJECT-TYPE
SYNTAX TFilterLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular Filter Log entry."
INDEX { tFilterLogId }
::= { tFilterLogTable 1 }
TFilterLogEntry ::= SEQUENCE
{
tFilterLogId TFilterLogId,
tFilterLogRowStatus RowStatus,
tFilterLogDestination TFilterLogDestination,
tFilterLogDescription TItemDescription,
tFilterLogMaxNumEntries Unsigned32,
tFilterLogSysLogId Unsigned32,
tFilterLogFileId Unsigned32,
tFilterLogStopOnFull TruthValue,
tFilterLogEnabled TruthValue,
tFilterLogSummaryEnabled TruthValue,
tFilterLogSummaryCrit1 TFilterLogSummaryCriterium
}
tFilterLogId OBJECT-TYPE
SYNTAX TFilterLogId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the index for the entry. An entry cannot be created with an
id of 0."
::= { tFilterLogEntry 1 }
tFilterLogRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows entries to be created and deleted in the
tFilterLogTable."
::= { tFilterLogEntry 2 }
tFilterLogDestination OBJECT-TYPE
SYNTAX TFilterLogDestination
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the destination of the log."
DEFVAL { memory }
::= { tFilterLogEntry 3 }
tFilterLogDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"User-provided description for this filter log entry."
DEFVAL { ''H }
::= { tFilterLogEntry 4 }
tFilterLogMaxNumEntries OBJECT-TYPE
SYNTAX Unsigned32 (0..50000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the maximum number of entries
that the log (memory or file) can store.
If tFilterLogDestination is not 'memory' then
tFilterLogMaxNumEntries maintains a value of '0'"
DEFVAL { 1000 }
::= { tFilterLogEntry 5 }
tFilterLogSysLogId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
""
::= { tFilterLogEntry 6 }
tFilterLogFileId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
""
::= { tFilterLogEntry 7 }
tFilterLogStopOnFull OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
""
DEFVAL { false }
::= { tFilterLogEntry 8 }
tFilterLogEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
""
DEFVAL { true }
::= { tFilterLogEntry 9 }
tFilterLogSummaryEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterLogSummaryEnabled specifies whether
or not summarization of filter log entries is performed.
Summarization is only allowed in case tFilterLogDestination is set
to syslog."
DEFVAL { false }
::= { tFilterLogEntry 10 }
tFilterLogSummaryCrit1 OBJECT-TYPE
SYNTAX TFilterLogSummaryCriterium
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterLogSummaryCrit1 specifies how
filter log entries will be summarized.
This field is only meaningful if the object
tFilterLogSummaryEnabled is set to true."
DEFVAL { srcAddr }
::= { tFilterLogEntry 11 }
--
-- Filter Log Scalars
--
tFilterLogScalars OBJECT IDENTIFIER ::= { tFilterObjects 6 }
tFilterLogMaxInstances OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterLogMaxInstances maintains the maximum allowed instances
of filter logs allowed on the system"
::= { tFilterLogScalars 1 }
tFilterLogInstances OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterLogInstances maintains the instances of filter logs
presently existing on the system"
::= { tFilterLogScalars 2 }
tFilterLogBindings OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterLogBindings maintains the count of the configured
filter log bindings presently existing on the system. The
bindings get instantiated when the filter is instantiated"
::= { tFilterLogScalars 3 }
--
-- Filter Redirect Policies
--
tFilterRedirectPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF TFilterRedirectPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains a List of all redirect policies configured on this system."
::= { tFilterObjects 10 }
tFilterRedirectPolicyEntry OBJECT-TYPE
SYNTAX TFilterRedirectPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular redirect policy. Entries are
created/deleted by user."
INDEX { tFilterRedirectPolicy }
::= { tFilterRedirectPolicyTable 1 }
TFilterRedirectPolicyEntry ::= SEQUENCE
{
tFilterRedirectPolicy TNamedItem,
tFilterRPRowStatus RowStatus,
tFilterRPDescription TItemDescription,
tFilterRPAdminState TmnxAdminState,
tFilterRPActiveDest IpAddress
}
tFilterRedirectPolicy OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"tFilterRedirectPolicy uniquely identifies each redirect policy
configured on this system."
::= { tFilterRedirectPolicyEntry 1 }
tFilterRPRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRPRowStatus allows entries to be created and deleted in the
tFilterRedirectPolicyTable."
::= { tFilterRedirectPolicyEntry 2 }
tFilterRPDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"User-provided description for this redirect policy is maintained in
the object tFilterRPDescription."
DEFVAL { ''H }
::= { tFilterRedirectPolicyEntry 3 }
tFilterRPAdminState OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRPAdminState holds the admin state of the policy. If the
admin state is 'outOfService', the tests will not be conducted."
DEFVAL { inService }
::= { tFilterRedirectPolicyEntry 4 }
tFilterRPActiveDest OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterRPActiveDest indicates the IP address of the active
destination. A value of 0 indicates that there is currently
no active destination."
::= { tFilterRedirectPolicyEntry 5 }
--
-- Filter Redirect Destinations
--
tFilterRedirectDestTable OBJECT-TYPE
SYNTAX SEQUENCE OF TFilterRedirectDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains a List of all redirect destinations configured on this
system."
::= { tFilterObjects 11 }
tFilterRedirectDestEntry OBJECT-TYPE
SYNTAX TFilterRedirectDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular Redirect destination. Entries are
created/deleted by user."
INDEX { tFilterRedirectPolicy, tFilterRedirectDest }
::= { tFilterRedirectDestTable 1 }
TFilterRedirectDestEntry ::= SEQUENCE
{
tFilterRedirectDest IpAddress,
tFilterRDRowStatus RowStatus,
tFilterRDDescription TItemDescription,
tFilterRDAdminPriority Unsigned32,
tFilterRDOperPriority Unsigned32,
tFilterRDAdminState TmnxAdminState,
tFilterRDOperState TmnxOperState
}
tFilterRedirectDest OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"tFilterRedirectDest holds the IP address of the destination
entry."
::= { tFilterRedirectDestEntry 1 }
tFilterRDRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRDRowStatus allows entries to be created and deleted
in the tFilterRedirectDestTable."
::= { tFilterRedirectDestEntry 2 }
tFilterRDDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"User-provided description for this destination is maintained in
the object tFilterRDDescription."
DEFVAL { ''H }
::= { tFilterRedirectDestEntry 3 }
tFilterRDAdminPriority OBJECT-TYPE
SYNTAX Unsigned32 (1..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRDAdminPriority holds the configured base priority for
the destination."
DEFVAL { 100 }
::= { tFilterRedirectDestEntry 4 }
tFilterRDOperPriority OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterRDAdminPriority maintains the operational value of the
priority for this destination. The highest operational priority
across multiple destinations is used as the preferred destination.
A value of '0' is maintained if the destination if tFilterRDOperState
is 'outOfService'."
::= { tFilterRedirectDestEntry 5 }
tFilterRDAdminState OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRDAdminState maintains the configured state of the destination.
If the admin state is 'outOfService', the tests for this destination
will not be conducted."
DEFVAL { inService }
::= { tFilterRedirectDestEntry 6 }
tFilterRDOperState OBJECT-TYPE
SYNTAX TmnxOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tFilterRDOperState indicates the operational state of
the destination."
::= { tFilterRedirectDestEntry 7 }
--
-- Filter Redirect SNMP Test Table
--
tFilterRedirectSNMPTestTable OBJECT-TYPE
SYNTAX SEQUENCE OF TFilterRedirectSNMPTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains a List of all redirect SNMP tests configured on this
system."
::= { tFilterObjects 12 }
tFilterRedirectSNMPTestEntry OBJECT-TYPE
SYNTAX TFilterRedirectSNMPTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a specific SNMP test configured for a destination.
Entries are created/deleted by user."
INDEX {
tFilterRedirectPolicy,
tFilterRedirectDest,
tFilterRedirectSNMPTest
}
::= { tFilterRedirectSNMPTestTable 1 }
TFilterRedirectSNMPTestEntry ::= SEQUENCE
{
tFilterRedirectSNMPTest TNamedItem,
tFilterRSTRowStatus RowStatus,
tFilterRSTOID OBJECT IDENTIFIER,
tFilterRSTCommunity DisplayString,
tFilterRSTSNMPVersion INTEGER,
tFilterRSTInterval Unsigned32,
tFilterRSTTimeout Unsigned32,
tFilterRSTDropCount Unsigned32,
tFilterRSTHoldDown Unsigned32,
tFilterRSTHoldDownRemain Unsigned32,
tFilterRSTLastActionTime TimeStamp,
tFilterRSTLastOID OBJECT IDENTIFIER,
tFilterRSTLastType INTEGER,
tFilterRSTLastCounter32Val Counter32,
tFilterRSTLastUnsigned32Val Unsigned32,
tFilterRSTLastTimeTicksVal TimeTicks,
tFilterRSTLastInt32Val Integer32,
tFilterRSTLastOctetStringVal OCTET STRING,
tFilterRSTLastIpAddressVal IpAddress,
tFilterRSTLastOidVal OBJECT IDENTIFIER,
tFilterRSTLastCounter64Val Counter64,
tFilterRSTLastOpaqueVal Opaque,
tFilterRSTLastAction INTEGER,
tFilterRSTLastPrioChange Integer32,
tFilterRSTNextRespIndex Integer32
}
tFilterRedirectSNMPTest OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"tFilterRedirectSNMPTest specifies the name of the SNMP test."
::= { tFilterRedirectSNMPTestEntry 1 }
tFilterRSTRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRSTRowStatus allows tests to be created and deleted in the
tFilterRedirectSNMPTestTable."
::= { tFilterRedirectSNMPTestEntry 2 }
tFilterRSTOID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRSTOID stores the OID of the object to be fetched from the
destination."
::= { tFilterRedirectSNMPTestEntry 3 }
tFilterRSTCommunity OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRSTCommunity is the SNMPv1 or SNMPv2c Community
String or the SNMPv3 Context Name used to conduct this SNMP test as
described in RFC2571 and RFC2737.
When the value of tFilterRSTSNMPVersion is 'snmpv1' or 'snmpv2c'
this object represents a community string. When the value of
tFilterRSTSNMPVersion is 'snmpv3' this object represents a SNMPv3
context name."
DEFVAL { ''H }
::= { tFilterRedirectSNMPTestEntry 4 }
tFilterRSTSNMPVersion OBJECT-TYPE
SYNTAX INTEGER {
snmpv1 (1),
snmpv2c (2),
snmpv3 (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRSTSNMPVersion specifies the SNMP PDU format to be used
while conducting the test."
DEFVAL { snmpv2c }
::= { tFilterRedirectSNMPTestEntry 5 }
tFilterRSTInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRSTInterval specifies the amount of time
in seconds between consecutive requests sent to the far end
host."
DEFVAL { 1 }
::= { tFilterRedirectSNMPTestEntry 6 }
tFilterRSTTimeout OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRSTTimeout specifies the amount of time
in seconds that is allowed for receiving a response from the
far end host. If a reply is not received within this time the
far end host is considered unresponsive."
DEFVAL { 1 }
::= { tFilterRedirectSNMPTestEntry 7 }
tFilterRSTDropCount OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRSTDropCount specifies the number of
consecutive requests that must fail for the destination to
declared unreachable."
DEFVAL { 3 }
::= { tFilterRedirectSNMPTestEntry 8 }
tFilterRSTHoldDown OBJECT-TYPE
SYNTAX Unsigned32 (0..86400)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRSTHoldDown specifies the amount of time
in seconds that the system should be held down if any of the test
has marked it unreachable."
DEFVAL { 0 }
::= { tFilterRedirectSNMPTestEntry 9 }
tFilterRSTHoldDownRemain OBJECT-TYPE
SYNTAX Unsigned32 (0..86400)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tFilterRSTHoldDownRemain indicates the amount of time
in seconds that the system will remain in held down state before
being used again."
::= { tFilterRedirectSNMPTestEntry 10 }
tFilterRSTLastActionTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterRSTLastActionTime maintains the time stamp when this test
received a response for a probe sent out."
::= { tFilterRedirectSNMPTestEntry 11 }
tFilterRSTLastOID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object tFilterRSTLastOID holds the OID received in the
response."
::= { tFilterRedirectSNMPTestEntry 12 }
tFilterRSTLastType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
counter32(1),
unsigned32(2),
timeTicks(3),
integer32(4),
ipAddress(5),
octetString(6),
objectId(7),
counter64(8),
opaque(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterRSTLastType maintains the type of the value received.
A value of none(0) indicated that no value has been received"
::= { tFilterRedirectSNMPTestEntry 13 }
tFilterRSTLastCounter32Val OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTLastType is 'counter32'."
::= { tFilterRedirectSNMPTestEntry 14 }
tFilterRSTLastUnsigned32Val OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTLastType is 'unsigned32'."
::= { tFilterRedirectSNMPTestEntry 15 }
tFilterRSTLastTimeTicksVal OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTLastType is 'timeTicks'."
::= { tFilterRedirectSNMPTestEntry 16 }
tFilterRSTLastInt32Val OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTLastType is 'integer32'."
::= { tFilterRedirectSNMPTestEntry 17 }
tFilterRSTLastOctetStringVal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTLastType is 'octetString'."
::= { tFilterRedirectSNMPTestEntry 18 }
tFilterRSTLastIpAddressVal OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTLastType is 'ipAddress'. Although
this seems to be unfriendly for IPv6, we have to
recognize that there are a number of older MIBs that do
contain an IPv4 format address, known as IpAddress.
IPv6 addresses are represented using TAddress or InetAddress,
and so the underlying datatype is OCTET STRING, and their
value would be stored in the tFilterRSTLastOctetStringVal
column."
::= { tFilterRedirectSNMPTestEntry 19 }
tFilterRSTLastOidVal OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTLastType is 'objectId'."
::= { tFilterRedirectSNMPTestEntry 20 }
tFilterRSTLastCounter64Val OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTLastType is 'counter64'."
::= { tFilterRedirectSNMPTestEntry 21 }
tFilterRSTLastOpaqueVal OBJECT-TYPE
SYNTAX Opaque
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTLastType is 'opaque'."
::= { tFilterRedirectSNMPTestEntry 22 }
tFilterRSTLastAction OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2),
none (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterRSTLastAction maintains impact that the last test probe
made on the operational status of the destination as maintained
in tFilterRDOperState.
If the last action was 'disable', the destination may not be
used for tFilterRSTHoldDown seconds."
::= { tFilterRedirectSNMPTestEntry 23 }
tFilterRSTLastPrioChange OBJECT-TYPE
SYNTAX Integer32 (-255..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the last action on the operational state of the destination
i.e. tFilterRSTLastAction is 'enable', tFilterRSTLastPrioChange
maintains the impact that the last test probe made on the
operational priority of the destination.
In other cases, this object has no significance and hence should
be holding the value '0'."
::= { tFilterRedirectSNMPTestEntry 24 }
tFilterRSTNextRespIndex OBJECT-TYPE
SYNTAX Integer32 (-1|1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tFilterRSTNextRespIndex indicates the next response index
to be used while creating a row in the tFilterRedirectSNMPRespTable.
The value of '-1' means that the maximum number of return values
for this OID are already configured."
::= { tFilterRedirectSNMPTestEntry 25 }
--
-- Filter Redirect SNMP Response Table
--
tFilterRedirectSNMPRespTable OBJECT-TYPE
SYNTAX SEQUENCE OF TFilterRedirectSNMPRespEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row in this table holds the effect of the test on the
destination for a specific return value."
::= { tFilterObjects 13 }
tFilterRedirectSNMPRespEntry OBJECT-TYPE
SYNTAX TFilterRedirectSNMPRespEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about action to be taken for a specific destination
when a specific response is received."
INDEX {
tFilterRedirectPolicy,
tFilterRedirectDest,
tFilterRedirectSNMPTest,
tFilterRSTRespId
}
::= { tFilterRedirectSNMPRespTable 1 }
TFilterRedirectSNMPRespEntry ::= SEQUENCE
{
tFilterRSTRespId Integer32,
tFilterRSTRespRowStatus RowStatus,
tFilterRSTRespAction INTEGER,
tFilterRSTRespPrioChange Unsigned32,
tFilterRSTRespOID OBJECT IDENTIFIER,
tFilterRSTRespType INTEGER,
tFilterRSTCounter32Val Counter32,
tFilterRSTUnsigned32Val Unsigned32,
tFilterRSTTimeTicksVal TimeTicks,
tFilterRSTInt32Val Integer32,
tFilterRSTOctetStringVal OCTET STRING,
tFilterRSTIpAddressVal IpAddress,
tFilterRSTOidVal OBJECT IDENTIFIER,
tFilterRSTCounter64Val Counter64,
tFilterRSTOpaqueVal Opaque
}
tFilterRSTRespId OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"tFilterRSTRespId holds the response value received from
the destination."
::= { tFilterRedirectSNMPRespEntry 1 }
tFilterRSTRespRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows response strings to be specified for a specific
test and the change it will cause to the priority of the destination."
::= { tFilterRedirectSNMPRespEntry 2 }
tFilterRSTRespAction OBJECT-TYPE
SYNTAX INTEGER {
increase (1),
decrease (2),
disable (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRSTRespAction specifies the type of change that should
be made to the destination priority tFilterRDOperPriority, if
the return value is same as tFilterRSTRespId."
DEFVAL { disable }
::= { tFilterRedirectSNMPRespEntry 3 }
tFilterRSTRespPrioChange OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRSTRespPrioChange specifies the amount of change to
be made to the priority of the destination if the
tFilterRSTRespAction is either 'increase' or 'decrease'."
DEFVAL { 0 }
::= { tFilterRedirectSNMPRespEntry 4 }
tFilterRSTRespOID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object tFilterRSTRespOID holds the OID to be received in the
response."
::= { tFilterRedirectSNMPRespEntry 5 }
tFilterRSTRespType OBJECT-TYPE
SYNTAX INTEGER {
counter32(1),
unsigned32(2),
timeTicks(3),
integer32(4),
ipAddress(5),
octetString(6),
objectId(7),
counter64(8),
opaque(9)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRSTRespType maintains the type of the value to be received."
::= { tFilterRedirectSNMPRespEntry 6 }
tFilterRSTCounter32Val OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTRespType is 'counter32'."
::= { tFilterRedirectSNMPRespEntry 7 }
tFilterRSTUnsigned32Val OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value tFilterRSTRespType is 'unsigned32'."
::= { tFilterRedirectSNMPRespEntry 8 }
tFilterRSTTimeTicksVal OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value tFilterRSTRespType is 'timeTicks'."
::= { tFilterRedirectSNMPRespEntry 9 }
tFilterRSTInt32Val OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value tFilterRSTRespType is 'integer32'."
::= { tFilterRedirectSNMPRespEntry 10 }
tFilterRSTOctetStringVal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value tFilterRSTRespType is 'octetString'."
::= { tFilterRedirectSNMPRespEntry 11 }
tFilterRSTIpAddressVal OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value tFilterRSTRespType is 'ipAddress'. Although
this seems to be unfriendly for IPv6, we have to
recognize that there are a number of older MIBs that do
contain an IPv4 format address, known as IpAddress.
IPv6 addresses are represented using TAddress or InetAddress,
and so the underlying datatype is OCTET STRING, and their
value would be stored in the tFilterRSTOctetStringVal
column."
::= { tFilterRedirectSNMPRespEntry 12 }
tFilterRSTOidVal OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value tFilterRSTRespType is 'objectId'."
::= { tFilterRedirectSNMPRespEntry 13 }
tFilterRSTCounter64Val OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value tFilterRSTRespType is 'counter64'."
::= { tFilterRedirectSNMPRespEntry 14 }
tFilterRSTOpaqueVal OBJECT-TYPE
SYNTAX Opaque
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value tFilterRSTRespType is 'opaque'."
::= { tFilterRedirectSNMPRespEntry 15 }
--
-- Filter Redirect URL Test Table
--
tFilterRedirectURLTestTable OBJECT-TYPE
SYNTAX SEQUENCE OF TFilterRedirectURLTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains a List of all redirect snmp tests configured on this
system."
::= { tFilterObjects 14 }
tFilterRedirectURLTestEntry OBJECT-TYPE
SYNTAX TFilterRedirectURLTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a specific URL test configured for a destination.
Entries are created/deleted by user. Entries have a presumed
StorageType of nonVolatile."
INDEX {
tFilterRedirectPolicy,
tFilterRedirectDest,
tFilterRedirectURLTest
}
::= { tFilterRedirectURLTestTable 1 }
TFilterRedirectURLTestEntry ::= SEQUENCE
{
tFilterRedirectURLTest TNamedItem,
tFilterRUTRowStatus RowStatus,
tFilterRUTURL DisplayString,
tFilterRUTHTTPVersion DisplayString,
tFilterRUTInterval Unsigned32,
tFilterRUTTimeout Unsigned32,
tFilterRUTDropCount Unsigned32,
tFilterRUTHoldDown Unsigned32,
tFilterRUTHoldDownRemain Unsigned32,
tFilterRUTLastActionTime TimeStamp,
tFilterRUTLastRetCode Unsigned32,
tFilterRUTLastAction INTEGER,
tFilterRUTLastPrioChange Integer32
}
tFilterRedirectURLTest OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"tFilterRedirectURLTest holds the name of the URL test."
::= { tFilterRedirectURLTestEntry 1 }
tFilterRUTRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRUTRowStatus allows tests to be created and deleted in the
tFilterRedirectURLTestTable."
::= { tFilterRedirectURLTestEntry 2 }
tFilterRUTURL OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object holds the URL to be probed."
DEFVAL { ''H }
::= { tFilterRedirectURLTestEntry 3 }
tFilterRUTHTTPVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The HTTP Version to be used while performing the URL test.
The system by default uses HTTP Version 1.1 until explicitly
specified."
DEFVAL { ''H }
::= { tFilterRedirectURLTestEntry 4 }
tFilterRUTInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRUTInterval specifies the amount of time
in seconds between consecutive requests sent to the far end
host."
DEFVAL { 1 }
::= { tFilterRedirectURLTestEntry 5 }
tFilterRUTTimeout OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRUTTimeout specifies the amount of time
in seconds that is allowed for receiving a response from the
far end host. If a reply is not received within this time the
far end host is considered unresponsive."
DEFVAL { 1 }
::= { tFilterRedirectURLTestEntry 6 }
tFilterRUTDropCount OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRUTDropCount specifies the number of
consecutive requests that must fail for the destination to
declared unreachable."
DEFVAL { 3 }
::= { tFilterRedirectURLTestEntry 7 }
tFilterRUTHoldDown OBJECT-TYPE
SYNTAX Unsigned32 (0..86400)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRUTHoldDown specifies the amount of time
in seconds that the system should be held down if any of the test
has marked it unreachable."
DEFVAL { 0 }
::= { tFilterRedirectURLTestEntry 8 }
tFilterRUTHoldDownRemain OBJECT-TYPE
SYNTAX Unsigned32 (0..86400)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tFilterRUTHoldDownRemain indicates the amount of time
in seconds that the system will remain in held down state before
being used again."
::= { tFilterRedirectURLTestEntry 9 }
tFilterRUTLastActionTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterRUTLastActionTime maintains the time stamp when this test
received a response for a probe sent out."
::= { tFilterRedirectURLTestEntry 10 }
tFilterRUTLastRetCode OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterRUTLastRetCode holds the return code received in the last
response."
::= { tFilterRedirectURLTestEntry 11 }
tFilterRUTLastAction OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2),
none (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterRUTLastAction maintains impact that the last test probe
made on the operational status of the destination as maintained
in tFilterRDOperState.
If the last action was 'disable', the destination may not be
used for tFilterRUTHoldDown seconds."
::= { tFilterRedirectURLTestEntry 12 }
tFilterRUTLastPrioChange OBJECT-TYPE
SYNTAX Integer32 (-255..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the last action on the operational state of the destination
i.e. tFilterRUTLastAction is 'enable', tFilterRUTLastPrioChange
maintains the impact that the last test probe made on the
operational priority of the destination.
In other cases, this object has no significance and hence should
be holding the value '0'."
::= { tFilterRedirectURLTestEntry 13 }
--
-- Filter Redirect URL Response Table
--
tFilterRedirectURLRespTable OBJECT-TYPE
SYNTAX SEQUENCE OF TFilterRedirectURLRespEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row in this table holds the effect of the test on
the destination for a range of return values."
::= { tFilterObjects 15 }
tFilterRedirectURLRespEntry OBJECT-TYPE
SYNTAX TFilterRedirectURLRespEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about action to be taken for a specific destination
when a return value within the range specified between
tFilterRedirectURLLowRespCode and tFilterRedirectURLHighRespCode
is received."
INDEX {
tFilterRedirectPolicy,
tFilterRedirectDest,
tFilterRedirectURLTest,
tFilterRedirectURLLowRespCode,
tFilterRedirectURLHighRespCode
}
::= { tFilterRedirectURLRespTable 1 }
TFilterRedirectURLRespEntry ::= SEQUENCE
{
tFilterRedirectURLLowRespCode Unsigned32,
tFilterRedirectURLHighRespCode Unsigned32,
tFilterRUTRespRowStatus RowStatus,
tFilterRUTRespAction INTEGER,
tFilterRUTRespPrioChange Unsigned32
}
tFilterRedirectURLLowRespCode OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"tFilterRedirectURLLowRespCode specifies the lower return
code of the range specified by this entry."
::= { tFilterRedirectURLRespEntry 1 }
tFilterRedirectURLHighRespCode OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"tFilterRedirectURLHighRespCode specifies the higher return
code of the range specified by this entry."
::= { tFilterRedirectURLRespEntry 2 }
tFilterRUTRespRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRUTRespRowStatus allows the mapping of a range of
return codes returned from a specific test to the change it
will cause to the priority of the destination."
::= { tFilterRedirectURLRespEntry 3 }
tFilterRUTRespAction OBJECT-TYPE
SYNTAX INTEGER {
increase (1),
decrease (2),
disable (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the tFilterRUTRespAction is either 'increase' or 'decrease',
tFilterRUTRespPrioChange specifies the offset to applied to the
destination base priority tFilterRDAdminPriority to compute the
tFilterRDOperPriority as a result of this test.
If the tFilterRUTRespAction is set to 'disable', on the reception
of the specified response, the destination will be deemed
unusable and the tFilterRDOperPriority will be reset to '0'."
DEFVAL { disable }
::= { tFilterRedirectURLRespEntry 4 }
tFilterRUTRespPrioChange OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tFilterRUTRespPrioChange specifies the amount of change
to be made to the priority of the destination if the
tFilterRUTRespAction is either 'increase' or 'decrease'."
DEFVAL { 0 }
::= { tFilterRedirectURLRespEntry 5 }
--
-- Filter Redirect Ping Test Table
--
tFilterRedirectPingTestTable OBJECT-TYPE
SYNTAX SEQUENCE OF TFilterRedirectPingTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains a List of all redirect Ping tests configured on this
system."
::= { tFilterObjects 16 }
tFilterRedirectPingTestEntry OBJECT-TYPE
SYNTAX TFilterRedirectPingTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a specific Ping test configured for a destination.
Entries are created/deleted by user. Entries have a presumed
StorageType of nonVolatile."
INDEX {
tFilterRedirectPolicy,
tFilterRedirectDest
}
::= { tFilterRedirectPingTestTable 1 }
TFilterRedirectPingTestEntry ::= SEQUENCE
{
tFilterRPTRowStatus RowStatus,
tFilterRPTInterval Unsigned32,
tFilterRPTTimeout Unsigned32,
tFilterRPTDropCount Unsigned32,
tFilterRPTHoldDown Unsigned32,
tFilterRPTHoldDownRemain Unsigned32,
tFilterRPTLastActionTime TimeStamp,
tFilterRPTLastAction INTEGER
}
tFilterRPTRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows tests to be created and deleted in the
tFilterRedirectPingTestTable."
::= { tFilterRedirectPingTestEntry 1 }
tFilterRPTInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRPTInterval specifies the amount of time
in seconds between consecutive requests sent to the far end
host."
DEFVAL { 1 }
::= { tFilterRedirectPingTestEntry 2 }
tFilterRPTTimeout OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRPTTimeout specifies the amount of time
in seconds that is allowed for receiving a response from the
far end host. If a reply is not received within this time the
far end host is considered unresponsive."
DEFVAL { 1 }
::= { tFilterRedirectPingTestEntry 3 }
tFilterRPTDropCount OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRPTDropCount specifies the number of
consecutive requests that must fail for the destination to
declared unreachable."
DEFVAL { 3 }
::= { tFilterRedirectPingTestEntry 4 }
tFilterRPTHoldDown OBJECT-TYPE
SYNTAX Unsigned32 (0..86400)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tFilterRPTHoldDown specifies the amount of time
in seconds that the system should be held down if any of the test
has marked it unreachable."
DEFVAL { 0 }
::= { tFilterRedirectPingTestEntry 5 }
tFilterRPTHoldDownRemain OBJECT-TYPE
SYNTAX Unsigned32 (0..86400)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tFilterRPTHoldDownRemain indicates the amount of time
in seconds that the system will remain in held down state before
being used again."
::= { tFilterRedirectPingTestEntry 6 }
tFilterRPTLastActionTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterRPTLastActionTime maintains the time stamp when this test
received a response for a probe sent out."
::= { tFilterRedirectPingTestEntry 7 }
tFilterRPTLastAction OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2),
none (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tFilterRPTLastAction maintains impact that the last test probe
made on the operational status of the destination as maintained
in tFilterRDOperState.
If the last action was 'disable', the destination may not be
used for tFilterRPTHoldDown seconds."
::= { tFilterRedirectPingTestEntry 8 }
--
-- Auto IP Filter Entries
--
tAutoIPFilterEntryTable OBJECT-TYPE
SYNTAX SEQUENCE OF TAutoIPFilterEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Defines the Alcatel 7x50 SR series automatic IP filters
for providing, via SNMP, the capability of gathering
information regarding the same.
tAutoIPFilterEntryTable holds a list of all automatic
filter entries being used for filtering.
This table is obsoleted in release 3.0."
::= { tFilterObjects 17 }
tAutoIPFilterEntry OBJECT-TYPE
SYNTAX TAutoIPFilterEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Defines an entry in the tAutoIPFilterEntryTable.
Entries are created and deleted in this table by the
system.
Each entry provides information about a single active
automatic filter entry.
This entry is obsoleted in release 3.0."
INDEX { tAutoIPFilterId, tAutoIPFilterEntrySourceIpAddr }
::= { tAutoIPFilterEntryTable 1 }
TAutoIPFilterEntry ::= SEQUENCE
{
tAutoIPFilterId TFilterID,
tAutoIPFilterEntrySourceIpAddr IpAddress,
tAutoIPFilterEntrySourceIpMask IpAddressPrefixLength
}
tAutoIPFilterId OBJECT-TYPE
SYNTAX TFilterID (1..65535)
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"tAutoIPFilterId serves as a primary index and uniquely
identifies an application point such as a routed
interface or a SAP.
This object is obsoleted in release 3.0."
::= { tAutoIPFilterEntry 1 }
tAutoIPFilterEntrySourceIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"tAutoIPFilterEntrySourceIpAddr specifies the source
ip-address and also serves as the secondary index to
this table.
This object is obsoleted in release 3.0."
::= { tAutoIPFilterEntry 2 }
tAutoIPFilterEntrySourceIpMask OBJECT-TYPE
SYNTAX IpAddressPrefixLength
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The value of tAutoIPFilterEntrySourceIpMask indicates the number
of bits to be matched in the source ip-address.
This object is obsoleted in release 3.0."
::= { tAutoIPFilterEntry 3 }
--
-- Filter Domain Time Stamp
--
tFilterDomainLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"timestamp of last change to tFilterObjects."
::= { tFilterTimeStampObjects 1 }
--
-- IPv6 Filter Table
--
tIPv6FilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF TIPv6FilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains a List of all IPv6 filters configured on this system."
::= { tFilterObjects 18 }
tIPv6FilterEntry OBJECT-TYPE
SYNTAX TIPv6FilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular IPv6 Filter entry. Entries are
created/deleted by user. Entries have a presumed StorageType of
nonVolatile."
INDEX { tIPv6FilterId }
::= { tIPv6FilterTable 1 }
TIPv6FilterEntry ::= SEQUENCE
{
tIPv6FilterId TIPFilterID,
tIPv6FilterRowStatus RowStatus,
tIPv6FilterScope TItemScope,
tIPv6FilterDescription TItemDescription,
tIPv6FilterDefaultAction TFilterAction
}
tIPv6FilterId OBJECT-TYPE
SYNTAX TIPFilterID (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object tIPv6FilterId uniquely identifies a
IPv6 filter on this system."
::= { tIPv6FilterEntry 1 }
tIPv6FilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the object tIPv6FilterRowStatus specifies
the status of the IPv6 filter. The object allows
entries to be created and deleted in the tIPv6FilterTable."
::= { tIPv6FilterEntry 2 }
tIPv6FilterScope OBJECT-TYPE
SYNTAX TItemScope
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the object tIPv6FilterScope specifies the
scope of this filter definition. If defined as exclusive(1),
this filter can be instantiated only once as compared
to the multiple instances that the filter can have if defined as
template(2)."
DEFVAL { template }
::= { tIPv6FilterEntry 3 }
tIPv6FilterDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the object tIPv6FilterDescription specifies
a user-provided description for this filter."
DEFVAL { ''H }
::= { tIPv6FilterEntry 4 }
tIPv6FilterDefaultAction OBJECT-TYPE
SYNTAX TFilterAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the object tIPv6FilterDefaultAction specifies
the action to be taken for packets that do not match any
of the filter entries."
DEFVAL { drop }
::= { tIPv6FilterEntry 5 }
--
-- IPv6 Filter Entry parameters
--
tIPv6FilterParamsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TIPv6FilterParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of all IPv6 filter match entries for all IPv6 filters."
::= { tFilterObjects 19 }
tIPv6FilterParamsEntry OBJECT-TYPE
SYNTAX TIPv6FilterParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular IPv6 Filter entry.
Every IPv6 Filter can have zero or more IPv6 Filter match entries.
a filter entry with no match criteria set will match every
packet, and the entry action will be taken.
Entries are created/deleted by user.
There is no StorageType object, entries have a presumed
StorageType of nonVolatile."
INDEX { tIPv6FilterId, tIPv6FilterParamsIndex }
::= { tIPv6FilterParamsTable 1 }
TIPv6FilterParamsEntry ::= SEQUENCE
{
tIPv6FilterParamsIndex TEntryId,
tIPv6FilterParamsRowStatus RowStatus,
tIPv6FilterParamsLogId TFilterLogId,
tIPv6FilterParamsDescription TItemDescription,
tIPv6FilterParamsAction TFilterActionOrDefault,
tIPv6FilterParamsForwardNH InetAddressIPv6,
tIPv6FilterParamsForwardNHIndirect TruthValue,
tIPv6FilterParamsRemarkDSCP TDSCPFilterActionValue,
tIPv6FilterParamsRemarkDSCPMask TDSCPFilterActionValue,
tIPv6FilterParamsRemarkDot1p Dot1PPriority,
tIPv6FilterParamsSourceIpAddr InetAddressIPv6,
tIPv6FilterParamsSourceIpMask InetAddressPrefixLength,
tIPv6FilterParamsDestinationIpAddr InetAddressIPv6,
tIPv6FilterParamsDestinationIpMask InetAddressPrefixLength,
tIPv6FilterParamsNextHeader TIpProtocol,
tIPv6FilterParamsSourcePortValue1 TTcpUdpPort,
tIPv6FilterParamsSourcePortValue2 TTcpUdpPort,
tIPv6FilterParamsSourcePortOperator TTcpUdpPortOperator,
tIPv6FilterParamsDestPortValue1 TTcpUdpPort,
tIPv6FilterParamsDestPortValue2 TTcpUdpPort,
tIPv6FilterParamsDestPortOperator TTcpUdpPortOperator,
tIPv6FilterParamsDSCP TDSCPNameOrEmpty,
tIPv6FilterParamsTcpSyn TItemMatch,
tIPv6FilterParamsTcpAck TItemMatch,
tIPv6FilterParamsIcmpCode INTEGER,
tIPv6FilterParamsIcmpType INTEGER,
tIPv6FilterParamsCflowdSample TruthValue,
tIPv6FilterParamsCflowdIfSample TruthValue,
tIPv6FilterParamsForwardNHInterface DisplayString,
tIPv6FilterParamsIngressHitCount Counter64,
tIPv6FilterParamsEgressHitCount Counter64,
tIPv6FilterParamsLogInstantiated TruthValue,
tIPv6FilterParamsForwardRedPlcy TNamedItemOrEmpty,
tIPv6FilterParamsActiveDest InetAddressIPv6,
tIPv6FilterParamsTimeRangeName TNamedItemOrEmpty,
tIPv6FilterParamsTimeRangeState TTimeRangeState,
tIPv6FilterParamsIngrHitByteCount Counter64,
tIPv6FilterParamsEgrHitByteCount Counter64
}
tIPv6FilterParamsIndex OBJECT-TYPE
SYNTAX TEntryId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the secondary index for the entry. Every IPv6 filter can have
multiple entries, therefore every IPv6 filter entry is identified by
the tIPv6FilterId and tIPv6FilterParamsIndex."
::= { tIPv6FilterParamsEntry 1 }
tIPv6FilterParamsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows entries to be created and deleted in the
tIPv6FilterParamsTable."
::= { tIPv6FilterParamsEntry 2 }
tIPv6FilterParamsLogId OBJECT-TYPE
SYNTAX TFilterLogId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the log to use for packets that match
this entry. The value zero indicates that logging is disabled."
DEFVAL { 0 }
::= { tIPv6FilterParamsEntry 3 }
tIPv6FilterParamsDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"User-provided description for this filter entry."
DEFVAL { ''H }
::= { tIPv6FilterParamsEntry 4 }
tIPv6FilterParamsAction OBJECT-TYPE
SYNTAX TFilterActionOrDefault
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The action to take for packets that match this filter entry. The value
default(3) specifies this entry to inherit the behavior defined as the
default for the filter."
DEFVAL { drop }
::= { tIPv6FilterParamsEntry 5 }
tIPv6FilterParamsForwardNH OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ipv6-address of the nexthop to which the packet should be forwarded
if it hits this filter entry. The action of this entry should be
'forward' in such a case."
DEFVAL { '00000000000000000000000000000000'H }
::= { tIPv6FilterParamsEntry 6 }
tIPv6FilterParamsForwardNHIndirect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPv6FilterParamsForwardNHIndirect specifies if the nexthop is directly or
indirectly reachable."
DEFVAL { false }
::= { tIPv6FilterParamsEntry 7 }
tIPv6FilterParamsRemarkDSCP OBJECT-TYPE
SYNTAX TDSCPFilterActionValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The DSCP value that should be remarked in case a packet hits this
filter entry."
DEFVAL { -1 }
::= { tIPv6FilterParamsEntry 8 }
tIPv6FilterParamsRemarkDSCPMask OBJECT-TYPE
SYNTAX TDSCPFilterActionValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPv6FilterParamsRemarkDSCPMask specifies the care bits while remarking
with the DSCP value."
DEFVAL { 255 }
::= { tIPv6FilterParamsEntry 9 }
tIPv6FilterParamsRemarkDot1p OBJECT-TYPE
SYNTAX Dot1PPriority
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPv6FilterParamsRemarkDot1p specifies the Dot1p value that needs to be
remarked on the packet if it hits this filter entry."
DEFVAL { -1 }
::= { tIPv6FilterParamsEntry 10 }
tIPv6FilterParamsSourceIpAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IPv6 address to match the source-ip of the packet."
DEFVAL { '00000000000000000000000000000000'H }
::= { tIPv6FilterParamsEntry 11 }
tIPv6FilterParamsSourceIpMask OBJECT-TYPE
SYNTAX InetAddressPrefixLength (0..128)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IPv6 Mask value for this policy IPv6 Filter entry. The mask is
ANDed with the IPv6 to match the tIPv6FilterParamsSourceIpAddr."
DEFVAL { 0 }
::= { tIPv6FilterParamsEntry 12 }
tIPv6FilterParamsDestinationIpAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IPv6 address to match the destination-ip of the packet."
DEFVAL { '00000000000000000000000000000000'H }
::= { tIPv6FilterParamsEntry 13 }
tIPv6FilterParamsDestinationIpMask OBJECT-TYPE
SYNTAX InetAddressPrefixLength (0..128)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IPv6 Mask value for this policy IPv6 Filter entry. The mask is
ANDed with the IPv6 to match the tIPv6FilterParamsDestinationIpAddr."
DEFVAL { 0 }
::= { tIPv6FilterParamsEntry 14 }
tIPv6FilterParamsNextHeader OBJECT-TYPE
SYNTAX TIpProtocol
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IPv6 next header to match. set to -1 to disable matching IPv6 next
header. If the next header is changed the next header specific parameters
are reset. For instance if next header is changed from TCP to UDP, then the
objects tIPv6FilterParamsTcpSyn and tIPv6FilterParamsTcpAck will be turned off.
Because the match criteria only pertains to the last next-header, the
following values are not accepted: 0, 43, 44, 50, 51, and 60."
DEFVAL { -1 }
::= { tIPv6FilterParamsEntry 15 }
tIPv6FilterParamsSourcePortValue1 OBJECT-TYPE
SYNTAX TTcpUdpPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"TCP/UDP port value1. The value of this object is used as per the
description for tIPv6FilterParamsSourcePortOperator."
DEFVAL { 0 }
::= { tIPv6FilterParamsEntry 16 }
tIPv6FilterParamsSourcePortValue2 OBJECT-TYPE
SYNTAX TTcpUdpPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"TCP/UDP port value2. The value of this object is used as per the
description for tIPv6FilterParamsSourcePortOperator."
DEFVAL { 0 }
::= { tIPv6FilterParamsEntry 17 }
tIPv6FilterParamsSourcePortOperator OBJECT-TYPE
SYNTAX TTcpUdpPortOperator
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The operator specifies the manner in which
tIPFilterParamsSourcePortValue1 and tIPFilterParamsSourcePortValue2
are to be used."
DEFVAL { none }
::= { tIPv6FilterParamsEntry 18 }
tIPv6FilterParamsDestPortValue1 OBJECT-TYPE
SYNTAX TTcpUdpPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"TCP/UDP port value1. The value of this object is used as per the
description for tIPv6FilterParamsDestPortOperator."
DEFVAL { 0 }
::= { tIPv6FilterParamsEntry 19 }
tIPv6FilterParamsDestPortValue2 OBJECT-TYPE
SYNTAX TTcpUdpPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"TCP/UDP port value2. The value of this object is used as per the
description for tIPv6FilterParamsDestPortOperator."
DEFVAL { 0 }
::= { tIPv6FilterParamsEntry 20 }
tIPv6FilterParamsDestPortOperator OBJECT-TYPE
SYNTAX TTcpUdpPortOperator
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The operator specifies the manner in which tIPFilterParamsDestPortValue1
and tIPFilterParamsDestPortValue2 are to be used."
DEFVAL { none }
::= { tIPv6FilterParamsEntry 21 }
tIPv6FilterParamsDSCP OBJECT-TYPE
SYNTAX TDSCPNameOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"DSCP to be matched on the packet."
DEFVAL { ''H }
::= { tIPv6FilterParamsEntry 22 }
tIPv6FilterParamsTcpSyn OBJECT-TYPE
SYNTAX TItemMatch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If Enabled, matches a TCP Syn as per value of the object."
DEFVAL { off }
::= { tIPv6FilterParamsEntry 23 }
tIPv6FilterParamsTcpAck OBJECT-TYPE
SYNTAX TItemMatch
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If Enabled, matches a TCP Ack as per value of the object."
DEFVAL { off }
::= { tIPv6FilterParamsEntry 24 }
tIPv6FilterParamsIcmpCode OBJECT-TYPE
SYNTAX INTEGER (-1|0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Icmp code to be matched. tIPv6FilterParamsIcmpCode complements the
object tIPv6FilterParamsIcmpType. Both of them need to be set to actually
enable ICMP matching. The value -1 means Icmp code matching is not
enabled."
DEFVAL { -1 }
::= { tIPv6FilterParamsEntry 25 }
tIPv6FilterParamsIcmpType OBJECT-TYPE
SYNTAX INTEGER (-1|0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Icmp type to be matched. tIPv6FilterParamsIcmpType complements the
object tIPv6FilterParamsIcmpCode. Both of them need to be set to actually
enable ICMP matching. The value -1 means Icmp type matching is not
enabled."
DEFVAL { -1 }
::= { tIPv6FilterParamsEntry 26 }
tIPv6FilterParamsCflowdSample OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When tIPFilterParamsCflowdSample has a value of 'true', Cflowd sampling
and analysis is performed on those packet streams where this filter
has been applied. Only packets matching this IPv6 filter entry are
subjected to Cflowd sampling and analysis. A Cflowd profile controls
the sampling and analysis of data flows through the router."
DEFVAL { false }
::= { tIPv6FilterParamsEntry 27 }
tIPv6FilterParamsCflowdIfSample OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When tIPv6FilterParamsCflowdIfSample has a value of 'true', Cflowd
sampling and analysis is performed on those packet streams where this
filter has been applied. Only packets matching this IPv6 filter entry
are subjected to Cflowd sampling and analysis. A Cflowd profile
controls the sampling and analysis of data flows through the router."
DEFVAL { true }
::= { tIPv6FilterParamsEntry 28 }
tIPv6FilterParamsForwardNHInterface OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The interface name for the nexthop to which the packet should be
forwarded if it hits this filter entry. The action of this entry
should be 'forward' in such a case."
DEFVAL { ''H }
::= { tIPv6FilterParamsEntry 29 }
tIPv6FilterParamsIngressHitCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of times an ingress packet
matched this entry."
::= { tIPv6FilterParamsEntry 30 }
tIPv6FilterParamsEgressHitCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of times an egress packet
matched this entry."
::= { tIPv6FilterParamsEntry 31 }
tIPv6FilterParamsLogInstantiated OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tIPv6FilterParamsLogInstantiated indicates if the filter log for
this filter entry has been instantiated or not."
::= { tIPv6FilterParamsEntry 32 }
tIPv6FilterParamsForwardRedPlcy OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPv6FilterParamsForwardRedPlcy specifies the redirect policy to be
used to determine the nexthop."
DEFVAL { ''H }
::= { tIPv6FilterParamsEntry 33 }
tIPv6FilterParamsActiveDest OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tIPv6FilterParamsActiveDest indicates the IPv6 address of the active
destination for this IPv6 filter. A value of 0 indicates that there
is currently no active destination."
::= { tIPv6FilterParamsEntry 34 }
tIPv6FilterParamsTimeRangeName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"tIPv6FilterParamsTimeRangeName specifies the tmnxTimeRangeEntry to be
associated with this filter entry.
A value for this object can only be specified during row creation, and
cannot be altered lateron.
Also, a value is accepted only if the tmnxTimeRangeEntry is defined in
the TIMETRA-SCHEDULER-MIB::tmnxTimeRangeTable.tTimeRangeName."
DEFVAL { ''H }
::= { tIPv6FilterParamsEntry 35 }
tIPv6FilterParamsTimeRangeState OBJECT-TYPE
SYNTAX TTimeRangeState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"tIPv6FilterParamsTimeRangeState indicates whether or not the entry
is currently in effect.
- timeRangeNotApplic:
no time range is applicable for this entry.
- timeRangeNotActive:
A time range is defined in tIPv6FilterParamsTimeRangeName, but is not
active at this moment. Consequently the filter entry is not
installed.
- timeRangeActive.
A time range is defined in tIPv6FilterParamsTimeRangeName, and is
activated successfully.
- timeRangeActiveDownloadFailed:
A time range is defined in tIPv6FilterParamsTimeRangeName, and is
activated, but the corresponding filter entry could not be
installed due to resource problems."
::= { tIPv6FilterParamsEntry 36 }
tIPv6FilterParamsIngrHitByteCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tIPv6FilterParamsIngrHitByteCount indicates the number
of bytes of all ingress packets that matched this entry."
::= { tIPv6FilterParamsEntry 37 }
tIPv6FilterParamsEgrHitByteCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This tIPv6FilterParamsEgrHitByteCount indicates the number
of bytes of all egress packets that matched this entry."
::= { tIPv6FilterParamsEntry 38 }
--
-- Notification Information
--
--
-- Filter Notification Objects
--
tFilterPBRDropReason OBJECT-TYPE
SYNTAX INTEGER {
invalidInterface (0),
interfaceDown (1)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by tIPFilterPBRPacketsDrop to report the failure reason code."
::= { tFilterNotificationObjects 1 }
tFilterParmRow OBJECT-TYPE
SYNTAX RowPointer
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of the object tFilterParmRow indicates the OID of the row
status of the applicable filter parameter table. This can be a row from
either one of the following tables:
- tIPFilterParamsTable;
- tMacFilterParamsTable; or
- tIPv6FilterParamsTable"
::= { tFilterNotificationObjects 2 }
tFilterAlarmDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of the object tFilterAlarmDescription is a printable
character string which contains information about the cause of the
problem."
::= { tFilterNotificationObjects 3 }
tIPFilterPBRPacketsDrop NOTIFICATION-TYPE
OBJECTS {
tIPFilterParamsForwardNHInterface,
tFilterPBRDropReason
}
STATUS current
DESCRIPTION
"The tIPFilterPBRPacketsDrop event is generated either
when the configuration of a forwarding action refers to an
invalid/unconfigured next-hop or if the active interface goes down
operationally in the process of active filtering."
::= { tFilterNotifications 1 }
tFilterEntryActivationFailed NOTIFICATION-TYPE
OBJECTS {
tFilterParmRow,
tFilterAlarmDescription
}
STATUS current
DESCRIPTION
"The tFilterEntryActivationFailed event can only be
generated for entries that are controlled by a tmnxTimeRangeEntry.
If the tmnxTimeRangeEntry becomes active the indicated entry must be
installed.
The event is generated when this installation failed because
of resource problems."
::= { tFilterNotifications 2 }
tFilterEntryActivationRestored NOTIFICATION-TYPE
OBJECTS {
tFilterParmRow,
tFilterAlarmDescription
}
STATUS current
DESCRIPTION
"The tFilterEntryActivationRestored event can only be
generated for entries that are controlled by a tmnxTimeRangeEntry.
If the tmnxTimeRangeEntry becomes active the indicated entry must be
installed.
The event tFilterEntryActivationFailed is generated when
this installation originally failed because of resources
problems,
The notification tFilterEntryActivationRestored is sent
when either the time range associated with the filter is no
longer active, or when the filter entry
was installed due to the availability of new resources."
::= { tFilterNotifications 3 }
--
-- Conformance Information
--
tFilterMIBCompliances OBJECT IDENTIFIER ::= { tFilterMIBConformance 1 }
tFilterMIBGroups OBJECT IDENTIFIER ::= { tFilterMIBConformance 2 }
--
-- Compliance Statements
--
-- tFilterMIBCompliance MODULE-COMPLIANCE
-- ::= { tFilterMIBCompliances 1 }
-- tFilterR2r1MIBCompliance MODULE-COMPLIANCE
-- ::= { tFilterMIBCompliances 2 }
-- tFilterV3v0MIBCompliance MODULE-COMPLIANCE
-- ::= { tFilterMIBCompliances 3 }
tFilter7450V4v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for management of Filter features
on Alcatel 7450 ESS series systems release R4.0."
MODULE -- this module
MANDATORY-GROUPS {
tFilterScalarGroup,
tIPFilterV4v0Group,
tMacFilterV4v0Group,
tFilterLogGroup,
tFilterRedirectPolicyGroup,
tFilterNotificationsGroup
-- tIPv6FilterV4v0Group
-- tTodPoliciesV4v0Group
}
::= { tFilterMIBCompliances 4 }
tFilter7750V4v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for management of Filter features
on Alcatel 7750 SR series systems release R4.0."
MODULE -- this module
MANDATORY-GROUPS {
tFilterScalarGroup,
tIPFilterV4v0Group,
tMacFilterV4v0Group,
tFilterLogGroup,
tFilterRedirectPolicyGroup,
tFilterNotificationsGroup,
tIPv6FilterV4v0Group
-- tTodPoliciesV4v0Group
}
::= { tFilterMIBCompliances 5 }
tFilter7450V5v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for management of Filter features
on Alcatel 7450 ESS series systems release R5.0."
MODULE -- this module
MANDATORY-GROUPS {
tFilterScalarGroup,
tIPFilterV5v0Group,
tMacFilterV4v0Group,
tFilterLogGroup,
tFilterRedirectPolicyGroup,
tFilterNotificationsGroup,
-- tIPv6FilterV4v0Group
tTodPolicies77450V5v0Group,
tToDPoliciesV5v0NotifyGroup,
tFilterLogV5v0Group
}
::= { tFilterMIBCompliances 6 }
tFilter77x0V5v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for management of Filter features
on Alcatel 77x0 SPR/SR series systems release R5.0."
MODULE -- this module
MANDATORY-GROUPS {
tFilterScalarGroup,
tIPFilterV5v0Group,
tMacFilterV4v0Group,
tFilterLogGroup,
tFilterRedirectPolicyGroup,
tFilterNotificationsGroup,
tIPv6FilterV4v0Group,
tTodPolicies77x0V5v0Group,
tToDPoliciesV5v0NotifyGroup,
tFilterLogV5v0Group
}
::= { tFilterMIBCompliances 7 }
tFilter7450V6v0Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of Filter features
on Alcatel 7450 ESS series systems release R5.0."
MODULE -- this module
MANDATORY-GROUPS {
tFilterScalarGroup,
tIPFilterV6v0Group,
tMacFilterV6v0Group,
tFilterLogGroup,
tFilterRedirectPolicyGroup,
tFilterNotificationsGroup,
-- tIPv6FilterV6v0Group
tTodPolicies77450V5v0Group,
tToDPoliciesV5v0NotifyGroup,
tFilterLogV5v0Group
}
::= { tFilterMIBCompliances 8 }
tFilter77x0V6v0Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for management of Filter features
on Alcatel 77x0 SPR/SR series systems release R5.0."
MODULE -- this module
MANDATORY-GROUPS {
tFilterScalarGroup,
tIPFilterV6v0Group,
tMacFilterV6v0Group,
tFilterLogGroup,
tFilterRedirectPolicyGroup,
tFilterNotificationsGroup,
tIPv6FilterV6v0Group,
tTodPolicies77x0V5v0Group,
tToDPoliciesV5v0NotifyGroup,
tFilterLogV5v0Group
}
::= { tFilterMIBCompliances 9 }
--
-- Units of conformance
--
-- tIPFilterGroup OBJECT-GROUP
-- ::= { tFilterMIBGroups 1 }
-- tMacFilterGroup OBJECT-GROUP
-- ::= { tFilterMIBGroups 2 }
tFilterLogGroup OBJECT-GROUP
OBJECTS {
tFilterLogRowStatus,
tFilterLogDestination,
tFilterLogDescription,
tFilterLogMaxNumEntries,
tFilterLogSysLogId,
tFilterLogFileId,
tFilterLogStopOnFull,
tFilterLogEnabled,
tFilterLogMaxInstances,
tFilterLogInstances,
tFilterLogBindings
}
STATUS current
DESCRIPTION
"The group of objects supporting management of filter log objects
on Alcatel 7x50 SR series systems."
::= { tFilterMIBGroups 3 }
tFilterRedirectPolicyGroup OBJECT-GROUP
OBJECTS {
tFilterRPRowStatus,
tFilterRPDescription,
tFilterRPAdminState,
tFilterRPActiveDest,
tFilterRDRowStatus,
tFilterRDDescription,
tFilterRDAdminPriority,
tFilterRDOperPriority,
tFilterRDAdminState,
tFilterRDOperState,
tFilterRSTRowStatus,
tFilterRSTOID,
tFilterRSTCommunity,
tFilterRSTSNMPVersion,
tFilterRSTInterval,
tFilterRSTTimeout,
tFilterRSTDropCount,
tFilterRSTHoldDown,
tFilterRSTHoldDownRemain,
tFilterRSTLastActionTime,
tFilterRSTLastOID,
tFilterRSTLastType,
tFilterRSTLastCounter32Val,
tFilterRSTLastUnsigned32Val,
tFilterRSTLastTimeTicksVal,
tFilterRSTLastInt32Val,
tFilterRSTLastOctetStringVal,
tFilterRSTLastIpAddressVal,
tFilterRSTLastOidVal,
tFilterRSTLastCounter64Val,
tFilterRSTLastOpaqueVal,
tFilterRSTLastAction,
tFilterRSTLastPrioChange,
tFilterRSTNextRespIndex,
tFilterRSTRespRowStatus,
tFilterRSTRespAction,
tFilterRSTRespPrioChange,
tFilterRSTRespOID,
tFilterRSTRespType,
tFilterRSTCounter32Val,
tFilterRSTUnsigned32Val,
tFilterRSTTimeTicksVal,
tFilterRSTInt32Val,
tFilterRSTOctetStringVal,
tFilterRSTIpAddressVal,
tFilterRSTOidVal,
tFilterRSTCounter64Val,
tFilterRSTOpaqueVal,
tFilterRUTRowStatus,
tFilterRUTURL,
tFilterRUTHTTPVersion,
tFilterRUTInterval,
tFilterRUTTimeout,
tFilterRUTDropCount,
tFilterRUTHoldDown,
tFilterRUTHoldDownRemain,
tFilterRUTLastActionTime,
tFilterRUTLastRetCode,
tFilterRUTLastAction,
tFilterRUTLastPrioChange,
tFilterRUTRespRowStatus,
tFilterRUTRespAction,
tFilterRUTRespPrioChange,
tFilterRPTRowStatus,
tFilterRPTInterval,
tFilterRPTTimeout,
tFilterRPTDropCount,
tFilterRPTHoldDown,
tFilterRPTHoldDownRemain,
tFilterRPTLastActionTime,
tFilterRPTLastAction
}
STATUS current
DESCRIPTION
"The group of objects supporting management of filter redirect policy
objects on Alcatel 7x50 SR series systems."
::= { tFilterMIBGroups 4 }
tFilterScalarGroup OBJECT-GROUP
OBJECTS {
tFilterDomainLastChanged
}
STATUS current
DESCRIPTION
"The group of objects supporting management of filter scalar
objects on Alcatel 7x50 SR series systems."
::= { tFilterMIBGroups 7 }
tFilterNotificationObjGroup OBJECT-GROUP
OBJECTS {
tFilterPBRDropReason
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of filter
notification objects on Alcatel 7x50 SR series systems."
::= { tFilterMIBGroups 8 }
tFilterNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
tIPFilterPBRPacketsDrop
}
STATUS current
DESCRIPTION
"The group of notifications supporting management of
filter notifications on Alcatel 7x50 SR series systems."
::= { tFilterMIBGroups 9 }
-- tAutoIPFilterR2r1Group OBJECT-GROUP
-- ::= { tFilterMIBGroups 10 }
tIPv6FilterV4v0Group OBJECT-GROUP
OBJECTS {
tIPv6FilterRowStatus,
tIPv6FilterScope,
tIPv6FilterDescription,
tIPv6FilterDefaultAction,
tIPv6FilterParamsRowStatus,
tIPv6FilterParamsLogId,
tIPv6FilterParamsDescription,
tIPv6FilterParamsAction,
tIPv6FilterParamsForwardNH,
tIPv6FilterParamsForwardNHIndirect,
tIPv6FilterParamsRemarkDSCP,
tIPv6FilterParamsRemarkDSCPMask,
tIPv6FilterParamsRemarkDot1p,
tIPv6FilterParamsSourceIpAddr,
tIPv6FilterParamsSourceIpMask,
tIPv6FilterParamsDestinationIpAddr,
tIPv6FilterParamsDestinationIpMask,
tIPv6FilterParamsNextHeader,
tIPv6FilterParamsSourcePortValue1,
tIPv6FilterParamsSourcePortValue2,
tIPv6FilterParamsSourcePortOperator,
tIPv6FilterParamsDestPortValue1,
tIPv6FilterParamsDestPortValue2,
tIPv6FilterParamsDestPortOperator,
tIPv6FilterParamsDSCP,
tIPv6FilterParamsTcpSyn,
tIPv6FilterParamsTcpAck,
tIPv6FilterParamsIcmpCode,
tIPv6FilterParamsIcmpType,
tIPv6FilterParamsCflowdSample,
tIPv6FilterParamsCflowdIfSample,
tIPv6FilterParamsForwardNHInterface,
tIPv6FilterParamsIngressHitCount,
tIPv6FilterParamsEgressHitCount,
tIPv6FilterParamsLogInstantiated,
tIPv6FilterParamsForwardRedPlcy,
tIPv6FilterParamsActiveDest
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of IPv6 filter objects
on Alcatel 7x50 SR series systems."
::= { tFilterMIBGroups 11 }
tIPFilterV4v0Group OBJECT-GROUP
OBJECTS {
tIPFilterRowStatus,
tIPFilterScope,
tIPFilterDescription,
tIPFilterDefaultAction,
tIPFilterParamsRowStatus,
tIPFilterParamsLogId,
tIPFilterParamsDescription,
tIPFilterParamsAction,
tIPFilterParamsForwardNH,
tIPFilterParamsForwardNHIndirect,
tIPFilterParamsRemarkDSCP,
tIPFilterParamsRemarkDSCPMask,
tIPFilterParamsRemarkDot1p,
tIPFilterParamsSourceIpAddr,
tIPFilterParamsSourceIpMask,
tIPFilterParamsDestinationIpAddr,
tIPFilterParamsDestinationIpMask,
tIPFilterParamsProtocol,
tIPFilterParamsSourcePortValue1,
tIPFilterParamsSourcePortValue2,
tIPFilterParamsSourcePortOperator,
tIPFilterParamsDestPortValue1,
tIPFilterParamsDestPortValue2,
tIPFilterParamsDestPortOperator,
tIPFilterParamsDSCP,
tIPFilterParamsFragment,
tIPFilterParamsOptionPresent,
tIPFilterParamsIpOptionValue,
tIPFilterParamsIpOptionMask,
tIPFilterParamsMultipleOption,
tIPFilterParamsTcpSyn,
tIPFilterParamsTcpAck,
tIPFilterParamsIcmpCode,
tIPFilterParamsIcmpType,
tIPFilterParamsCflowdSample,
tIPFilterParamsCflowdIfSample,
tIPFilterParamsForwardNHInterface,
tIPFilterParamsIngressHitCount,
tIPFilterParamsEgressHitCount,
tIPFilterParamsLogInstantiated,
tIPFilterParamsForwardRedPlcy,
tIPFilterParamsActiveDest,
tIPFilterParamsFwdSvcId,
tIPFilterParamsFwdSapPortId,
tIPFilterParamsFwdSapEncapVal,
tIPFilterParamsFwdSdpBind,
tIPFilterParamsRedirectURL
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting IP Filters
on Alcatel 7x50 ESS/SR series systems 4.0 release."
::= { tFilterMIBGroups 12 }
tMacFilterV4v0Group OBJECT-GROUP
OBJECTS {
tMacFilterRowStatus,
tMacFilterScope,
tMacFilterDescription,
tMacFilterDefaultAction,
tMacFilterParamsRowStatus,
tMacFilterParamsLogId,
tMacFilterParamsDescription,
tMacFilterParamsAction,
tMacFilterParamsFrameType,
tMacFilterParamsSrcMAC,
tMacFilterParamsSrcMACMask,
tMacFilterParamsDstMAC,
tMacFilterParamsDstMACMask,
tMacFilterParamsDot1pValue,
tMacFilterParamsDot1pMask,
tMacFilterParamsEtherType,
tMacFilterParamsDsap,
tMacFilterParamsDsapMask,
tMacFilterParamsSsap,
tMacFilterParamsSsapMask,
tMacFilterParamsSnapPid,
tMacFilterParamsSnapOui,
tMacFilterParamsIngressHitCount,
tMacFilterParamsEgressHitCount,
tMacFilterParamsLogInstantiated,
tMacFilterParamsFwdSvcId,
tMacFilterParamsFwdSapPortId,
tMacFilterParamsFwdSapEncapVal,
tMacFilterParamsFwdSdpBind,
tMacFilterParamsRedirectURL
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of mac filter objects
on Alcatel 7x50 SR series systems 4.0 release."
::= { tFilterMIBGroups 13 }
tTodPoliciesV4v0Group OBJECT-GROUP
OBJECTS {
tIPFilterParamsTimeRangeName,
tIPFilterParamsTimeRangeState,
tMacFilterParamsTimeRangeName,
tMacFilterParamsTimeRangeState,
tIPv6FilterParamsTimeRangeName,
tIPv6FilterParamsTimeRangeState
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of time of day policy
related objects on Alcatel 7x50 SR series systems 4.0 release."
::= { tFilterMIBGroups 14 }
tmnxFilterObsoleteGroup OBJECT-GROUP
OBJECTS {
tAutoIPFilterEntrySourceIpMask
}
STATUS current
DESCRIPTION
"The group of objects in ALCATEL-IND1-TIMETRA-FILTER-MIB which are obsoleted."
::= { tFilterMIBGroups 15 }
tToDPoliciesV5v0NotifyGroup NOTIFICATION-GROUP
NOTIFICATIONS {
tFilterEntryActivationFailed,
tFilterEntryActivationRestored
}
STATUS current
DESCRIPTION
"The group of notifications generated by the time of time of day
policy feature on Alcatel 7x50 SR series systems 5.0 release."
::= { tFilterMIBGroups 16 }
tIPFilterV5v0Group OBJECT-GROUP
OBJECTS {
tIPFilterRowStatus,
tIPFilterScope,
tIPFilterDescription,
tIPFilterDefaultAction,
tIPFilterParamsRowStatus,
tIPFilterParamsLogId,
tIPFilterParamsDescription,
tIPFilterParamsAction,
tIPFilterParamsForwardNH,
tIPFilterParamsForwardNHIndirect,
tIPFilterParamsRemarkDSCP,
tIPFilterParamsRemarkDSCPMask,
tIPFilterParamsRemarkDot1p,
tIPFilterParamsSourceIpAddr,
tIPFilterParamsSourceIpMask,
tIPFilterParamsDestinationIpAddr,
tIPFilterParamsDestinationIpMask,
tIPFilterParamsProtocol,
tIPFilterParamsSourcePortValue1,
tIPFilterParamsSourcePortValue2,
tIPFilterParamsSourcePortOperator,
tIPFilterParamsDestPortValue1,
tIPFilterParamsDestPortValue2,
tIPFilterParamsDestPortOperator,
tIPFilterParamsDSCP,
tIPFilterParamsFragment,
tIPFilterParamsOptionPresent,
tIPFilterParamsIpOptionValue,
tIPFilterParamsIpOptionMask,
tIPFilterParamsMultipleOption,
tIPFilterParamsTcpSyn,
tIPFilterParamsTcpAck,
tIPFilterParamsIcmpCode,
tIPFilterParamsIcmpType,
tIPFilterParamsCflowdSample,
tIPFilterParamsCflowdIfSample,
tIPFilterParamsForwardNHInterface,
tIPFilterParamsIngressHitCount,
tIPFilterParamsEgressHitCount,
tIPFilterParamsLogInstantiated,
tIPFilterParamsForwardRedPlcy,
tIPFilterParamsActiveDest,
tIPFilterParamsFwdSvcId,
tIPFilterParamsFwdSapPortId,
tIPFilterParamsFwdSapEncapVal,
tIPFilterParamsFwdSdpBind,
tIPFilterParamsRedirectURL,
tIPFilterParamsSrcIpFullMask,
tIPFilterParamsDestIpFullMask
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting IP Filters
on Alcatel 7x50 ESS/SR series systems 5.0 release."
::= { tFilterMIBGroups 17 }
tFilterLogV5v0Group OBJECT-GROUP
OBJECTS {
tFilterLogSummaryEnabled,
tFilterLogSummaryCrit1
}
STATUS current
DESCRIPTION
"The group of objects supporting Filter Log Summarization
on Alcatel 7x50 ESS/SR series systems 5.0 release."
::= { tFilterMIBGroups 18 }
tTodPolicies77450V5v0Group OBJECT-GROUP
OBJECTS {
tIPFilterParamsTimeRangeName,
tIPFilterParamsTimeRangeState,
tMacFilterParamsTimeRangeName,
tMacFilterParamsTimeRangeState
}
STATUS current
DESCRIPTION
"The group of objects supporting management of time of day policy
related objects on Alcatel 7450 ESS series systems 5.0 release."
::= { tFilterMIBGroups 19 }
tTodPolicies77x0V5v0Group OBJECT-GROUP
OBJECTS {
tIPFilterParamsTimeRangeName,
tIPFilterParamsTimeRangeState,
tMacFilterParamsTimeRangeName,
tMacFilterParamsTimeRangeState,
tIPv6FilterParamsTimeRangeName,
tIPv6FilterParamsTimeRangeState
}
STATUS current
DESCRIPTION
"The group of objects supporting management of time of day policy
related objects on Alcatel 77x0 series systems 5.0 release."
::= { tFilterMIBGroups 20 }
tFilterNotificationObjV5v0Group OBJECT-GROUP
OBJECTS {
tFilterPBRDropReason,
tFilterParmRow,
tFilterAlarmDescription
}
STATUS current
DESCRIPTION
"The group of objects supporting management of filter
notification objects on Alcatel 7x50 SR series systems."
::= { tFilterMIBGroups 21 }
tIPFilterV6v0Group OBJECT-GROUP
OBJECTS {
tIPFilterRowStatus,
tIPFilterScope,
tIPFilterDescription,
tIPFilterDefaultAction,
tIPFilterParamsRowStatus,
tIPFilterParamsLogId,
tIPFilterParamsDescription,
tIPFilterParamsAction,
tIPFilterParamsForwardNH,
tIPFilterParamsForwardNHIndirect,
tIPFilterParamsRemarkDSCP,
tIPFilterParamsRemarkDSCPMask,
tIPFilterParamsRemarkDot1p,
tIPFilterParamsSourceIpAddr,
tIPFilterParamsSourceIpMask,
tIPFilterParamsDestinationIpAddr,
tIPFilterParamsDestinationIpMask,
tIPFilterParamsProtocol,
tIPFilterParamsSourcePortValue1,
tIPFilterParamsSourcePortValue2,
tIPFilterParamsSourcePortOperator,
tIPFilterParamsDestPortValue1,
tIPFilterParamsDestPortValue2,
tIPFilterParamsDestPortOperator,
tIPFilterParamsDSCP,
tIPFilterParamsFragment,
tIPFilterParamsOptionPresent,
tIPFilterParamsIpOptionValue,
tIPFilterParamsIpOptionMask,
tIPFilterParamsMultipleOption,
tIPFilterParamsTcpSyn,
tIPFilterParamsTcpAck,
tIPFilterParamsIcmpCode,
tIPFilterParamsIcmpType,
tIPFilterParamsCflowdSample,
tIPFilterParamsCflowdIfSample,
tIPFilterParamsForwardNHInterface,
tIPFilterParamsIngressHitCount,
tIPFilterParamsEgressHitCount,
tIPFilterParamsLogInstantiated,
tIPFilterParamsForwardRedPlcy,
tIPFilterParamsActiveDest,
tIPFilterParamsFwdSvcId,
tIPFilterParamsFwdSapPortId,
tIPFilterParamsFwdSapEncapVal,
tIPFilterParamsFwdSdpBind,
tIPFilterParamsRedirectURL,
tIPFilterParamsSrcIpFullMask,
tIPFilterParamsDestIpFullMask,
tIPFilterParamsIngrHitByteCount,
tIPFilterParamsEgrHitByteCount
}
STATUS current
DESCRIPTION
"The group of objects supporting IP Filters
on Alcatel 7x50 ESS/SR series systems 6.0 release."
::= { tFilterMIBGroups 22 }
tMacFilterV6v0Group OBJECT-GROUP
OBJECTS {
tMacFilterRowStatus,
tMacFilterScope,
tMacFilterDescription,
tMacFilterDefaultAction,
tMacFilterParamsRowStatus,
tMacFilterParamsLogId,
tMacFilterParamsDescription,
tMacFilterParamsAction,
tMacFilterParamsFrameType,
tMacFilterParamsSrcMAC,
tMacFilterParamsSrcMACMask,
tMacFilterParamsDstMAC,
tMacFilterParamsDstMACMask,
tMacFilterParamsDot1pValue,
tMacFilterParamsDot1pMask,
tMacFilterParamsEtherType,
tMacFilterParamsDsap,
tMacFilterParamsDsapMask,
tMacFilterParamsSsap,
tMacFilterParamsSsapMask,
tMacFilterParamsSnapPid,
tMacFilterParamsSnapOui,
tMacFilterParamsIngressHitCount,
tMacFilterParamsEgressHitCount,
tMacFilterParamsLogInstantiated,
tMacFilterParamsFwdSvcId,
tMacFilterParamsFwdSapPortId,
tMacFilterParamsFwdSapEncapVal,
tMacFilterParamsFwdSdpBind,
tMacFilterParamsRedirectURL,
tMacFilterParamsIngrHitByteCount,
tMacFilterParamsEgrHitByteCount
}
STATUS current
DESCRIPTION
"The group of objects supporting management of mac filter objects
on Alcatel 7x50 SR series systems 6.0 release."
::= { tFilterMIBGroups 23 }
tIPv6FilterV6v0Group OBJECT-GROUP
OBJECTS {
tIPv6FilterRowStatus,
tIPv6FilterScope,
tIPv6FilterDescription,
tIPv6FilterDefaultAction,
tIPv6FilterParamsRowStatus,
tIPv6FilterParamsLogId,
tIPv6FilterParamsDescription,
tIPv6FilterParamsAction,
tIPv6FilterParamsForwardNH,
tIPv6FilterParamsForwardNHIndirect,
tIPv6FilterParamsRemarkDSCP,
tIPv6FilterParamsRemarkDSCPMask,
tIPv6FilterParamsRemarkDot1p,
tIPv6FilterParamsSourceIpAddr,
tIPv6FilterParamsSourceIpMask,
tIPv6FilterParamsDestinationIpAddr,
tIPv6FilterParamsDestinationIpMask,
tIPv6FilterParamsNextHeader,
tIPv6FilterParamsSourcePortValue1,
tIPv6FilterParamsSourcePortValue2,
tIPv6FilterParamsSourcePortOperator,
tIPv6FilterParamsDestPortValue1,
tIPv6FilterParamsDestPortValue2,
tIPv6FilterParamsDestPortOperator,
tIPv6FilterParamsDSCP,
tIPv6FilterParamsTcpSyn,
tIPv6FilterParamsTcpAck,
tIPv6FilterParamsIcmpCode,
tIPv6FilterParamsIcmpType,
tIPv6FilterParamsCflowdSample,
tIPv6FilterParamsCflowdIfSample,
tIPv6FilterParamsForwardNHInterface,
tIPv6FilterParamsIngressHitCount,
tIPv6FilterParamsEgressHitCount,
tIPv6FilterParamsLogInstantiated,
tIPv6FilterParamsForwardRedPlcy,
tIPv6FilterParamsActiveDest,
tIPv6FilterParamsIngrHitByteCount,
tIPv6FilterParamsEgrHitByteCount
}
STATUS current
DESCRIPTION
"The group of objects supporting management of IPv6 filter objects
on Alcatel 7x50 SR series systems."
::= { tFilterMIBGroups 24 }
END
|