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
|
CA-SNMP-MIB8 DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY,
Integer32, Counter32, Gauge32, Counter64, Opaque, IpAddress, enterprises
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString, TruthValue, TimeStamp
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB;
arrayNetworks MODULE-IDENTITY
LAST-UPDATED "201203090000Z"
ORGANIZATION "Array Networks, Inc."
CONTACT-INFO
" Array Networks
Customer Service
postal: 1371 McCarthy Blvd Milpitas, CA 95035 USA
phone: +1 877 992-7729
email: support@arraynetworks.net"
DESCRIPTION
"This file defines the private CA SNMP MIB extensions."
REVISION "200509140000Z"
DESCRIPTION
"Added raw CPU and IO counters."
REVISION "9912090000Z"
DESCRIPTION
"SMIv2 version converted from older MIB definitions."
::= { enterprises 7564 }
-- IMPORTANT:
-- Listed below are the arrayNetworks Indecies that are currently being used.
-- Current ArrayNetworks MIB Table Entries:
-- processes OBJECT IDENTIFIER ::= { arrayNetworks 1 }
-- NO LONGER SUPPORTED
--
-- prTable OBJECT IDENTIFIER ::= { arrayNetworks 2 }
-- NO LONGER SUPPORTED
--
-- systemInfo OBJECT IDENTIFIER ::= { arrayNetworks 3 }
-- SYSTEM INFO
--
-- memory OBJECT IDENTIFIER ::= { arrayNetworks 4 }
-- MEMORY STATS
--
-- xxxxxx OBJECT IDENTIFIER ::= { arrayNetworks 5 }
-- REMOVED FROM MIB
--
-- disk OBJECT IDENTIFIER ::= { arrayNetworks 6 }
-- NO LONGER SUPPORTED
--
-- load OBJECT IDENTIFIER ::= { arrayNetworks 7 }
-- NO LONGER SUPPORTED
--
-- extTable OBJECT IDENTIFIER ::= { arrayNetworks 8 }
-- NO LONGER SUPPORTED
--
-- diskTable OBJECT IDENTIFIER ::= { arrayNetworks 9 }
-- NO LONGER SUPPORTED
--
-- loadTable OBJECT IDENTIFIER ::= { arrayNetworks 10 }
-- NO LONGER SUPPORTED
--
-- systemStats OBJECT IDENTIFIER ::= { arrayNetworks 11 }
-- NO LONGER SUPPORTED
--
-- caInternal OBJECT IDENTIFIER ::= { arrayNetworks 12 }
-- NO LONGER SUPPORTED
--
-- caExperimental OBJECT IDENTIFIER ::= { arrayNetworks 13 }
-- NO LONGER SUPPORTED
--
-- caDemoMIB OBJECT IDENTIFIER ::= { arrayNetworks 14 }
-- NO LONGER SUPPORTED
--
-- fileTable OBJECT IDENTIFIER ::= { arrayNetworks 15 }
-- NO LONGER SUPPORTED
--
-- revProxyCache OBJECT IDENTIFIER ::= { arrayNetworks 16 }
-- REVERSE PROXY STATS
--
-- xxxxxx OBJECT IDENTIFIER ::= { arrayNetworks 17 }
-- CURRENTLY NOT USED
--
-- vrrp OBJECT IDENTIFIER ::= { arrayNetworks 18 }
-- CLUSTER STATS
--
-- slbMIB OBJECT IDENTIFIER ::= { arrayNetworks 19 }
-- SERVER LOAD BALANCING STATS
--
-- sslMIB OBJECT IDENTIFIER ::= { arrayNetworks 20 }
-- SECURE SOCKET LAYER STATS
--
-- secProxyStats OBJECT IDENTIFIER ::= { arrayNetworks 21 }
-- SECURITY PROXY STATS
--
-- vipStats OBJECT IDENTIFIER ::= { arrayNetworks 22 }
-- VIP STATS
--
-- ifTraffic OBJECT IDENTIFIER ::= { arrayNetworks 23 }
-- INTERFACE TRAFFIC STATS
--
-- caSyslog OBJECT IDENTIFIER ::= { arrayNetworks 24 }
-- SYSLOG STATS & MESSAGES
--
-- clickTcp OBJECT IDENTIFIER ::= { arrayNetworks 25 }
-- CLICKTCP STATS & CONNECTION TABLE
--
-- accesslog OBJECT IDENTIFIER ::= { arrayNetworks 26 }
-- NO LONGER SUPPORTED
--
-- healthCheck OBJECT IDENTIFIER ::= { arrayNetworks 27 }
-- HEALTH CHECK STATS
--
-- compression OBJECT IDENTIFIER ::= { arrayNetworks 28 }
-- HTTP COMPRESSION STATS
--
-- clientApp OBJECT IDENTIFIER ::= { arrayNetworks 29 }
-- SECURITY PROXY CLIENT APP STATS
--
-- performance OBJECT IDENTIFIER ::= { arrayNetworks 30 }
-- SYSTEM PERFORMANCE STATS
--
-- sdns OBJECT IDENTIFIER ::= { arrayNetworks 31 }
-- SMART DNS STATS
--
-- monitor OBJECT IDENTIFIER ::= { arrayNetworks 32 }
-- MONITOR CPU TEMPRATURE AND FAN SPEED ,POWER STATE
--
-- version OBJECT IDENTIFIER ::= { arrayNetworks 100 }
-- NO LONGER SUPPORTED
--
-- snmperrs OBJECT IDENTIFIER ::= { arrayNetworks 101 }
-- NO LONGER SUPPORTED
--
-- mibRegistryTable OBJECT IDENTIFIER ::= { arrayNetworks 102 }
-- NO LONGER SUPPORTED
--
-- caSnmpAgent OBJECT IDENTIFIER ::= { arrayNetworks 250 }
-- NO LONGER SUPPORTED
--
-- caTraps OBJECT IDENTIFIER ::= { arrayNetworks 251 }
-- CUSTOM TRAPS
-- End of arrayNetworks indices description --------------------------
--
-- Define the Float Textual Convention
-- This definition was written by David Perkins.
--
Float ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A single precision floating-point number. The semantics
and encoding are identical for type 'single' defined in
IEEE Standard for Binary Floating-Point,
ANSI/IEEE Std 754-1985.
The value is restricted to the BER serialization of
the following ASN.1 type:
FLOATTYPE ::= [120] IMPLICIT FloatType
(note: the value 120 is the sum of '30'h and '48'h)
The BER serialization of the length for values of
this type must use the definite length, short
encoding form.
For example, the BER serialization of value 123
of type FLOATTYPE is '9f780442f60000'h. (The tag
is '9f78'h; the length is '04'h; and the value is
'42f60000'h.) The BER serialization of value
'9f780442f60000'h of data type Opaque is
'44079f780442f60000'h. (The tag is '44'h; the length
is '07'h; and the value is '9f780442f60000'h."
SYNTAX Opaque (SIZE (7))
caTraps OBJECT IDENTIFIER ::= { arrayNetworks 251 }
caStart NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This trap is sent when the agent starts"
::= { caTraps 1 }
caShutdown NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This trap is sent when the agent terminates"
::= { caTraps 2 }
licenseRemainingDays NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"license remaining days"
::= { caTraps 3}
---
--- The statistics of arrayNetworks' Reverse Proxy Cache MIB
revProxyCache OBJECT IDENTIFIER ::= { arrayNetworks 16 }
-- Requests with Get method in cache BasicStats
cacheBasicStats OBJECT IDENTIFIER ::= { revProxyCache 1 }
-- The advanced statistics are puly to allow developer to gauge the
-- condition of the cache. Please do not try to assume that certain
-- statistics should sum up to some other ones.
cacheStatus OBJECT-TYPE
SYNTAX INTEGER {
on (1),
off (0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current status of the reverse proxy cache - on or off"
::= { cacheBasicStats 1 }
requestsReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of requests received by the reverse proxy cache."
::= { cacheBasicStats 2 }
getRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total GET requests received by the reverse proxy cache."
::= { cacheBasicStats 3 }
headRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total HEAD requests received by the reverse proxy cache."
::= { cacheBasicStats 4 }
purgeRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total PURGE requests received by the reverse proxy cache."
::= { cacheBasicStats 5 }
postRequests OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total POST requests received by the reverse proxy cache."
::= { cacheBasicStats 6 }
clientEstabConn OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of current client connections (e.g. from the browsers)."
::= { cacheBasicStats 7 }
serverEstabConn OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of current backend server connections."
::= { cacheBasicStats 8 }
requestsToHttps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Requests redirected to HTTPS."
::= { cacheBasicStats 9 }
requestsOnRegex OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Requests redirected based on regex match"
::= { cacheBasicStats 10 }
requestsToUrl OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Requests forwarded with rewritten url."
::= { cacheBasicStats 11 }
responsesToHttps OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Locations rewritten to HTTPS."
::= { cacheBasicStats 12 }
responsesOnRegex OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Locations rewritten based on regex match."
::= { cacheBasicStats 13 }
cacheSkip OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cache skip, cache off."
::= { cacheBasicStats 14 }
hitsReply OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"We found the requested URL in the cache. The object was fresh
and we did not have to revalidate. The object was served from
our cache."
::= { cacheBasicStats 15 }
hitsReplyWNotModified OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"We got an IMS header in the request. We validated the
timestamp and decided that the client's copy of this object is
fresh. So we generated a 304 response and sent it out to the
client."
::= { cacheBasicStats 16 }
hitsReplyWPreFailed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cache hit, reply with Precondition Failed."
::= { cacheBasicStats 17 }
hitRevalidate OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The requested object was found in the cache. However, the
request required revalidation (due to client generated
revalidate, proxy generated revalidate or proxy generated forced
miss)."
::= { cacheBasicStats 18 }
cacheMissWNoncacheReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The request does not result in a cache table search.
Something in the request made us deem it non-cacheable (eg.
very long URL, a 'Cache-Control: no-store' header etc."
::= { cacheBasicStats 19 }
cacheMissWNewEntry OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of times the cache table was searched, no matching entry
was found and a new entry was created. However, note
that sometimes, an entry is created temporarily (eg. for an IMS
request resulting in a 304) and is deleted after sending it
out to the client (delayed delete)."
::= { cacheBasicStats 20 }
cacheMissWRespNo OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cache miss, create new entry, resp noncacheable."
::= { cacheBasicStats 21 }
cacheHitRatio OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cache hit reply using cache + cache reply with 'not modified'."
::= { cacheBasicStats 22 }
---
--- The statistics of arrayNetworks' Server Load Balance MIB
slbMIB OBJECT IDENTIFIER ::= { arrayNetworks 19 }
slbGeneral OBJECT IDENTIFIER ::= { slbMIB 1 }
slbStats OBJECT IDENTIFIER ::= { slbMIB 2 }
realServer OBJECT IDENTIFIER ::= { slbGeneral 1 }
virtualServer OBJECT IDENTIFIER ::= { slbGeneral 2 }
groupCurCfg OBJECT IDENTIFIER ::= { slbGeneral 3 }
realStats OBJECT IDENTIFIER ::= { slbStats 1 }
virtualStats OBJECT IDENTIFIER ::= { slbStats 2 }
groupStats OBJECT IDENTIFIER ::= { slbStats 3 }
rsCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of real services currently configured."
::= { realServer 1 }
rsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the configuration of real services."
::= { realServer 2 }
rsEntry OBJECT-TYPE
SYNTAX RsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A rsTable entry containing the information of one real service."
INDEX { rsIndex }
::= { rsTable 1 }
RsEntry ::= SEQUENCE {
rsIndex Integer32,
rsID DisplayString,
rsProtocol INTEGER,
rsIpAddr IpAddress,
rsPort INTEGER,
rsMaxConn Integer32,
rsStatus INTEGER,
rsAvgRespTime Integer32,
rsIpAddressType InetAddressType,
rsIpAddress InetAddress
}
rsIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reference index for each real service."
::= { rsEntry 1 }
rsID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the real service"
::= { rsEntry 2 }
rsProtocol OBJECT-TYPE
SYNTAX INTEGER {
tcp (0),
udp (1),
ftp (2),
ftps (3),
http (4),
https (5),
tcps (6),
dns (7),
l2ip (8),
l2mac (9),
ip (10),
siptcp (11),
sipudp (12),
radacct (13),
radauth (14),
rtsp (15),
vlink (16),
rdp (17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol of the real service."
::= { rsEntry 3 }
rsIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The real service IP address."
::= { rsEntry 4 }
rsPort OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the real service."
DEFVAL { 80 }
::= { rsEntry 5 }
rsMaxConn OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of connections per real service."
DEFVAL { 1000 }
::= { rsEntry 6 }
rsStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1),
down (0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of real service - up or down."
::= { rsEntry 8 }
rsAvgRespTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Server Average Response Time (in microseconds)"
::= { rsEntry 9 }
rsIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of rsIpAddress."
::= { rsEntry 10 }
rsIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The real service IP address."
::= { rsEntry 11 }
vsCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of virtual services currently configured."
::= { virtualServer 1 }
vsTable OBJECT-TYPE
SYNTAX SEQUENCE OF VsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the configuration of virtual services."
::= { virtualServer 2 }
vsEntry OBJECT-TYPE
SYNTAX VsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A vsTable entry containing the configuration of one virtual service."
INDEX { vsIndex }
::= { vsTable 1 }
VsEntry ::= SEQUENCE {
vsIndex Integer32,
vsID DisplayString,
vsProtocol INTEGER,
vsIpAddr IpAddress,
vsPort INTEGER,
vsMaxConn Integer32,
vsIpAddressType InetAddressType,
vsIpAddress InetAddress
}
vsIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reference index for each virtual service."
::= { vsEntry 1 }
vsID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the virtual service."
::= { vsEntry 2 }
vsProtocol OBJECT-TYPE
SYNTAX INTEGER {
tcp (0),
udp (1),
ftp (2),
ftps (3),
http (4),
https (5),
tcps (6),
dns (7),
l2ip (8),
l2mac (9),
ip (10),
siptcp (11),
sipudp (12),
radacct (13),
radauth (14),
rtsp (15),
vlink (16),
rdp (17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol of the virtual service."
::= { vsEntry 3 }
vsIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The virtual service IP address."
::= { vsEntry 4 }
vsPort OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port of the virtual service."
DEFVAL { 80 }
::= { vsEntry 5 }
vsMaxConn OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of connections of the virtual service."
DEFVAL { 0 }
::= { vsEntry 6 }
vsIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of vsIpAddress."
::= { vsEntry 7 }
vsIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The virtual service IP address."
::= { vsEntry 8 }
groupCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of groups currently configured."
::= { groupCurCfg 1 }
gpTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing group member configuration."
::= { groupCurCfg 2 }
gpEntry OBJECT-TYPE
SYNTAX GpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A gpTable entry containing one group member configuration."
INDEX { gpIndex }
::= { gpTable 1 }
GpEntry ::= SEQUENCE {
gpIndex Integer32,
gpID DisplayString,
realID DisplayString,
gpMetrics INTEGER
}
gpIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reference index for each group member."
::= { gpEntry 1 }
gpID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the group."
::= { gpEntry 2 }
realID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the real service."
::= { gpEntry 3 }
gpMetrics OBJECT-TYPE
SYNTAX INTEGER {
invalid (0),
rr (1),
lc (2),
sr (3),
pu (4),
ph (5),
pi (6),
pc (7),
hc (8),
hh (9),
ic (10),
rc (11),
sslsid (12),
hi (13),
hip (14),
chi (15),
prox (16),
snmp (17),
sipcid (18),
sipuid (19),
ec (20),
chh (21),
radchu (22),
radchs (23),
hq (24),
rdprt (25),
persistence (26)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Metric used to balance real services within the group."
::= { gpEntry 4 }
rsStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RsStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Real service statistics table."
::= { realStats 1 }
rsStatsEntry OBJECT-TYPE
SYNTAX RsStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A rsStatsTable entry containing the statistics of one real service."
INDEX { realIndex }
::= { rsStatsTable 1 }
RsStatsEntry ::= SEQUENCE {
realIndex Integer32,
realServerID DisplayString,
realAddr IpAddress,
realPort INTEGER,
rsCntOfReq Integer32,
rsConnCnt Integer32,
rsTotalHits Integer32,
realStatus INTEGER,
realAddressType InetAddressType,
realAddress InetAddress
}
realIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reference index for each real service."
::= { rsStatsEntry 1 }
realServerID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the real service."
::= { rsStatsEntry 2 }
realAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Real service IP address."
::= { rsStatsEntry 3 }
realPort OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the real service."
::= { rsStatsEntry 4 }
rsCntOfReq OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outstanding requests to the real service."
::= { rsStatsEntry 5 }
rsConnCnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of open connections to the real service."
::= { rsStatsEntry 6 }
rsTotalHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of requests sent to the real service."
::= { rsStatsEntry 7 }
realStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1),
down (0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The health status (up or down) of the real service."
::= { rsStatsEntry 8 }
realAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of realAddress."
::= { rsStatsEntry 9 }
realAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Real service IP address."
::= { rsStatsEntry 10 }
vsStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF VsStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A statistics table for virtual service."
::= { virtualStats 1 }
vsStatsEntry OBJECT-TYPE
SYNTAX VsStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A vsStatsTable entry containing the statistics of one virtual service."
INDEX { virtualIndex }
::= { vsStatsTable 1 }
VsStatsEntry ::= SEQUENCE {
virtualIndex Integer32,
virtServerID DisplayString,
virtualAddr IpAddress,
virtualPort INTEGER,
vsURLHits Integer32,
vsHostnameHits Integer32,
vsPerstntCookieHits Integer32,
vsQosCookieHits Integer32,
vsDefaultHits Integer32,
vsPerstntURLHits Integer32,
vsStaticHits Integer32,
vsQosNetworkHits Integer32,
vsQosURLHits Integer32,
vsBackupHits Integer32,
vsCacheHits Integer32,
vsRegexHits Integer32,
vsRCookieHits Integer32,
vsICookieHits Integer32,
vsConnCnt Integer32,
virtualAddressType InetAddressType,
virtualAddress InetAddress,
vsQosClientPortHits Integer32,
vsQosBodyHits Integer32,
vsHeaderHits Integer32,
vsHashURLHits Integer32,
vsRedirectHits Integer32
}
virtualIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reference index for each virtual service."
::= { vsStatsEntry 1 }
virtServerID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the virtual service."
::= { vsStatsEntry 2 }
virtualAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address of the virtual service."
::= { vsStatsEntry 3 }
virtualPort OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port number of the virtual service."
::= { vsStatsEntry 4 }
vsURLHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of QoS URL policy hits for the virtual service."
::= { vsStatsEntry 5 }
vsHostnameHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of QoS Hostname policy hits for the virtual service."
::= { vsStatsEntry 6 }
vsPerstntCookieHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Persistent Cookie policy hits for the virtual service."
::= { vsStatsEntry 7 }
vsQosCookieHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of QoS Cookie hits for the virtual service."
::= { vsStatsEntry 8 }
vsDefaultHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Default policy hits for the virtual service."
::= { vsStatsEntry 9 }
vsPerstntURLHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Persistent URL policy hits for the virtual service."
::= { vsStatsEntry 10 }
vsStaticHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Static policy hits for the virtual service."
::= { vsStatsEntry 11 }
vsQosNetworkHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of QoS Network policy hits for the virtual service."
::= { vsStatsEntry 12 }
vsQosURLHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of QoS URL policy hits for the virtual service."
::= { vsStatsEntry 13 }
vsBackupHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Backup policy hits for the virtual service."
::= { vsStatsEntry 14 }
vsCacheHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Cache hits for the virtual service."
::= { vsStatsEntry 15 }
vsRegexHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Regex policy hits for the virtual service."
::= { vsStatsEntry 16 }
vsRCookieHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Rewrite Cookie policy hits for the virtual service."
::= { vsStatsEntry 17 }
vsICookieHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Insert Cookie policy hits for the virtual service."
::= { vsStatsEntry 18 }
vsConnCnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of open connections to the virtual service."
::= { vsStatsEntry 19 }
virtualAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of virtualAddress."
::= { vsStatsEntry 20 }
virtualAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address of the virtual service."
::= { vsStatsEntry 21 }
vsQosClientPortHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of QoS Client Port policy hits for the virtual service."
::= { vsStatsEntry 22 }
vsQosBodyHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of QoS Body policy hits for the virtual service."
::= { vsStatsEntry 23 }
vsHeaderHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Header policy hits for the virtual service."
::= { vsStatsEntry 24 }
vsHashURLHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Hash URL policy hits for the virtual service."
::= { vsStatsEntry 25 }
vsRedirectHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Redirect policy hits for the virtual service."
::= { vsStatsEntry 26 }
gpStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A statistics table of the group."
::= { groupStats 1 }
gpStatsEntry OBJECT-TYPE
SYNTAX GpStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A gpStatsTable entry containing the statistics of one group."
INDEX { groupIndex }
::= { gpStatsTable 1 }
GpStatsEntry ::= SEQUENCE {
groupIndex Integer32,
groupID DisplayString,
gpTotalHits Integer32
}
groupIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reference index for each group."
::= { gpStatsEntry 1 }
groupID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the group."
::= { gpStatsEntry 2 }
gpTotalHits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total hits for the group."
::= { gpStatsEntry 3 }
---
--- The information of ArrayNetworks's Health Check MIB.
---
healthCheck OBJECT IDENTIFIER ::= { arrayNetworks 27 }
hcStats OBJECT IDENTIFIER ::= { healthCheck 1 }
--hcGeneral OBJECT IDENTIFIER ::= { healthCheck 2 }
hcRSCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of real services being checked."
::= { hcStats 1 }
hcStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HcStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Health Check statistics table."
::= { hcStats 2 }
hcStatsEntry OBJECT-TYPE
SYNTAX HcStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A hcStatsTable entry containing health check statistics for one real service."
INDEX { hcIndex }
::= { hcStatsTable 1 }
HcStatsEntry ::= SEQUENCE {
hcIndex Integer32,
hcName DisplayString,
hcAddr IpAddress,
hcPort INTEGER,
hcStatus INTEGER,
hcCause DisplayString,
hcNumDowns Integer32,
hcNumUps Integer32,
hcConnAttempt Integer32,
hcConnSuccess Integer32,
hcConnFail Integer32,
hcAddressType InetAddressType,
hcAddress InetAddress
}
hcIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reference index for each real service being checked."
::= { hcStatsEntry 1 }
hcName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Real service name."
::= { hcStatsEntry 2 }
hcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Health Check IP address."
::= { hcStatsEntry 3 }
hcPort OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Health Check port."
::= { hcStatsEntry 4 }
hcStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1),
down (0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status (UP/DOWN) of the health check."
::= { hcStatsEntry 5 }
hcCause OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason why the health check is being marked UP/DOWN."
::= { hcStatsEntry 6 }
hcNumDowns OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the health check is down."
::= { hcStatsEntry 7 }
hcNumUps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the health check is up."
::= { hcStatsEntry 8 }
hcConnAttempt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of connections attempted."
::= { hcStatsEntry 9 }
hcConnSuccess OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of successful connections."
::= { hcStatsEntry 10 }
hcConnFail OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of connection failures."
::= { hcStatsEntry 11 }
hcAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of hcAddress."
::= { hcStatsEntry 12 }
hcAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Health Check IP address."
::= { hcStatsEntry 13 }
--- End of Health Check MIBS
---
--- ArrayNetworks Compression Statistics MIB
---
compression OBJECT IDENTIFIER ::= { arrayNetworks 28 }
totalBytesRcvd OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of bytes received."
::= { compression 1 }
totalBytesSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of bytes sent."
::= { compression 2 }
rcvdBytesPerSec OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes received per second."
::= { compression 3 }
sentBytesPerSec OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes sent per second."
::= { compression 4 }
peakRcvdBytesPerSec OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak received bytes per second"
::= { compression 5 }
peakSentBytesPerSec OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak sent bytes per second"
::= { compression 6 }
activeTransac OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of currently active transactions"
::= { compression 7 }
--- End of ArrayNetworks Compression Statistics MIB
---
--- ArrayNetworks performance Statistics MIB
---
memory OBJECT IDENTIFIER ::= { arrayNetworks 4 }
sysMemory OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Curren system total available memory"
::= { memory 1 }
sysMemoryUtilization OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current percentage of Network memory utilization"
::= { memory 2 }
sysSwapUsed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently used swap space in MB"
::= { memory 3 }
sysSwapCapacity OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current swap space usage"
::= { memory 4 }
--- End of ArrayNetworks System memory MIB
---
--- ArrayNetworks performance Statistics MIB
---
performance OBJECT IDENTIFIER ::= { arrayNetworks 30 }
cpuUtilization OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current percentage of CPU utilization"
::= { performance 1 }
connectionsPerSec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of connections per second"
::= { performance 2 }
requestsPerSec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of requests per second"
::= { performance 3 }
--- End of ArrayNetworks performance Statistics MIB
---
--- ArrayNetworks monitor Statistics MIB
---
monitor OBJECT IDENTIFIER ::= { arrayNetworks 32 }
cputemp OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..511))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"current cpu temprature of cpu and sys"
::= { monitor 1 }
fanspeed OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..1023))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"current fan speed"
::= { monitor 2 }
powerstate OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
one-of-the-power-supply-modules-has-failed(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"current dual power supply state (0 (ok),1(error))"
::= { monitor 3 }
--- End of ArrayNetworks monitor Statistics MIB
--- ArrayNetworks Sdns Statistics MIB
---
sdns OBJECT IDENTIFIER ::= { arrayNetworks 31 }
totalReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total DNS requests."
::= { sdns 1 }
totalSucc OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total successful DNS resolvings."
::= { sdns 2 }
totalFail OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total failed DNS resolvings."
::= { sdns 3 }
reqLastSec OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total DNS requests in the last second."
::= { sdns 4 }
succLastSec OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total successful DNS resolvings in the last second."
::= { sdns 5 }
failLastSec OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total failed DNS resolvings in the last second."
::= { sdns 6 }
reqPeakSec OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak DNS requests in a second."
::= { sdns 7 }
succPeakSec OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak successful DNS resolvings in a second."
::= { sdns 8 }
reqLastMin OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total DNS requests in the last minute."
::= { sdns 9 }
succLastMin OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total successful DNS resolvings in the last minute."
::= { sdns 10 }
failLastMin OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total failed DNS resolvings in the last minute."
::= { sdns 11 }
reqPeakMin OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak DNS requests in a minute."
::= { sdns 12 }
succPeakMin OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak successful DNS resolvings in a minute."
::= { sdns 13 }
reqLastHour OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total DNS requests in the last hour."
::= { sdns 14 }
succLastHour OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total successful DNS resolvings in the last hour."
::= { sdns 15 }
failLastHour OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total failed DNS resolvings in the last hour."
::= { sdns 16 }
reqPeakHour OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak DNS requests in an hour."
::= { sdns 17 }
succPeakHour OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak successful DNS resolvings in an hour."
::= { sdns 18 }
reqLastDay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total DNS requests in the last day."
::= { sdns 19 }
succLastDay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total successful DNS resolvings in the last day."
::= { sdns 20 }
failLastDay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total failed DNS resolvings in the last day."
::= { sdns 21 }
reqPeakDay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak DNS requests in a day."
::= { sdns 22 }
succPeakDay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak successful DNS resolvings in a day."
::= { sdns 23 }
reqLastSec5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total DNS requests in the last 5 seconds."
::= { sdns 24 }
succLastSec5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total successful DNS resolvings in the last 5 seconds."
::= { sdns 25 }
failLastSec5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total failed DNS resolvings in the last 5 seconds."
::= { sdns 26 }
reqPeakSec5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak DNS requests in 5 seconds."
::= { sdns 27 }
succPeakSec5 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak successful DNS resolvings in 5 seconds."
::= { sdns 28 }
--- End of ArrayNetworks Sdns Statistics MIB
---
--- The information of arrayNetworks' Virtual Router Redundancy Protocol MIB
vrrp OBJECT IDENTIFIER ::= { arrayNetworks 18 }
clusterVrrp OBJECT IDENTIFIER ::= { vrrp 1 }
-- vrrpStatistics OBJECT IDENTIFIER ::= { caVrrp 2 }
maxCluster OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current maximum possible number of entries in the vrrpTable,
which is 255 * (number of interfaces for which a cluster is
defined). 255 is the max number of VIPs in a cluster."
::= { clusterVrrp 1 }
clusterNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current number of entries in the vrrpTable."
::= { clusterVrrp 2 }
vrrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF VrrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing clustering configuration"
::= { clusterVrrp 3 }
vrrpEntry OBJECT-TYPE
SYNTAX VrrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the vrrpTable. Each entry represents a cluster VIP
and not the cluster itself. If a cluster has n VIPs, then there
will be n entries for the cluster in the vrrpTable (0 <= n <= 255).
All the entries in the vrrpTable belonging to a single cluster
will have the same values for all the fields except
clusterVirIndex and clusterVirAddr"
INDEX { clusterVirIndex }
::= { vrrpTable 1 }
VrrpEntry ::= SEQUENCE {
clusterVirIndex Integer32,
clusterId Integer32,
clusterVirState INTEGER,
clusterVirIfname DisplayString,
clusterVirAddr IpAddress,
clusterVirAuthType INTEGER,
clusterVirAuthPasswd DisplayString,
clusterVirPreempt INTEGER,
clusterVirInterval Integer32,
clusterVirPriority Integer32,
clusterVirAddressType InetAddressType,
clusterVirAddress InetAddress
}
clusterVirIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cluster virtual table index"
::= { vrrpEntry 1 }
clusterId OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cluster identifier"
::= { vrrpEntry 2 }
clusterVirState OBJECT-TYPE
SYNTAX INTEGER {
incomplete (0),
reserverd (1),
init (2),
backup (3),
master (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the cluster"
::= { vrrpEntry 3 }
clusterVirIfname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface name on which the cluster is defined"
::= { vrrpEntry 4 }
clusterVirAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A virtual ip address (VIP) in the cluster"
::= { vrrpEntry 5 }
clusterVirAuthType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
simple-text-password(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of authentication being used.
none(0) - no authentication
simple-text-password(1) - use password specified in cluster
virtual for authentication."
DEFVAL { none }
::= { vrrpEntry 6 }
clusterVirAuthPasswd OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The password for authentication."
::= { vrrpEntry 7 }
clusterVirPreempt OBJECT-TYPE
SYNTAX INTEGER {
false (0),
true (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is for controling whether a higher priority Backup
VRRP virtual preempts a low priority Master."
DEFVAL { true }
::= { vrrpEntry 8 }
clusterVirInterval OBJECT-TYPE
SYNTAX Integer32 (3..60)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VRRP advertisement interval"
DEFVAL { 5 }
::= { vrrpEntry 9 }
clusterVirPriority OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Priority of the local node in the cluster"
DEFVAL { 100 }
::= { vrrpEntry 10 }
clusterVirAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of clusterVirAddress."
::= { vrrpEntry 11 }
clusterVirAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A virtual ip address (VIP) in the cluster"
::= { vrrpEntry 12 }
---
--- The information of arrayNetworks' Secure Sockets Layer MIB
sslMIB OBJECT IDENTIFIER ::= { arrayNetworks 20 }
sslGeneral OBJECT IDENTIFIER ::= { sslMIB 1 }
sslStats OBJECT IDENTIFIER ::= { sslMIB 2 }
vhostNum OBJECT-TYPE
SYNTAX Integer32(1..128)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of SSL hosts currently configured."
::= { sslGeneral 2 }
totalOpenSSLConns OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of open SSL connections (all SSL hosts)"
::= { sslStats 1 }
totalAcceptedConns OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of accepted SSL connections (all SSL hosts)"
::= { sslStats 2 }
totalRequestedConns OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of requested SSL connections (all SSL hosts)"
::= { sslStats 3 }
sslTable OBJECT-TYPE
SYNTAX SEQUENCE OF SslEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SSL host statistics table"
::= { sslStats 4 }
sslEntry OBJECT-TYPE
SYNTAX SslEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"sslTable entry for one SSL host"
INDEX { sslIndex }
::= { sslTable 1 }
SslEntry ::= SEQUENCE {
sslIndex Integer32,
vhostName DisplayString,
openSSLConns Integer32,
acceptedConns Integer32,
requestedConns Integer32,
resumedSess Integer32,
resumableSess Integer32,
missSess Integer32,
connsPerSec Integer32
}
sslIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SSL table index "
::= { sslEntry 1 }
vhostName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the SSL host"
::= { sslEntry 2 }
openSSLConns OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Open SSL connections for SSL hostName"
::= { sslEntry 3 }
acceptedConns OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of accepted SSL connections for SSL hostName"
::= { sslEntry 4 }
requestedConns OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of requested SSL connections for SSL hostName"
::= { sslEntry 5 }
resumedSess OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of resumed SSL sessions for SSL hostName"
::= { sslEntry 6 }
resumableSess OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of resumable SSL sessions for SSL hostName"
::= { sslEntry 7 }
missSess OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of SSL session misses for SSL hostName"
::= { sslEntry 8 }
connsPerSec OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of SSL connections established per second"
::= { sslEntry 9 }
---
--- The information of arrayNetworks' Syslog Message MIB File
caSyslog OBJECT IDENTIFIER ::= { arrayNetworks 24 }
logBasic OBJECT IDENTIFIER ::= { caSyslog 1 }
logHistory OBJECT IDENTIFIER ::= { caSyslog 2 }
caSyslogTrap OBJECT IDENTIFIER ::= { caSyslog 3 }
-- Textual Conventions
SyslogSeverity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The severity of a syslog message. The enumeration
values are equal to the values that syslog uses + 1.
For example, with syslog, emergency=0."
SYNTAX INTEGER {
emergency(0),
alert(1),
critical(2),
error(3),
warning(4),
notice(5),
info(6),
debug(7)
}
-- Basic syslog objects
logNotificationsSent OBJECT-TYPE
SYNTAX Counter32
UNITS "notifications"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of syslog notifications that
have been sent. This number may include notifications
that were prevented from being transmitted due to
reasons such as resource limitations and/or
non-connectivity. If one is receiving notifications,
one can periodically poll this object to determine if
any notifications were missed. If so, a poll of the
logHistoryTable might be appropriate."
::= { logBasic 1 }
logNotificationsEnabled OBJECT-TYPE
SYNTAX INTEGER
{
enable (1),
disable (0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether logMessageGenerated notifications
will or will not be sent when a syslog message is
generated by the device. Disabling notifications
does not prevent syslog messages from being added
to the logHistoryTable."
DEFVAL { disable }
::= { logBasic 2 }
logMaxSeverity OBJECT-TYPE
SYNTAX SyslogSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates which syslog severity levels will be
processed. Any syslog message with a severity value
greater than this value will be ignored by the agent.
note: severity numeric values increase as their
severity decreases, e.g. error(3) is more severe than
debug(7)."
DEFVAL { warning }
::= { logBasic 3 }
-- Syslog message history table
logHistTableMaxLength OBJECT-TYPE
SYNTAX Integer32 (0..500)
UNITS "entries"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upper limit on the number of entries that the
logHistoryTable may contain. A value of 0 will
prevent any history from being retained. When this
table is full, the oldest entry will be deleted and
a new one will be created."
DEFVAL { 1 }
::= { logHistory 1 }
logHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF LogHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of syslog messages generated by this device.
All 'interesting' syslog messages (i.e. severity <=
logMaxSeverity) are entered into this table."
::= { logHistory 2 }
logHistoryEntry OBJECT-TYPE
SYNTAX LogHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A syslog message that was previously generated by this
device. Each entry is indexed by a message index."
INDEX { index }
::= { logHistoryTable 1 }
LogHistoryEntry ::= SEQUENCE {
index Integer32,
severity SyslogSeverity,
msgText DisplayString
}
index OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A monotonically increasing integer for the sole
purpose of indexing messages. When it reaches the
maximum value the agent flushes the table and wraps
the value back to 1."
::= { logHistoryEntry 1 }
severity OBJECT-TYPE
SYNTAX SyslogSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The severity of the message."
::= { logHistoryEntry 2 }
msgText OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The text of the message. If the text of the message
exceeds 255 bytes, the message will be truncated to
254 bytes and a '*' character will be appended,
indicating that the message has been truncated."
::= { logHistoryEntry 3 }
-- notifications
syslogTrap NOTIFICATION-TYPE
OBJECTS { severity,
msgText
}
STATUS current
DESCRIPTION
"When a syslogTrap message is generated by the device a
syslogTrap notification is sent. The
sending of these notifications can be enabled/disabled
via the logNotificationsEnabled object."
::= { caSyslogTrap 1 }
---
--- The statistics of arrayNetworks' VIP Group MIB
vipStats OBJECT IDENTIFIER ::= { arrayNetworks 22 }
vipStatus OBJECT-TYPE
SYNTAX INTEGER {
on (1),
off (0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of VIP statistics gathering - on or off"
::= { vipStats 1 }
hostName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hostname that the VIP is representing (hostname of the appliance)"
::= { vipStats 2 }
currentTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current time in the format of MM/DD/YY HH:MM "
::= { vipStats 3 }
totalIPPktsIn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of ip packets received on all VIPs"
::= { vipStats 4 }
totalIPPktsOut OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of ip packets sent out on all VIPs"
::= { vipStats 5 }
totalIPBytesIn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of IP bytes received on all VIPs"
::= { vipStats 6 }
totalIPBytesOut OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of IP bytes sent out on all VIPs"
::= { vipStats 7 }
ipStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of VIP statistics."
::= { vipStats 8 }
ipStatsEntry OBJECT-TYPE
SYNTAX IpStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the ipStatsTable is created
for each VIP."
INDEX {
ipAddrType, ipAddr
}
::= { ipStatsTable 1 }
IpStatsEntry ::=
SEQUENCE {
ipIndex Integer32,
ipAddress IpAddress,
ipPktsIn Counter64,
ipBytesIn Counter64,
ipPktsOut Counter64,
ipBytesOut Counter64,
startTime DisplayString,
ipAddrType InetAddressType,
ipAddr InetAddress
}
ipIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VIP statistics table index"
::= { ipStatsEntry 1 }
ipAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VIP address"
::= { ipStatsEntry 2 }
ipPktsIn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of IP packets received on the VIP"
::= { ipStatsEntry 3 }
ipBytesIn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of bytes received on the VIP"
::= { ipStatsEntry 4 }
ipPktsOut OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets sent out on the VIP"
::= { ipStatsEntry 5 }
ipBytesOut OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of bytes sent out on the VIP"
::= { ipStatsEntry 6 }
startTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time statistics gathering was enabled for the VIP"
::= { ipStatsEntry 7 }
ipAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of ipAddress"
::= { ipStatsEntry 8 }
ipAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VIP address"
::= { ipStatsEntry 9 }
-- Implementation of the Interfaces group is mandatory for
-- all systems.
ifTraffic OBJECT IDENTIFIER ::= { arrayNetworks 23 }
infNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of network interfaces present on this system."
::= { ifTraffic 1 }
infTotalInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total accumulated number of octets received on all the
active interfaces (loopback is not included)"
::= { ifTraffic 2 }
infTotalOutOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total accumulated number of octets transmitted out on
all the active interfaces (loopback is not included)"
::= { ifTraffic 3 }
infTable OBJECT-TYPE
SYNTAX SEQUENCE OF InfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of interface statistics. The number of
entries is given by the value of infNumber."
::= { ifTraffic 4 }
infEntry OBJECT-TYPE
SYNTAX InfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An infTable entry for one interface"
INDEX { infIndex }
::= { infTable 1 }
InfEntry ::=
SEQUENCE {
infIndex
INTEGER,
infDescr
DisplayString,
infOperStatus
INTEGER,
infAddress
IpAddress,
infInOctets
Counter64,
infInUcastPkts
Counter64,
infInNUcastPkts
Counter64,
infInDiscards
Counter64,
infInErrors
Counter64,
infInUnknownProtos
Counter64,
infOutOctets
Counter64,
infOutUcastPkts
Counter64,
infOutNUcastPkts
Counter64,
infOutErrors
Counter64,
infIpv4AddressType
InetAddressType,
infIpv4Address
InetAddress,
infIpv6AddressType
InetAddressType,
infIpv6Address
InetAddress,
infInBandwidth
Counter64,
infOutBandwidth
Counter64,
infInMcastPkts
Counter64,
infOutMcastPkts
Counter64,
infInBcastPkts
Counter64,
infOutBcastPkts
Counter64
}
infIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each interface. Its value
ranges between 1 and the value of infNumber. The
value for each interface must remain constant at
least from one re-initialization of the entity's
network management system to the next re-
initialization."
::= { infEntry 1 }
infDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the interface"
::= { infEntry 2 }
infOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2) -- plug off the cable and delete interface address
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the interface (up or down)."
::= { infEntry 3 }
infAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface's IP address"
::= { infEntry 4 }
infInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received on the interface,
including framing characters."
::= { infEntry 5 }
infInUcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets, delivered by this sub-layer to a
higher (sub-)layer, which were not addressed to a multicast
or broadcast address at this sub-layer."
::= { infEntry 6 }
infInNUcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of packets, delivered by this sub-layer to a
higher (sub-)layer, which were addressed to a multicast or
broadcast address at this sub-layer."
::= { infEntry 7 }
infInDiscards OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inbound packets which were chosen to be
discarded even though no errors had been detected to prevent
their being deliverable to a higher-layer protocol. One
possible reason for discarding such a packet could be to
free up buffer space."
::= { infEntry 8 }
infInErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For packet-oriented interfaces, the number of inbound
packets that contained errors preventing them from being
deliverable to a higher-layer protocol. For character-
oriented or fixed-length interfaces, the number of inbound
transmission units that contained errors preventing them
from being deliverable to a higher-layer protocol."
::= { infEntry 9 }
infInUnknownProtos OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For packet-oriented interfaces, the number of packets
received via the interface which were discarded because of
an unknown or unsupported protocol. For character-oriented
or fixed-length interfaces that support protocol
multiplexing the number of transmission units received via
the interface which were discarded because of an unknown or
unsupported protocol. For any interface that does not
support protocol multiplexing, this counter will always be
0."
::= { infEntry 10 }
infOutOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted out of the
interface, including framing characters."
::= { infEntry 11 }
infOutUcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets that higher-level protocols
requested be transmitted, and which were not addressed to a
multicast or broadcast address at this sub-layer, including
those that were discarded or not sent."
::= { infEntry 12 }
infOutNUcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The total number of packets that higher-level protocols
requested be transmitted, and which were addressed to a
multicast or broadcast address at this sub-layer, including
those that were discarded or not sent."
::= { infEntry 13 }
infOutErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For packet-oriented interfaces, the number of outbound
packets that could not be transmitted because of errors.
For character-oriented or fixed-length interfaces, the
number of outbound transmission units that could not be
transmitted because of errors."
::= { infEntry 14 }
infIpv4AddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of infIpv4Address(should always ipv4)."
::= { infEntry 15 }
infIpv4Address OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface's IPv4 address"
::= { infEntry 16 }
infIpv6AddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of infIpv6Address(should always ipv6)."
::= { infEntry 17 }
infIpv6Address OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface's IPv6 address"
::= { infEntry 18 }
infInBandwidth OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Inside throughput(bits/second) of the last 5 minutes for
the interfaces."
::= { infEntry 19 }
infOutBandwidth OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Outside throughput(bits/second) of the last 5 minutes for
the interfaces."
::= { infEntry 20 }
infInMcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets, delivered by this sub-layer to a
higher (sub-)layer, which were addressed to a multicast
address at this sub-layer."
::= { infEntry 21 }
infOutMcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets that higher-level protocols
requested be transmitted, and which were addressed to a
multicast address at this sub-layer, including those that
were discarded or not sent."
::= { infEntry 22 }
infInBcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets, delivered by this sub-layer to a
higher (sub-)layer, which were addressed to a broadcast
address at this sub-layer."
::= { infEntry 23 }
infOutBcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets that higher-level protocols
requested be transmitted, and which were addressed to a
broadcast address at this sub-layer, including those that
were discarded or not sent."
::= { infEntry 24 }
-- Implementation of the ClickTCP is mandatory for all systems.
clickTcp OBJECT IDENTIFIER ::= { arrayNetworks 25 }
ctcpActiveOpens OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times ClickTCP connections have made a direct
transition to the SYN-SENT state from the CLOSED state."
::= { clickTcp 1 }
ctcpPassiveOpens OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times ClickTCP connections have made a direct
transition to the SYN-RCVD state from the LISTEN state."
::= { clickTcp 2 }
ctcpAttemptFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times ClickTCP connections have made a direct
transition to the CLOSED state from either the SYN-SENT
state or the SYN-RCVD state, plus the number of times TCP
connections have made a direct transition to the LISTEN
state from the SYN-RCVD state."
::= { clickTcp 3 }
ctcpEstabResets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times ClickTCP connections have made a direct
transition to the CLOSED state from either the ESTABLISHED
state or the CLOSE-WAIT state."
::= { clickTcp 4 }
ctcpCurrEstab OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ClickTCP connections for which the current state
is either ESTABLISHED or CLOSE-WAIT."
::= { clickTcp 5 }
ctcpInSegs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ClickTCP segments received, including those
received in error. This count includes segments received on
currently established connections."
::= { clickTcp 6 }
ctcpOutSegs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ClickTCP segments sent, including those on
current connections but excluding those containing only
retransmitted octets."
::= { clickTcp 7 }
ctcpRetransSegs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of segments retransmitted - that is, the
number of ClickTCP segments transmitted containing one or more
previously transmitted octets."
::= { clickTcp 8 }
ctcpInErrs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of segments received in error (e.g., bad
ClickTCP checksums)."
::= { clickTcp 9 }
ctcpOutRsts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ClickTCP segments sent containing the RST flag."
::= { clickTcp 10 }
-- the ClickTCP Connection table
-- The ClickTCP connection table contains information about this
-- entity's existing ClickTCP connections.
ctcpConnTable OBJECT-TYPE
SYNTAX SEQUENCE OF CtcpConnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing ClickTCP connection-specific information."
::= { clickTcp 11 }
ctcpConnEntry OBJECT-TYPE
SYNTAX CtcpConnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row of the ctcpConnTable containing information
about a particular current TCP connection. Each row of this
table is transient, in that it ceases to exist when (or soon
after) the connection makes the transition to the CLOSED
state."
INDEX {
ctcpIndex
}
::= { ctcpConnTable 1 }
CtcpConnEntry ::= SEQUENCE {
ctcpIndex INTEGER,
ctcpConnState INTEGER,
ctcpConnLocalAddress IpAddress,
ctcpConnLocalPort INTEGER,
ctcpConnRemAddress IpAddress,
ctcpConnRemPort INTEGER,
ctcpConnLocalAddrType InetAddressType,
ctcpConnLocalAddr InetAddress,
ctcpConnRemAddrType InetAddressType,
ctcpConnRemAddr InetAddress
}
ctcpIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each clicktcp connection. "
::= { ctcpConnEntry 1 }
ctcpConnState OBJECT-TYPE
SYNTAX INTEGER {
closed(1),
listen(2),
synSent(3),
synReceived(4),
established(5),
finWait1(6),
finWait2(7),
closeWait(8),
lastAck(9),
closing(10),
timeWait(11),
deleteTCB(12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of this TCP connection."
::= { ctcpConnEntry 2 }
ctcpConnLocalAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local IP address for this TCP connection. In the case
of a connection in the listen state which is willing to
accept connections for any IP interface associated with the
node, the value 0.0.0.0 is used."
::= { ctcpConnEntry 3 }
ctcpConnLocalPort OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local port number for this TCP connection."
::= { ctcpConnEntry 4 }
ctcpConnRemAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote IP address for this TCP connection."
::= { ctcpConnEntry 5 }
ctcpConnRemPort OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote port number for this TCP connection."
::= { ctcpConnEntry 6 }
ctcpConnLocalAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of ctcpConnLocalAddress."
::= { ctcpConnEntry 7 }
ctcpConnLocalAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local IP address for this TCP connection. In the case
of a connection in the listen state which is willing to
accept connections for any IP interface associated with the
node, the value 0.0.0.0/:: is used."
::= { ctcpConnEntry 8 }
ctcpConnRemAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of ctcpConnRemAddress."
::= { ctcpConnEntry 9 }
ctcpConnRemAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remote IP address for this TCP connection."
::= { ctcpConnEntry 10 }
-- ArrayNetworks system information MIB
systemInfo OBJECT IDENTIFIER ::= { arrayNetworks 3 }
serialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Serial Number of the equipment"
::= { systemInfo 1 }
-- End of ArrayNetworks system information MIB
END
|