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
|
-- *****************************************************************
-- CISCO-SLB-HEALTH-MON-MIB.my: Server Load-Balancing(SLB) Health
-- Monitoring MIB
-- January 2006, Saifullah M.A.
--
-- Copyright (c) 2002, 2005, 2006, 2008 by cisco Systems Inc.
-- All rights reserved.
-- *****************************************************************
CISCO-SLB-HEALTH-MON-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Unsigned32,
Counter32,
Gauge32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
NOTIFICATION-GROUP,
OBJECT-GROUP
FROM SNMPv2-CONF
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
InetAddressType,
InetAddress,
InetPortNumber
FROM INET-ADDRESS-MIB
TimeInterval,
TEXTUAL-CONVENTION,
TruthValue,
DateAndTime,
RowStatus
FROM SNMPv2-TC
CiscoPort
FROM CISCO-TC
slbEntity,
SlbServerString,
slbServerFarmName
FROM CISCO-SLB-MIB
SlbUrlString,
SlbFunctionNameString,
cslbxServerProbes
FROM CISCO-SLB-EXT-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoSlbHealthMonMIB MODULE-IDENTITY
LAST-UPDATED "200806260000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
Customer Service
Postal: 170 W. Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-slb@cisco.com"
DESCRIPTION
"An extension to the CISCO-SLB-EXT-MIB for SLB
health monitoring probes.
SLB: Server Load Balancing. Server load balancing
provides for the balancing of packets and connections
arriving at the SLB device across a number of other
devices, such as real servers, firewalls, or caches.
A system containing an SLB device typically exhibits
higher performance, scalability, and reliability than
any of the devices being load balanced. An SLB device
determines how to handle incoming frames and
connections according to the contents of incoming data
and various configuration options. In determining how
to handle incoming data, an SLB device may examine the
data at any OSI layer, including Layer 7.
This MIB includes information on the health monitoring
probes that can be used for monitoring the health of
real servers. Health checking provides the ability of
the content switch to detect if a server is available
for load balancing. Health probes used for health
checking allow testing various application level
functionality. The active probes are sent at regular
intervals and the lack of a response can lead to a
specific server or and entire group of servers being
declared as not available.
Following probes are based on TCP:
http, https, smtp, telnet, ftp, tcp,
script, ldap, tacacs, sip, echo, finger.
Following probes are based on UDP:
tftp, udp, sip, echo,.
Acronyms and terms:
SLB Server Load Balancing
VIP Virtual Server IP address
NAT Network Address Translation
SF Serverfarm
FT Fault Tolerance
SSL Secure Sockets Layer
TLS Transport Layer Security
Server Farm : Contains cluster of Real Server
Real Server : Real Servers are physical devices
assigned to a server farm.
Real servers provide services that
are load balanced.
Health Probe : The mechanisms to monitor the health
of real servers or rservers.
Virtual IP : The IP through which the real server is
reached during load balancing.
Probe Instance : An instance of the probe identified by
cslbxProbeName. A probe instance is created
for every probe association.
For example: When a probe is associated with
a real server a probe instance is created
for that probe.
Probe Port : This mechanism introduces the capability
Inheritance for the probe instance to inherit the
virtual ip address port or the
the real server port (identified by
cshMonServerfarmRealServerPort) when the
probe port (identified by cslbxProbePort)
is not configured.
The precedence of inheritance is as follows
1. Probe's configured port
2. Real server port
3. Virtual ip address port
4. Probes default port identified by
cslbxProbePort.
Examples:
Scenario 1:
Probe's configured port = 100
Real server port = 200
Virtual ip address port = 300
Probe's default port = 80
Inherited port of the probe instance = 100
Scenario 2:
Probe's configured port = not configured
Real server port = 200
Virtual ip address port = 300
Probe's default port = 80
Inherited port of the probe instance = 200
Scenario 3:
Probe's configured port = not configured
Real server port = not configured
Virtual ip address port = 300
Probe's default port = 80
Inherited port of the probe instance = 300
Scenario 4:
Probe's configured port = not configured
Real server port = not configured
Virtual ip address port = not configured
Probe's default port = 80
Inherited port of the probe instance = 80
Scenario 5:
There can be scenarios wherein there may
be multiple inherited ports for a probe
instance.
There are configurations where multiple virtual
ip addresses with different ports share the
same probe instance and the probe has no
configured port or real server port attached.
In that case the shared probe instance has
multiple inherited ports. A typical scenario
might be
Probe's configured port = not configured
Real server port = not configured
Ports of the virtual ip addresses which
shares the probe instance = 300,400
Probe's default port = 80
Inherited port of the probe instance =
300,400"
REVISION "200806260000Z"
DESCRIPTION
"-Added CiscoProbeInheritedPortType TEXTUAL-CONVENTION.
-Deprecated cshMonSfarmRealProbeStatsTable.
-Added cshMonServerfarmRealProbeStatsTable.
-Added cshMonProbeTypeStatsTable.
-Added the following notifications
ciscoSlbHealthMonSocketOveruse
ciscoSlbHealthMonSocketNormaluse
-Added cshMonSocketOverusageCount notification object.
-Deprecated cshMonSfarmrealserverProbeStatsGroup OBJECT-GROUP.
-Deprecated ciscoSlbHealthMonMIBComplianceRev2 MODULE-COMPLIANCE.
-Added the following OBJECT-GROUP's
cshMonSfarmrealserverProbeStatsGroupRev1
cshMonProbeTypeStatsGroup
cshMonNotifObjectsGroup
-Added cshMonNotifGroup NOTIFICATION-GROUP.
-Added ciscoSlbHealthMonMIBComplianceRev3 MODULE-COMPLIANCE."
REVISION "200803110000Z"
DESCRIPTION
"- Added CiscoProbeHealthMonState TEXTUAL-CONVENTION.
- Added cslbxProbeState to the cslbxProbeCfgTable.
- Added cshMonSfarmRealProbeStatsTable.
- Deprecated cslbHealthMonServerProbesGroup object group.
- Deprecated ciscoSlbHealthMonMIBComplianceRev1 compliance
statement.
- Added cslbHealthMonServerProbesGroupRev1 OBJECT-GROUP.
- Added ciscoSlbHealthMonMIBComplianceRev2 MODULE-COMPLIANCE."
REVISION "200611140000Z"
DESCRIPTION
"- Added following object in cslbxProbeHTTPCfgTable
cslbxProbeHTTPSslTlsVersionSupported.
- Added 'all' enum in cslbxProbeHTTPCfgSslTlsVersion
object.
- Added 'rtspProbe' and 'snmpProbe' in SlbProbeType
TEXTUAL CONVENTION
- Added following group
cslbHealthMonHTTPSProbesGroupRev1.
- Added following in Compliance/Conformance
ciscoSlbHealthMonMIBComplianceRev1."
REVISION "200601180000Z"
DESCRIPTION
"Initial version of this MIB module.
SlbProbeType : New enums(value 10-20) added.
- Following tables were originally defined in CISCO-SLB-EXT-MIB
cslbxProbeCfgTable
cslbxDnsProbeIpTable
cslbxProbeHeaderCfgTable
cslbxProbeExpectStatusCfgTable
- Added following objects in cslbxProbeCfgTable
cslbxProbeDescription
cslbxProbeProtocolType
cslbxProbeRouteMethod
cslbxProbeUserName
cslbxProbePassword
cslbxProbePassCount
cslbxProbePriority
cslbxProbeConnTermination
cslbxProbeSocketReuse
cslbxProbeSendDataType
cslbxProbeSendData
- defined following tables
cslbxProbeHTTPCfgTable
cslbxProbeSIPCfgTable
cslbxProbeFTPCfgTable
cslbxProbeTFTPCfgTable
cslbxProbeIMAPCfgTable
- Added UNITS clause for the following objects
cslbxProbeReceiveTimeout
cslbxProbeTcpOpenTimeout."
::= { ciscoMgmt 508 }
-- *************************************************************
-- * *
-- * SLB-EXT - Probe Configuration Table *
-- * *
-- *************************************************************
cslbxProbeCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CslbxProbeCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The probing function monitors the health of
real servers. The SLB device actively probes
real servers to determine if they are healthy.
This table is for configuring the parameters
of probes."
::= { cslbxServerProbes 1 }
cslbxProbeCfgEntry OBJECT-TYPE
SYNTAX CslbxProbeCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry provides the basic configuration of a
probe of a particular name, served by a particular
SLB entity. This entry may be of any probe type."
INDEX {
slbEntity,
cslbxProbeName
}
::= { cslbxProbeCfgTable 1 }
CslbxProbeCfgEntry ::= SEQUENCE {
cslbxProbeName SlbServerString,
cslbxProbeType SlbProbeType,
cslbxProbeInterval TimeInterval,
cslbxProbeRetries Unsigned32,
cslbxProbeFailedInterval TimeInterval,
cslbxProbeReceiveTimeout TimeInterval,
cslbxProbeTcpOpenTimeout TimeInterval,
cslbxProbeAlternateDestAddrType InetAddressType,
cslbxProbeAlternateDestAddr InetAddress,
cslbxProbeDnsDomainName SnmpAdminString,
cslbxProbeHttpRequestMethod SnmpAdminString,
cslbxProbeHttpRequestUrl SlbUrlString,
cslbxProbeRowStatus RowStatus,
cslbxProbeScriptName SlbFunctionNameString,
cslbxProbeScriptArguments SnmpAdminString,
cslbxProbePort CiscoPort,
cslbxProbeDescription SnmpAdminString,
cslbxProbeRouteMethod INTEGER,
cslbxProbeProtocolType INTEGER,
cslbxProbePassCount Unsigned32,
cslbxProbePriority Unsigned32,
cslbxProbeUserName SnmpAdminString,
cslbxProbePassword SnmpAdminString,
cslbxProbeConnTermination INTEGER,
cslbxProbeSocketReuse TruthValue,
cslbxProbeSendDataType INTEGER,
cslbxProbeSendData SnmpAdminString,
cslbxProbeState TruthValue
}
cslbxProbeName OBJECT-TYPE
SYNTAX SlbServerString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the probe."
::= { cslbxProbeCfgEntry 1 }
cslbxProbeType OBJECT-TYPE
SYNTAX SlbProbeType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of probe."
::= { cslbxProbeCfgEntry 2 }
cslbxProbeInterval OBJECT-TYPE
SYNTAX TimeInterval
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Time between health checks. It is from the end of
previous check to the beginning of the next check."
DEFVAL { 12000 }
::= { cslbxProbeCfgEntry 3 }
cslbxProbeRetries OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of consecutive retries without a successful
probe before marking the real server as 'failed'."
DEFVAL { 3 }
::= { cslbxProbeCfgEntry 4 }
cslbxProbeFailedInterval OBJECT-TYPE
SYNTAX TimeInterval
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Time before retrying a 'failed' real
server to see if it has recovered yet."
DEFVAL { 30000 }
::= { cslbxProbeCfgEntry 5 }
cslbxProbeReceiveTimeout OBJECT-TYPE
SYNTAX TimeInterval
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Maximum time to wait for a reply from a real
server before considering this probe attempt
to have failed."
DEFVAL { 1000 }
::= { cslbxProbeCfgEntry 6 }
cslbxProbeTcpOpenTimeout OBJECT-TYPE
SYNTAX TimeInterval
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Maximum time to wait for a TCP SYN/ACK frame
from the real server. This entry is only valid
for probes employing TCP, such as SMTP and HTTP
probes."
DEFVAL { 1000 }
::= { cslbxProbeCfgEntry 7 }
cslbxProbeAlternateDestAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of address stored in
cslbxProbeAlternateDestAddr."
DEFVAL { ipv4 }
::= { cslbxProbeCfgEntry 8 }
cslbxProbeAlternateDestAddr OBJECT-TYPE
SYNTAX InetAddress (SIZE (0..20))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The alternative destination IP address to be used with
the probing packet. Probe frames are normally sent to
a real server IP address. If the setting is not
'0.0.0.0', probe frames are sent to the IP address
given by this object. This entry is only valid with
the following probes(cslbxProbeType value):
icmpProbe, tcpProbe, dnsProbe,
httpProbe, ftpProbe, telnetProbe,
smtpProbe udpProbe, httpsProbe,
ldapProbe, popProbe, imapProbe,
radiusProbe, tacacsProbe, sipProbe,
tftpProbe, fingerProbe, echoProbe."
DEFVAL { ''H }
::= { cslbxProbeCfgEntry 9 }
cslbxProbeDnsDomainName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The domain name string use with the DNS probe. (Only
applicable to DNS probes.)"
::= { cslbxProbeCfgEntry 10 }
cslbxProbeHttpRequestMethod OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The request method type string to be used in the
HTTP probe packets. (Only applicable to HTTP
probes.)"
REFERENCE
"RFC 2616 Hypertext Transfer Protocol -- HTTP/1.1
Section 5.1.1."
DEFVAL { "get" }
::= { cslbxProbeCfgEntry 11 }
cslbxProbeHttpRequestUrl OBJECT-TYPE
SYNTAX SlbUrlString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The URI string in the HTTP request of HTTP probe
packets. (Only applicable to HTTP probes.)"
DEFVAL { "" }
::= { cslbxProbeCfgEntry 12 }
cslbxProbeRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status is used by a management station to
create or delete the row entry in cslbxProbeCfgTable
following the RowStatus textual convention."
::= { cslbxProbeCfgEntry 13 }
cslbxProbeScriptName OBJECT-TYPE
SYNTAX SlbFunctionNameString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the function to be executed. (Only
applicable to scriptedProbe type.)"
DEFVAL { ''H }
::= { cslbxProbeCfgEntry 14 }
cslbxProbeScriptArguments OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The argument parameters passed into the executable
script. (Only applicable to scriptedProbe type.)"
DEFVAL { ''H }
::= { cslbxProbeCfgEntry 15 }
cslbxProbePort OBJECT-TYPE
SYNTAX CiscoPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The port number to be used by the probe. The value
of zero indicates the probe will use the default
port number. The default port number can be 0 or
the default port of that particular probe. This
object is not applicable when cslbxProbeType is
'icmpProbe'."
DEFVAL { 0 }
::= { cslbxProbeCfgEntry 16 }
cslbxProbeDescription OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used for configuring the
description of the probe."
DEFVAL { "" }
::= { cslbxProbeCfgEntry 17 }
cslbxProbeRouteMethod OBJECT-TYPE
SYNTAX INTEGER {
other(1),
transparent(2),
routingTable(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies whether the probe destined
to IP address specified in cslbxProbeAlternateDestAddr
be routed using internal routing table or forced to use
the known mac-address of the real-server/gateway that
probe is associated with.
The value 'routingTable' specifies that address be
routed using internal routing table.
The value 'transparent' specifies that the
probe destined to cslbxProbeAlternateDestAddr
is routed using the ip address of the real server
or gateway this probe is associated with.
This object is applicable only if
cslbxProbeAlternateDestAddr is configured."
DEFVAL { transparent }
::= { cslbxProbeCfgEntry 18 }
cslbxProbeProtocolType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
tcp(2),
udp(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used for configuring the
transport layer protocol to send
probe messages.
The possible value(s) are :
other: values other than mentioned below.
This value can not be written.
tcp : TCP is used as transport
layer protocol.
udp : UDP is used as transport
layer protocol.
This object can be set for the entries with
following values of cslbxProbeType:
sipProbe,
echoProbe
For other probes, this object can not be written
and the value of this object is based on the
cslbxProbeType."
DEFVAL { tcp }
::= { cslbxProbeCfgEntry 19 }
cslbxProbePassCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the number of successful probe
responses that should be received before declaring
a failed real server as pass. This object is used in
conjunction with 'cslbxProbeFailedInterval'."
::= { cslbxProbeCfgEntry 20 }
cslbxProbePriority OBJECT-TYPE
SYNTAX Unsigned32 (0..255 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents the probe priority.
The priority value is in the decreasing order
of the actual priority, i.e., lower the value
higher the priority.
Probes associated with critical services can be
configured with highest priority such that the
results of these probes can be used to trigger
a state change in configuration."
DEFVAL { 2 }
::= { cslbxProbeCfgEntry 21 }
cslbxProbeUserName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents the user name required for
authentication. This object is applicable for
following value of 'cslbxProbeType' :
httpprobe, httpsProbe
telnetProbe, ftpProbe, ldapProbe,
imapProbe, popProbe,
radiusProbe, tacacsProbe."
::= { cslbxProbeCfgEntry 22 }
cslbxProbePassword OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents the password required for
authentication. This object is applicable for following
value of 'cslbxProbeType' :
httpprobe, httpsProbe
telnetProbe, ftpProbe, ldapProbe,
imapProbe, popProbe,
radiusProbe, tacacsProbe.
This object returns zero length octet string when read."
::= { cslbxProbeCfgEntry 23 }
cslbxProbeConnTermination OBJECT-TYPE
SYNTAX INTEGER {
graceful(1),
forced(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies how the connections need to
be terminated. The possible value(s) are :
graceful : follow graceful handshake for
terminating connections.
forced : send RST to terminate connections.
This object is applicable only for TCP based probes."
DEFVAL { forced }
::= { cslbxProbeCfgEntry 24 }
cslbxProbeSocketReuse OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies whether to reuse the socket or not
for the connection oriented probes. If set to 'true'
same socket is re-used for multiple probes.
If set to 'false' new socket will be created.
This object is applicable only for TCP based probes."
::= { cslbxProbeCfgEntry 25 }
cslbxProbeSendDataType OBJECT-TYPE
SYNTAX INTEGER {
ascii(1),
binary(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents the data to be sent
for the appropriate probes.
The possible value(s) are:
ascii : ASCII data
binary : binary data.
This object is used in conjunction with object
'cslbxProbeSendData'."
DEFVAL { ascii }
::= { cslbxProbeCfgEntry 26 }
cslbxProbeSendData OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents the data to be sent
for the appropriate probes. This object
is applicable for following value(s) of
cslbxProbeType :
echoProbe
fingerProbe
sipProbe
tcpProbe
udpProbe."
::= { cslbxProbeCfgEntry 27 }
cslbxProbeState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the state of the probe.
When the probe is associated with a real server or server
farm it will be active which is represented by
value 'true'. When the probe is active and if the
real server is administratively put into in-service, then
the real server health monitoring will be started.
When the probe is not associated with a real
server or server farm it will be inactive which is represented
by value 'false', so no health monitoring will be
performed."
DEFVAL { false }
::= { cslbxProbeCfgEntry 28 }
-- *************************************************************
-- * *
-- * SLB-EXT - DNS Probe Expected IP Configuration Table *
-- * *
-- *************************************************************
cslbxDnsProbeIpTable OBJECT-TYPE
SYNTAX SEQUENCE OF CslbxDnsProbeIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The probing function monitors the health of
real servers. The SLB device actively probes
real servers to determine if they are healthy.
This table is for configuring the parameters
of DNS probes. In a DNS probe, resolution of a
specific domain name is requested, and the
resulting IP address must match one of a list of
'expected IP addresses' configured for that
probe. This table stores the list of expected IP
addresses for each DNS probe."
::= { cslbxServerProbes 2 }
cslbxDnsProbeIpEntry OBJECT-TYPE
SYNTAX CslbxDnsProbeIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP address in this entry is a valid response
to a request for resolution of the domain name
associated with the DNS probe in this entry."
INDEX {
slbEntity,
cslbxDnsProbeIpProbeName,
cslbxDnsProbeIpAddressType,
cslbxDnsProbeIpAddress
}
::= { cslbxDnsProbeIpTable 1 }
CslbxDnsProbeIpEntry ::= SEQUENCE {
cslbxDnsProbeIpProbeName SlbServerString,
cslbxDnsProbeIpAddressType InetAddressType,
cslbxDnsProbeIpAddress InetAddress,
cslbxDnsProbeIpRowStatus RowStatus
}
cslbxDnsProbeIpProbeName OBJECT-TYPE
SYNTAX SlbServerString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the DNS probe."
::= { cslbxDnsProbeIpEntry 1 }
cslbxDnsProbeIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of address stored in
cslbxDnsProbeIpAddress."
::= { cslbxDnsProbeIpEntry 2 }
cslbxDnsProbeIpAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE (1..20))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP address that may be expected in response
to a DNS probe from a 'healthy' real DNS server."
::= { cslbxDnsProbeIpEntry 3 }
cslbxDnsProbeIpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object used by a management station to create
or delete the row entry in cslbxDnsProbeIpTable
following the RowStatus textual convention."
::= { cslbxDnsProbeIpEntry 4 }
-- *************************************************************
-- * *
-- * SLB-EXT - HTTP Probe Header Table *
-- * *
-- *************************************************************
cslbxProbeHeaderCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CslbxProbeHeaderCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The probing function monitors the health of
real servers. The SLB device actively probes
real servers to determine if they are healthy.
This table is for configuring the parameters
of HTTP probes. In particular, each HTTP probe
request may be sent with a number of fixed HTTP
headers. This table defines such fixed HTTP
headers sent with HTTP probes."
::= { cslbxServerProbes 3 }
cslbxProbeHeaderCfgEntry OBJECT-TYPE
SYNTAX CslbxProbeHeaderCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry defines the HTTP header value
of a particular HTTP header name sent with a
particular HTTP probe, served by a particular SLB
entity."
INDEX {
slbEntity,
cslbxProbeHeaderProbeName,
cslbxProbeHeaderFieldName
}
::= { cslbxProbeHeaderCfgTable 1 }
CslbxProbeHeaderCfgEntry ::= SEQUENCE {
cslbxProbeHeaderProbeName SlbServerString,
cslbxProbeHeaderFieldName SnmpAdminString,
cslbxProbeHeaderFieldValue SnmpAdminString,
cslbxProbeHeaderRowStatus RowStatus
}
cslbxProbeHeaderProbeName OBJECT-TYPE
SYNTAX SlbServerString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the HTTP probe."
::= { cslbxProbeHeaderCfgEntry 1 }
cslbxProbeHeaderFieldName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An HTTP header of this name is transmitted in the
HTTP request sent by this probe."
::= { cslbxProbeHeaderCfgEntry 2 }
cslbxProbeHeaderFieldValue OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The HTTP header value associated with the HTTP header
name given by cslbxProbeHeaderFieldName."
::= { cslbxProbeHeaderCfgEntry 3 }
cslbxProbeHeaderRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object used by a management station to create
or delete the row entry in cslbxProbeHeaderTable
following the RowStatus textual convention."
::= { cslbxProbeHeaderCfgEntry 4 }
-- *************************************************************
-- * *
-- * SLB-EXT - Probe Expect Status Codes Configuration Table *
-- * *
-- *************************************************************
cslbxProbeExpectStatusCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CslbxProbeExpectStatusCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The probing function monitors the health of
real servers. The SLB device actively probes
real servers to determine if they are healthy.
This table is for configuring the expect status
codes returned by a server."
::= { cslbxServerProbes 4 }
cslbxProbeExpectStatusCfgEntry OBJECT-TYPE
SYNTAX CslbxProbeExpectStatusCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry provides the configuration of a range of
expect status codes for a particular probe, served by
a particular SLB entity."
INDEX {
slbEntity,
cslbxProbeExpectStatusProbeName,
cslbxProbeExpectStatusMinValue
}
::= { cslbxProbeExpectStatusCfgTable 1 }
CslbxProbeExpectStatusCfgEntry ::= SEQUENCE {
cslbxProbeExpectStatusProbeName SlbServerString,
cslbxProbeExpectStatusMinValue Unsigned32,
cslbxProbeExpectStatusMaxValue Unsigned32,
cslbxProbeExpectStatusRowStatus RowStatus
}
cslbxProbeExpectStatusProbeName OBJECT-TYPE
SYNTAX SlbServerString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the probe."
::= { cslbxProbeExpectStatusCfgEntry 1 }
cslbxProbeExpectStatusMinValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The starting value of the expect status code range."
::= { cslbxProbeExpectStatusCfgEntry 2 }
cslbxProbeExpectStatusMaxValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ending value of the expect status code range."
::= { cslbxProbeExpectStatusCfgEntry 3 }
cslbxProbeExpectStatusRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object used by a management station to create
or delete the row entry in
cslbxProbeExpectStatusCfgTable following the
RowStatus textual convention."
::= { cslbxProbeExpectStatusCfgEntry 4 }
-- *************************************************************
-- * *
-- * HTTP/HTTPS Probe Table *
-- * *
-- *************************************************************
cslbxProbeHTTPCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CslbxProbeHTTPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is for configuring attributes
applicable to HTTP and HTTPS probes.
This table supports configuration of the probe
attributes in addition to the HTTP attributes
configured in cslbxProbeCfgTable.
Following objects from cslbxProbeCfgTable are applicable
to HTTP/HTTPS probe:
cslbxProbeAlternateDestAddrType
cslbxProbeAlternateDestAddr
cslbxProbeRouteMethod
cslbxProbeHttpRequestMethod
cslbxProbeHttpRequestUrl
cslbxProbePort
cslbxProbeUserName
cslbxProbePassword
cslbxProbeInterval
cslbxProbeRetries
cslbxProbeFailedInterval
cslbxProbeReceiveTimeout
cslbxProbeTcpOpenTimeout
cslbxProbeConnTermination
cslbxProbePriority
cslbxProbePassCount
An HTTP probe establishes an HTTP connection to
a real server and then sends an HTTP request
and verifies the response.
This table is applicable only for the instance
value of cslbxProbeType 'httpProbe' or 'httpsProbe'."
::= { cslbxServerProbes 5 }
cslbxProbeHTTPCfgEntry OBJECT-TYPE
SYNTAX CslbxProbeHTTPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in HTTP Probe configuration table.
An entry is created in the table when
an entry is created in cslbxProbeCfgTable
with cslbxProbeType 'httpProbe' or
'httpsProbe'.
An entry is deleted from this table when
corresponding entry (identified by the indices)
is deleted from cslbxProbeCfgTable.
Following objects are applicable to both
HTTP and HTTPS Probes:
cslbxProbeHTTPCfgVersion
cslbxProbeHTTPCfgPersistence
cslbxProbeHTTPCfgHashValid
cslbxProbeHTTPCfgHashName
Following objects are applicable only for
HTTPS Probes:
cslbxProbeHTTPCfgCipherSuite
cslbxProbeHTTPCfgSslTlsVersion
cslbxProbeHTTPCfgSslSessionReuse.
The 'cslbxProbeName' refers to the probe which
is created by adding an entry in
'cslbxProbeCfgTable' with cslbxProbeType
'httpProbe' or 'httpsProbe'."
INDEX {
slbEntity,
cslbxProbeName
}
::= { cslbxProbeHTTPCfgTable 1 }
CslbxProbeHTTPCfgEntry ::= SEQUENCE {
cslbxProbeHTTPCfgVersion INTEGER,
cslbxProbeHTTPCfgPersistence TruthValue,
cslbxProbeHTTPCfgHashValid TruthValue,
cslbxProbeHTTPCfgHashName SnmpAdminString,
cslbxProbeHTTPCfgCipherSuite INTEGER,
cslbxProbeHTTPCfgSslTlsVersion INTEGER,
cslbxProbeHTTPCfgSslSessionReuse TruthValue,
cslbxProbeHTTPSslTlsVersionSupported BITS
}
cslbxProbeHTTPCfgVersion OBJECT-TYPE
SYNTAX INTEGER {
httpOneDotZero(1),
httpOneDotOne(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents HTTP version for the probe.
The 'htpOneDotZero' specifies HTTP 1.0 protocol.
The 'htpOneDotOne' specifies HTTP 1.1 protocol."
REFERENCE
"RFC 1945 - Hypertext Transfer Protocol - HTTP/1.0
RFC 2616 - Hypertext Transfer Protocol - HTTP/1.1."
DEFVAL { httpOneDotOne }
::= { cslbxProbeHTTPCfgEntry 1 }
cslbxProbeHTTPCfgPersistence OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables/disables persistence for
HTTP(for both 1.0 and 1.1) probes.
The pure HTTP/1.0 requires that a seperate
TCP connection to be opened for each downloaded
object. The persistence allows TCP connections
to be re-used while requesting multiple objects
without incurring a overhead of opening a new
TCP connection."
DEFVAL { false }
::= { cslbxProbeHTTPCfgEntry 2 }
cslbxProbeHTTPCfgHashValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables the hash functionality.
If set to 'true', the cslbxProbeHTTPCfgHashName
is used. If set 'false' the value
specified in cslbxProbeHTTPCfgHashName
is not used."
DEFVAL { false }
::= { cslbxProbeHTTPCfgEntry 3 }
cslbxProbeHTTPCfgHashName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the hash value
for the probe."
::= { cslbxProbeHTTPCfgEntry 4 }
cslbxProbeHTTPCfgCipherSuite OBJECT-TYPE
SYNTAX INTEGER {
rsaOther(1),
rsaAny(2),
rsaWithRc4128Md5(3),
rsaWithRc4128Sha(4),
rsaWithdesCbcSha(5),
rsaWith3desEdeCbcSha(6),
rsaExportWithRc440Md5(7),
rsaExportWithDes40CbcSha(8),
rsaExport1024WithRc456Md5(9),
rsaExport1024WithDesCbcSha(10),
rsaExport1024WithRc456Sha(11),
rsaWithAes128CbcSha(12),
rsaWithAes256cbcSha(13)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents SSL Cipher suites to be
used for HTTPS probes.
The value 'rsa_any' is used for selecting a
random cipher.
The value 'rsaOther' specifies value other than
those defined in the object. This value can not
be written."
REFERENCE "RFC 2246 - TLS Protocol version 1.0."
DEFVAL { rsaOther }
::= { cslbxProbeHTTPCfgEntry 5 }
cslbxProbeHTTPCfgSslTlsVersion OBJECT-TYPE
SYNTAX INTEGER {
other(1),
sslv2(2),
sslv3(3),
tlsv1(4),
all(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the version of
the SSL/TLS protocol.
The possible value(s) are :
other : Version not applicable.
This value can not be set by the user.
sslv2 : SSL Version 2.0.
sslv3 : SSL Version 3.0.
tlsv1 : TLS Version 1.0.
all : All supported versions as reported in
cslbxProbeHTTPSslTlsVersionSupported
object."
REFERENCE "RFC 2246 - The TLS Protocol Version 1.0."
DEFVAL { sslv3 }
::= { cslbxProbeHTTPCfgEntry 6 }
cslbxProbeHTTPCfgSslSessionReuse OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables/disables reusing of the SSL
Session ID. If set to 'true', SSL session ID will
be reused. If set to 'false', SSL session ID will
not be reused. In SSL, a new session ID is created
every time the client and the SSL module go through a
full key exchange and establish a new master secret key.
Enabling this object allows the SSL module to reuse the
master key on subsequent connections with the client,
which can speed up the SSL negotiation process."
::= { cslbxProbeHTTPCfgEntry 7 }
cslbxProbeHTTPSslTlsVersionSupported OBJECT-TYPE
SYNTAX BITS {
sslv3(0),
tlsv1(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the supported SSL/TLS versions.
sslv3 - SSL version 3.0.
tlsv1 - TLS version 1.0."
::= { cslbxProbeHTTPCfgEntry 8 }
-- *************************************************************
-- * *
-- * SIP Probe Table *
-- * *
-- *************************************************************
cslbxProbeSIPCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CslbxProbeSIPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is for configuring attributes
applicable to SIP probes.
The Session Initiation Protocol (SIP) is an ASCII-based,
application-layer control protocol that can be used to
establish, maintain, and terminate calls between two
or more endpoints. SIP is an alternative protocol
developed by the Internet Engineering Task Force (IETF)
for multimedia conferencing over IP.
This table supports configuration of the probe
attributes in addition to the attributes configured
in cslbxProbeCfgTable.
Following objects from cslbxProbeCfgTable are applicable
to SIP probe:
cslbxProbeAlternateDestAddrType
cslbxProbeAlternateDestAddr
cslbxProbeRouteMethod
cslbxProbePort
cslbxProbeUserName
cslbxProbePassword
cslbxProbeInterval
cslbxProbeRetries
cslbxProbeFailedInterval
cslbxProbeReceiveTimeout
cslbxProbeTcpOpenTimeout
cslbxProbeConnTermination
cslbxProbeSocketReuse
cslbxProbePassCount
This table is applicable only if the value of
cslbxProbeType is 'sipProbe'."
::= { cslbxServerProbes 6 }
cslbxProbeSIPCfgEntry OBJECT-TYPE
SYNTAX CslbxProbeSIPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in SIP Probe configuration table.
An entry is created in the table when
an entry is created in cslbxProbeCfgTable
with cslbxProbeType 'sipProbe'.
An entry is deleted from this table when
corresponding entry (identified by the indices)
is deleted from cslbxProbeCfgTable.
The 'cslbxProbeName' refers to the probe which
is created by adding an entry in
'cslbxProbeCfgTable' with cslbxProbeType
'sipProbe'."
INDEX {
slbEntity,
cslbxProbeName
}
::= { cslbxProbeSIPCfgTable 1 }
CslbxProbeSIPCfgEntry ::= SEQUENCE {
cslbxProbeSIPRegAddress SnmpAdminString
}
cslbxProbeSIPRegAddress OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the Registration address used
in SIP protocol. Users in a SIP network are identified
by unique SIP addresses. A SIP address is similar to an
e-mail address and is in the format of
'sip:userID@gateway.com'. The userID can be either a
user name or an E.164 address. An E.164 address is a
telephone number with a string of decimal digits that
uniquely indicates the public network termination point.
The number contains the information necessary to route
the call to this termination point."
DEFVAL { "" }
::= { cslbxProbeSIPCfgEntry 1 }
-- *************************************************************
-- * *
-- * FTP Probe Table *
-- * *
-- *************************************************************
cslbxProbeFTPCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CslbxProbeFTPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is for configuring attributes
applicable to FTP probes. This table supports
configuration of the probe attributes in addition
to the FTP attributes configured in cslbxProbeCfgTable.
Following objects from cslbxProbeCfgTable are applicable
to FTP probe:
cslbxProbeAlternateDestAddrType
cslbxProbeAlternateDestAddr
cslbxProbeRouteMethod
cslbxProbePort
cslbxProbeUserName
cslbxProbePassword
cslbxProbeInterval
cslbxProbeRetries
cslbxProbeFailedInterval
cslbxProbeReceiveTimeout
cslbxProbeTcpOpenTimeout
cslbxProbeConnTermination
cslbxProbeSocketReuse
cslbxProbePassCount
This table is applicable only if the value of
cslbxProbeType is 'ftpProbe'."
::= { cslbxServerProbes 7 }
cslbxProbeFTPCfgEntry OBJECT-TYPE
SYNTAX CslbxProbeFTPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in FTP Probe configuration table.
Each entry represents the FTP request,
File name and File type.
An entry is created in the table when
an entry is created in cslbxProbeCfgTable
with cslbxProbeType 'ftpProbe'.
An entry is deleted from this table when
corresponding entry (identified by the indices)
is deleted from cslbxProbeCfgTable.
The 'cslbxProbeName' refers to the probe which
is created by adding an entry in
'cslbxProbeCfgTable' with cslbxProbeType
'ftpProbe'."
INDEX {
slbEntity,
cslbxProbeName
}
::= { cslbxProbeFTPCfgTable 1 }
CslbxProbeFTPCfgEntry ::= SEQUENCE {
cslbxProbeFtpRequestMethod INTEGER,
cslbxProbeFtpRequestFileName SlbUrlString,
cslbxProbeFtpRequestFileType INTEGER
}
cslbxProbeFtpRequestMethod OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ls(2),
get(3),
put(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the FTP request to be used
in FTP probe packets.
The possible value(s) are:
other : other than the values mentioned below.
This value can not be written.
ls : list files.
get : Get request.
put : Put request."
DEFVAL { get }
::= { cslbxProbeFTPCfgEntry 1 }
cslbxProbeFtpRequestFileName OBJECT-TYPE
SYNTAX SlbUrlString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The string representing the File Name
used in FTP Probe."
DEFVAL { "" }
::= { cslbxProbeFTPCfgEntry 2 }
cslbxProbeFtpRequestFileType OBJECT-TYPE
SYNTAX INTEGER {
ascii(1),
binary(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the type
of the data transferred from/to
in case of FTP requests."
DEFVAL { ascii }
::= { cslbxProbeFTPCfgEntry 3 }
-- *************************************************************
-- * *
-- * TFTP Probe Table *
-- * *
-- *************************************************************
cslbxProbeTFTPCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CslbxProbeTFTPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is for configuring attributes
applicable to TFTP probes. This table supports
configuration of the probe attributes in addition
to the TFTP attributes configured in cslbxProbeCfgTable.
Following objects from cslbxProbeCfgTable are applicable
to TFTP probe:
cslbxProbeAlternateDestAddrType
cslbxProbeAlternateDestAddr
cslbxProbePort
cslbxProbeInterval
cslbxProbeRetries
cslbxProbeFailedInterval
cslbxProbePassCount
This table is applicable only if the value of
cslbxProbeType is 'tftpProbe'."
::= { cslbxServerProbes 8 }
cslbxProbeTFTPCfgEntry OBJECT-TYPE
SYNTAX CslbxProbeTFTPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in TFTP Probe configuration table.
Each entry represents the TFTP probe related
parameters.
An entry is created in the table when
an entry is created in cslbxProbeCfgTable
with cslbxProbeType 'tftpProbe'.
An entry is deleted from this table when
correspnding entry (identified by the indices)
is deleted from cslbxProbeCfgTable.
The 'cslbxProbeName' refers to the probe which
is created by adding an entry in
'cslbxProbeCfgTable' with cslbxProbeType
'tftpProbe'."
INDEX {
slbEntity,
cslbxProbeName
}
::= { cslbxProbeTFTPCfgTable 1 }
CslbxProbeTFTPCfgEntry ::= SEQUENCE {
cslbxProbeTftpRequestMethod INTEGER,
cslbxProbeTftpRequestFileName SlbUrlString,
cslbxProbeTftpRequestFileType INTEGER
}
cslbxProbeTftpRequestMethod OBJECT-TYPE
SYNTAX INTEGER {
get(1),
put(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the TFTP request to be used
in TFTP probe packets.
The possible value(s) are:
get : Get request.
put : Put request."
DEFVAL { get }
::= { cslbxProbeTFTPCfgEntry 1 }
cslbxProbeTftpRequestFileName OBJECT-TYPE
SYNTAX SlbUrlString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The string representing the File Name
used in TFTP Probe."
DEFVAL { "" }
::= { cslbxProbeTFTPCfgEntry 2 }
cslbxProbeTftpRequestFileType OBJECT-TYPE
SYNTAX INTEGER {
ascii(1),
binary(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the type
of the data transferred from/to
in case of FTP requests."
DEFVAL { ascii }
::= { cslbxProbeTFTPCfgEntry 3 }
-- *************************************************************
-- * *
-- * IMAP Probe Table *
-- * *
-- *************************************************************
cslbxProbeIMAPCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CslbxProbeIMAPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is for configuring attributes
applicable to IMAP probe.
This table supports configuration of the probe
attributes in addition to the IMAP attributes
configured in cslbxProbeCfgTable.
Following objects from cslbxProbeCfgTable are applicable
to IMAP probe:
cslbxProbeAlternateDestAddrType
cslbxProbeAlternateDestAddr
cslbxProbeRouteMethod
cslbxProbePort
cslbxProbeUserName
cslbxProbePassword
cslbxProbeInterval
cslbxProbeRetries
cslbxProbeFailedInterval
cslbxProbeReceiveTimeout
cslbxProbeConnTermination
cslbxProbePriority
cslbxProbePassCount
An IMAP probe initiates a IMAP session and then
attempts to retrieve e-mail from the server and
verifies the response.
This table is applicable only if the value of
cslbxProbeType is 'imapProbe'."
::= { cslbxServerProbes 9 }
cslbxProbeIMAPCfgEntry OBJECT-TYPE
SYNTAX CslbxProbeIMAPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in IMAP Probe configuration table.
Each entry represents the IMAP probe related
parameters.
An entry is created in the table when
an entry is created in cslbxProbeCfgTable
with cslbxProbeType 'imapProbe'.
An entry is deleted from this table when
corresponding entry (identified by the indices)
is deleted from cslbxProbeCfgTable.
The 'cslbxProbeName' refers to the probe which
is created by adding an entry in
'cslbxProbeCfgTable' with cslbxProbeType
'imapProbe'."
INDEX {
slbEntity,
cslbxProbeName
}
::= { cslbxProbeIMAPCfgTable 1 }
CslbxProbeIMAPCfgEntry ::= SEQUENCE {
cslbxProbeIMAPMailBox SnmpAdminString,
cslbxProbeIMAPMethodName SnmpAdminString
}
cslbxProbeIMAPMailBox OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used for configuring
the IMAP Mailbox value."
REFERENCE "RFC 1730 Section 5.1 Mailbox Naming."
DEFVAL { "" }
::= { cslbxProbeIMAPCfgEntry 1 }
cslbxProbeIMAPMethodName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used for configuring
the IMAP method. The value can be
any IMAP method. Some of the example(s) are:
FETCH, NOOP, STAT, RETR"
REFERENCE
"RFC 1730 Section 6.1 Client commands - Any State.
RFC 1730 Section 6.4 Client commands - Selected State."
DEFVAL { "" }
::= { cslbxProbeIMAPCfgEntry 2 }
ciscoSlbHealthMonMIBNotifs OBJECT IDENTIFIER
::= { ciscoSlbHealthMonMIB 0 }
ciscoSlbHealthMonMIBObjects OBJECT IDENTIFIER
::= { ciscoSlbHealthMonMIB 1 }
cshMonSfarmProbes OBJECT IDENTIFIER
::= { ciscoSlbHealthMonMIBObjects 1 }
ciscoSlbHealthMonMIBConformance OBJECT IDENTIFIER
::= { ciscoSlbHealthMonMIB 2 }
ciscoSlbHealthMonNotifObjects OBJECT IDENTIFIER
::= { ciscoSlbHealthMonMIBObjects 2 }
-- Conformance Information
ciscoSlbHealthMonMIBCompliances OBJECT IDENTIFIER
::= { ciscoSlbHealthMonMIBConformance 1 }
ciscoSlbHealthMonMIBGroups OBJECT IDENTIFIER
::= { ciscoSlbHealthMonMIBConformance 2 }
SlbProbeType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The probe type for probing the health of a server.
'icmpProbe' : Probe server by sending ICMP
echo requests.
'tcpProbe' : Probe server by opening TCP
connections. TCP probe
establishes and removes connections.
'dnsProbe' : Probe server by sending DNS
queries. A DNS probe sends a
domain name resolve request to the
real server and verifies the returned
IP address.
'httpProbe' : Probe server by sending HTTP
requests. An HTTP probe establishes
and HTTP connection to a real server
and then sends an HTTP request and
verifies the response.
'ftpProbe' : Probe server by opening FTP
connections. An FTP probe
establishes a connection to
the real server and verifies
that a greeting from the
application was received.
'telnetProbe' : Probe server by opening Telnet
connections. A Telnet probe
establishes a connection to the
real server and verifies that a
greeting from the application was
received.
'smtpProbe' : Probe server by opening SMTP
connections. An SMTP probe
establishes a connection to the
real server and verifies that a
greeting from the application was
received.
'scriptedProbe' : Probe server by executable
script.
'undefined' : New probe type not yet defined.
'udpProbe' : Probe server by opening UDP ports.
'httpsProbe' : Probe server by sending HTTPS
requests.
'ldapProbe' : Probe server by connecting to LDAP
server.
'popProbe' : Probe server by initiating
POP/POP3 session.
'imapProbe' : Probe server by initiating
IMAP session.
'radiusProbe' : Probe server by connecting to
RADIUS server.
'tacacsProbe' : Probe server by connecting to
TACACS server.
'sipProbe' : Probe server by sending SIP
Commands.
'tftpProbe' : Probe server by sending tftp
requests.
'fingerProbe' : Probe server by sending the
command and waiting for the
response.
'echoProbe' : Probe server by sending the
data and response back.
'rtspProbe' : Probe server by sending the
RTSP requests.
'snmpProbe' : Probe server by sending the
SNMP requests."
SYNTAX INTEGER {
icmpProbe(1),
tcpProbe(2),
dnsProbe(3),
httpProbe(4),
ftpProbe(5),
telnetProbe(6),
smtpProbe(7),
scriptedProbe(8),
undefined(9),
udpProbe(10),
httpsProbe(11),
ldapProbe(12),
popProbe(13),
imapProbe(14),
radiusProbe(15),
tacacsProbe(16),
sipProbe(17),
tftpProbe(18),
fingerProbe(19),
echoProbe(20),
rtspProbe(21),
snmpProbe(22)
}
CiscoProbeHealthMonState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The health monitor state of the probe for a server.
The possible values are :
'other' : The health monitor state of the probe
when none of the other values apply.
'invalid' : Server is not being monitored.
Although user has tried to associate the
probe to the server, but due to some
internal problem it is actually not
associated.
'init' : server is configured but not tested.
'active' : server is active. All expected
responses received.
'failed' : probe has failed as expected responses
have failed beyond acceptable limits.
'disabled' : probe disabled due to server
being outofservice or no valid
ip address configured to server."
SYNTAX INTEGER {
other(1),
invalid(2),
init(3),
active(4),
failed(5),
disabled(6)
}
CiscoProbeInheritedPortType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of the inheritance for the probe port.
The possible values are :
'other' : The inherited port when none of the other
values apply.
'probe' : The inherited port is the probe's configured
port.
'real' : The inherited port is the port of the
real server to which the probe is associated.
'vip' : The inherited port is the port of the virtual
ip address.
'default' : The inherited port is the probe's default
port."
SYNTAX INTEGER {
other(1),
probe(2),
real(3),
vip(4),
default(5)
}
cshMonSfarmRealProbeStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CshMonSfarmRealProbeStatsEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"This table provides the statistics of a probe applied
to a real server. This will address probes configured
under a serverfarm and also under a real server.
Deprecated because of the change in index requirement."
::= { cshMonSfarmProbes 1 }
cshMonSfarmRealProbeStatsEntry OBJECT-TYPE
SYNTAX CshMonSfarmRealProbeStatsEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Each entry provides the probe related
stats for a real server.
In the following cases one or more entries get created:
1. An entry gets created when an entry is created in the
cesRealServerProbeTable.
2. When an entry is created in
cslbxServerFarmProbeTable (identified by
INDEX cslbxServerFarmProbeFarmName), then entries are
created in this table with as many entries in
cesServerFarmRserverTable (identified by
INDEX slbServerFarmName) for the same server farm.
3. When an entry is created in
cesServerFarmRserverTable (identified by INDEX
slbServerFarmName), then entries are created in this
table with as many entries in
cslbxServerFarmProbeTable (identified by INDEX
cslbxServerFarmProbeFarmName) for the same server farm.
In the following cases one or more entries get deleted:
1. An entry gets deleted when an entry is deleted from the
cesRealServerProbeTable.
2. When an entry is deleted from
cslbxServerFarmProbeTable (identified by
INDEX cslbxServerFarmProbeFarmName), then entries are
deleted from this table with as many entries in
cesServerFarmRserverTable (identified by
INDEX slbServerFarmName) for the same server farm.
3. When an entry is deleted from
cesServerFarmRserverTable (identified by INDEX
slbServerFarmName), then entries are deleted from this
table with as many entries in
cslbxServerFarmProbeTable (identified by INDEX
cslbxServerFarmProbeFarmName) for the same server farm."
REFERENCE
"cesRealServerProbeTable and cesServerFarmRserverTable are
defined in CISCO-ENHANCED-SLB-MIB.
cslbxServerFarmProbeTable is defined in CISCO-SLB-EXT-MIB."
INDEX {
slbEntity,
cslbxProbeName,
slbServerFarmName,
cshMonSfarmRealServerName,
cshMonSfarmRealServerPort
}
::= { cshMonSfarmRealProbeStatsTable 1 }
CshMonSfarmRealProbeStatsEntry ::= SEQUENCE {
cshMonSfarmRealServerName SnmpAdminString,
cshMonSfarmRealServerPort InetPortNumber,
cshMonSfarmRealProbesPassed Counter32,
cshMonSfarmRealProbesFailed Counter32,
cshMonSfarmRealProbeHealthMonState CiscoProbeHealthMonState
}
cshMonSfarmRealServerName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..255))
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"This object identifies the name (unique identifier)
of the real server. This value must correspond to an entry
in cesServerFarmRserverTable (identified by INDEX
cesRserverName) or cesRealServerProbeTable
(identified by INDEX cesRserverName)."
REFERENCE
"cesServerFarmRserverTable and cesRealServerProbeTable
are defined in CISCO-ENHANCED-SLB-MIB."
::= { cshMonSfarmRealProbeStatsEntry 1 }
cshMonSfarmRealServerPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The port number of the real server.
The value zero specifies that
port number is not used in conjunction
with real server IP Address. This value must correspond
to an entry in cesServerFarmRserverTable (identified by INDEX
cesServerFarmRserverPort) or cesRealServerProbeTable
(identified by INDEX cesServerFarmRserverPort)."
REFERENCE
"cesServerFarmRserverTable and cesRealServerProbeTable
are defined in CISCO-ENHANCED-SLB-MIB."
::= { cshMonSfarmRealProbeStatsEntry 2 }
cshMonSfarmRealProbesPassed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of probes passed for this real
server. The probe is identified as pass if
the real server returns a valid response."
::= { cshMonSfarmRealProbeStatsEntry 3 }
cshMonSfarmRealProbesFailed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of probes failed for this real
server. The probe is identified as failed
if the real server fails to provide a valid
response for a specified number of retries."
::= { cshMonSfarmRealProbeStatsEntry 4 }
cshMonSfarmRealProbeHealthMonState OBJECT-TYPE
SYNTAX CiscoProbeHealthMonState
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The health monitor state of the probe for this
real server."
DEFVAL { init }
::= { cshMonSfarmRealProbeStatsEntry 5 }
cshMonProbeTypeStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CshMonProbeTypeStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides the accumulated statistics for each
probe type."
::= { cshMonSfarmProbes 2 }
cshMonProbeTypeStatsEntry OBJECT-TYPE
SYNTAX CshMonProbeTypeStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the cshMonProbeTypeStatsTable.
1. The entries in the table are created when the system
boots up.
2. There is no use case where the entries gets deleted.
The 'slbEntity'is used in identifying the module in which
configuration is applied. The 'cslbxProbeType' identifies the
type of the probe."
INDEX {
slbEntity,
cslbxProbeType
}
::= { cshMonProbeTypeStatsTable 1 }
CshMonProbeTypeStatsEntry ::= SEQUENCE {
cshMonProbeTotalSentProbes Counter32,
cshMonProbeTotalPassedProbes Counter32,
cshMonProbeTotalConnectionErrors Counter32,
cshMonProbeTotalReceivedRSTs Counter32,
cshMonProbeTotalReceiveTimeouts Counter32,
cshMonProbeTotalSendFailures Counter32,
cshMonProbeTotalFailedProbes Counter32,
cshMonProbeTotalRefusedConns Counter32,
cshMonProbeTotalOpenTimeouts Counter32,
cshMonProbeTotalActiveSockets Counter32
}
cshMonProbeTotalSentProbes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of probes sent to the
real servers."
::= { cshMonProbeTypeStatsEntry 1 }
cshMonProbeTotalPassedProbes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of passed probes. The probe
is identified as pass if the real server returns a valid
response."
::= { cshMonProbeTypeStatsEntry 2 }
cshMonProbeTotalConnectionErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of probes that received
connection errors while trying to connect to the real server."
::= { cshMonProbeTypeStatsEntry 3 }
cshMonProbeTotalReceivedRSTs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of probes that received
TCP RST."
::= { cshMonProbeTypeStatsEntry 4 }
cshMonProbeTotalReceiveTimeouts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of probes that suffered
receive timeouts."
::= { cshMonProbeTypeStatsEntry 5 }
cshMonProbeTotalSendFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of probes failed due to
internal errors. Internal errors are unexpected errors during
configuration, scheduling or processing a probe."
::= { cshMonProbeTypeStatsEntry 6 }
cshMonProbeTotalFailedProbes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of failed probes. The probe
is identified as failed if the real server fails to provide a
valid response for a specified number of retries."
::= { cshMonProbeTypeStatsEntry 7 }
cshMonProbeTotalRefusedConns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of probes whose connections
were refused by the real servers."
::= { cshMonProbeTypeStatsEntry 8 }
cshMonProbeTotalOpenTimeouts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of probes that received
timeout while trying to open a connection to the real server."
::= { cshMonProbeTypeStatsEntry 9 }
cshMonProbeTotalActiveSockets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of probes that are
currently using a socket in the system."
::= { cshMonProbeTypeStatsEntry 10 }
cshMonServerfarmRealProbeStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CshMonServerfarmRealProbeStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides the statistics of a probe applied
to a real server. This will address probes configured
under a serverfarm and also under a real server."
::= { cshMonSfarmProbes 3 }
cshMonServerfarmRealProbeStatsEntry OBJECT-TYPE
SYNTAX CshMonServerfarmRealProbeStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry provides the probe related stats for a real server.
Please refer to 'probe port inheritance' explained in this
MODULE-IDENTITY description.
In the following cases one or more entries get created:
1. When an entry is created in cesRealServerProbeTable,
then an equal number of entries are created in this
table for each inherited port associated with each
probe instance.
2. When an entry is created in cslbxServerFarmProbeTable
(identified by INDEX cslbxServerFarmProbeFarmName), then
entries are created in this table with as many entries
in cesServerFarmRserverTable (identified by INDEX
slbServerFarmName) for the same server farm multiplied
by the number of inherited ports associated with each
probe instance.
3. When an entry is created in cesServerFarmRserverTable
(identified by INDEX slbServerFarmName), then entries
are created in this table with as many entries in
cslbxServerFarmProbeTable (identified by INDEX
cslbxServerFarmProbeFarmName) for the same server farm
multiplied by the number of inherited ports associated
with each probe instance.
In the following cases one or more entries get deleted:
1. When an entry gets deleted from the
cesRealServerProbeTable, then an equal number of
entries are deleted in this table for each inherited
port associated with each probe instance.
2. When an entry is deleted from
cslbxServerFarmProbeTable (identified by
INDEX cslbxServerFarmProbeFarmName), then entries are
deleted from this table with as many entries in
cesServerFarmRserverTable (identified by
INDEX slbServerFarmName) for the same server farm
multiplied by the number of inherited ports associated
with each probe instance.
3. When an entry is deleted from
cesServerFarmRserverTable (identified by INDEX
slbServerFarmName), then entries are deleted from this
table with as many entries in
cslbxServerFarmProbeTable (identified by INDEX
cslbxServerFarmProbeFarmName) for the same server farm
multiplied by the number of inherited ports associated
with each probe instance."
REFERENCE
"cesRealServerProbeTable and cesServerFarmRserverTable are
defined in CISCO-ENHANCED-SLB-MIB.
cslbxServerFarmProbeTable is defined in CISCO-SLB-EXT-MIB."
INDEX {
slbEntity,
cslbxProbeName,
slbServerFarmName,
cshMonServerfarmRealServerName,
cshMonServerfarmRealServerPort,
cshMonProbeInheritedPort
}
::= { cshMonServerfarmRealProbeStatsTable 1 }
CshMonServerfarmRealProbeStatsEntry ::= SEQUENCE {
cshMonServerfarmRealServerName SnmpAdminString,
cshMonServerfarmRealServerPort InetPortNumber,
cshMonProbeInheritedPort InetPortNumber,
cshMonServerfarmRealPassedProbes Counter32,
cshMonServerfarmRealFailedProbes Counter32,
cshMonServerfarmRealProbeHealthMonState CiscoProbeHealthMonState,
cshMonServerfarmRealProbeLastProbeTime DateAndTime,
cshMonServerfarmRealProbeLastActiveTime DateAndTime,
cshMonServerfarmRealProbeLastFailedTime DateAndTime,
cshMonProbeInheritedPortType CiscoProbeInheritedPortType
}
cshMonServerfarmRealServerName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..255))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the name (unique identifier)
of the real server. This value must correspond to an entry
in cesServerFarmRserverTable (identified by INDEX
cesRserverName) or cesRealServerProbeTable
(identified by INDEX cesRserverName)."
REFERENCE
"cesServerFarmRserverTable and cesRealServerProbeTable
are defined in CISCO-ENHANCED-SLB-MIB."
::= { cshMonServerfarmRealProbeStatsEntry 1 }
cshMonServerfarmRealServerPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the port number of the real server.
The value zero specifies that port number is not used in
conjunction with real server ip address. This value must
correspond to an entry in cesServerFarmRserverTable (identified
by INDEX cesServerFarmRserverPort) or cesRealServerProbeTable
(identified by INDEX cesServerFarmRserverPort)."
REFERENCE
"cesServerFarmRserverTable and cesRealServerProbeTable
are defined in CISCO-ENHANCED-SLB-MIB."
::= { cshMonServerfarmRealProbeStatsEntry 2 }
cshMonProbeInheritedPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the port number which is inherited by
the probe instance. Please refer to probe port inheritance
concept explained in this MODULE-IDENTITY description."
::= { cshMonServerfarmRealProbeStatsEntry 3 }
cshMonServerfarmRealPassedProbes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of probes passed for this
real server. The probe is identified as pass if the real
server returns a valid response."
::= { cshMonServerfarmRealProbeStatsEntry 4 }
cshMonServerfarmRealFailedProbes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the number of probes failed for this
real server. The probe is identified as failed if the real
server fails to provide a valid response for a specified
number of retries."
::= { cshMonServerfarmRealProbeStatsEntry 5 }
cshMonServerfarmRealProbeHealthMonState OBJECT-TYPE
SYNTAX CiscoProbeHealthMonState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the health monitor state of the probe
for this real server."
DEFVAL { init }
::= { cshMonServerfarmRealProbeStatsEntry 6 }
cshMonServerfarmRealProbeLastProbeTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the date and time of the last probe."
::= { cshMonServerfarmRealProbeStatsEntry 7 }
cshMonServerfarmRealProbeLastActiveTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the last date and time that the probe's
state transitioned to 'active'."
::= { cshMonServerfarmRealProbeStatsEntry 8 }
cshMonServerfarmRealProbeLastFailedTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the last date and time that the probes's
state transitioned to 'failed'."
::= { cshMonServerfarmRealProbeStatsEntry 9 }
cshMonProbeInheritedPortType OBJECT-TYPE
SYNTAX CiscoProbeInheritedPortType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indentifies the type of the inherited port
for this probe instance."
DEFVAL { default }
::= { cshMonServerfarmRealProbeStatsEntry 10 }
-- Notification related objects
cshMonSocketOverusageCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the number of times the probes socket
usage exceeded 90% in that minute."
::= { ciscoSlbHealthMonNotifObjects 1 }
-- Notifications
cshMonSocketOveruse NOTIFICATION-TYPE
OBJECTS { cshMonSocketOverusageCount }
STATUS current
DESCRIPTION
"The notification is generated when probes socket usage
exceeds or equals 90% atleast 100 times in one minute.
The object cshMonSocketOverusageCount represents the number
of times the probes socket usage exceeded 90 percentage
in that minute."
::= { ciscoSlbHealthMonMIBNotifs 1 }
cshMonSocketNormalUse NOTIFICATION-TYPE
OBJECTS { cshMonSocketOverusageCount }
STATUS current
DESCRIPTION
"The notification is generated when the probes socket usage
becomes normal i.e the socket usage does not exceed 90% 100 or
more times in that minute and after cshMonSocketOveruse
notification is generated.
The object cshMonSocketOverusageCount represents the number of
times the probes socket usage exceeded 90 percentage in that
minute."
::= { ciscoSlbHealthMonMIBNotifs 2 }
ciscoSlbHealthMonMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
the Cisco SLB Health monitoring MIB."
MODULE -- this module
MANDATORY-GROUPS {
cslbHealthMonServerProbesGroup,
cslbHealthMonProbeCfgExtGroup
}
GROUP cslbHealthMonHTTPProbesCommmonGroup
DESCRIPTION
"This group is mandatory for the systems
which support HTTP probes."
GROUP cslbHealthMonHTTPSProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support HTTPS probes."
GROUP cslbHealthMonSIPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support SIP probes."
GROUP cslbHealthMonFTPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support FTP probes."
GROUP cslbHealthMonTFTPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support TFTP probes."
GROUP cslbHealthMonIMAPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support IMAP probes."
GROUP cslbHealthMonProbeScriptGroup
DESCRIPTION
"This group is madatory for the systems
which support scripted probes."
OBJECT cslbxProbeAlternateDestAddrType
DESCRIPTION
"An implementation is only required to support
IPv4 addresses."
OBJECT cslbxProbeAlternateDestAddr
DESCRIPTION
"An implementation is only required to support
IPv4 addresses."
::= { ciscoSlbHealthMonMIBCompliances 1 }
ciscoSlbHealthMonMIBComplianceRev1 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
the Cisco SLB Health monitoring MIB."
MODULE -- this module
MANDATORY-GROUPS {
cslbHealthMonServerProbesGroup,
cslbHealthMonProbeCfgExtGroup
}
GROUP cslbHealthMonHTTPProbesCommmonGroup
DESCRIPTION
"This group is mandatory for the systems
which support HTTP probes."
GROUP cslbHealthMonHTTPSProbesGroupRev1
DESCRIPTION
"This group is mandatory for the systems
which support HTTPS probes."
GROUP cslbHealthMonSIPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support SIP probes."
GROUP cslbHealthMonFTPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support FTP probes."
GROUP cslbHealthMonTFTPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support TFTP probes."
GROUP cslbHealthMonIMAPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support IMAP probes."
GROUP cslbHealthMonProbeScriptGroup
DESCRIPTION
"This group is madatory for the systems
which support scripted probes."
OBJECT cslbxProbeAlternateDestAddrType
DESCRIPTION
"An implementation is only required to support
IPv4 addresses."
OBJECT cslbxProbeAlternateDestAddr
DESCRIPTION
"An implementation is only required to support
IPv4 addresses."
::= { ciscoSlbHealthMonMIBCompliances 2 }
ciscoSlbHealthMonMIBComplianceRev2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
the Cisco SLB Health monitoring MIB."
MODULE -- this module
MANDATORY-GROUPS {
cslbHealthMonServerProbesGroupRev1,
cslbHealthMonProbeCfgExtGroup,
cshMonSfarmrealserverProbeStatsGroup
}
GROUP cslbHealthMonHTTPProbesCommmonGroup
DESCRIPTION
"This group is mandatory for the systems
which support HTTP probes."
GROUP cslbHealthMonHTTPSProbesGroupRev1
DESCRIPTION
"This group is mandatory for the systems
which support HTTPS probes."
GROUP cslbHealthMonSIPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support SIP probes."
GROUP cslbHealthMonFTPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support FTP probes."
GROUP cslbHealthMonTFTPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support TFTP probes."
GROUP cslbHealthMonIMAPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support IMAP probes."
GROUP cslbHealthMonProbeScriptGroup
DESCRIPTION
"This group is madatory for the systems
which support scripted probes."
OBJECT cslbxProbeAlternateDestAddrType
DESCRIPTION
"An implementation is only required to support
IPv4 addresses."
OBJECT cslbxProbeAlternateDestAddr
DESCRIPTION
"An implementation is only required to support
IPv4 addresses."
::= { ciscoSlbHealthMonMIBCompliances 3 }
ciscoSlbHealthMonMIBComplianceRev3 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Cisco SLB Health monitoring MIB."
MODULE -- this module
MANDATORY-GROUPS {
cslbHealthMonServerProbesGroupRev1,
cslbHealthMonProbeCfgExtGroup,
cshMonSfarmrealserverProbeStatsGroupRev1,
cshMonProbeTypeStatsGroup
}
GROUP cslbHealthMonHTTPProbesCommmonGroup
DESCRIPTION
"This group is mandatory for the systems
which support HTTP probes."
GROUP cslbHealthMonHTTPSProbesGroupRev1
DESCRIPTION
"This group is mandatory for the systems
which support HTTPS probes."
GROUP cslbHealthMonSIPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support SIP probes."
GROUP cslbHealthMonFTPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support FTP probes."
GROUP cslbHealthMonTFTPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support TFTP probes."
GROUP cslbHealthMonIMAPProbesGroup
DESCRIPTION
"This group is mandatory for the systems
which support IMAP probes."
GROUP cslbHealthMonProbeScriptGroup
DESCRIPTION
"This group is madatory for the systems
which support scripted probes."
GROUP cshMonNotifObjectsGroup
DESCRIPTION
"This group is madatory for the systems
which supports socket usage notification."
GROUP cshMonNotifGroup
DESCRIPTION
"This group is madatory for the systems
which supports socket usage notification."
OBJECT cslbxProbeAlternateDestAddrType
DESCRIPTION
"An implementation is only required to support
IPv4 addresses."
OBJECT cslbxProbeAlternateDestAddr
DESCRIPTION
"An implementation is only required to support
IPv4 addresses."
::= { ciscoSlbHealthMonMIBCompliances 4 }
cslbHealthMonServerProbesGroup OBJECT-GROUP
OBJECTS {
cslbxProbeType,
cslbxProbeInterval,
cslbxProbeRetries,
cslbxProbeFailedInterval,
cslbxProbeReceiveTimeout,
cslbxProbeTcpOpenTimeout,
cslbxProbeAlternateDestAddrType,
cslbxProbeAlternateDestAddr,
cslbxProbeDnsDomainName,
cslbxProbeRowStatus,
cslbxDnsProbeIpRowStatus,
cslbxProbeExpectStatusMaxValue,
cslbxProbeExpectStatusRowStatus,
cslbxProbePort,
cslbxProbeDescription,
cslbxProbeProtocolType,
cslbxProbeRouteMethod,
cslbxProbePriority
}
STATUS deprecated
DESCRIPTION
"The second revision of the collection of SLB server
health probe objects."
::= { ciscoSlbHealthMonMIBGroups 1 }
cslbHealthMonProbeCfgExtGroup OBJECT-GROUP
OBJECTS {
cslbxProbeUserName,
cslbxProbePassword,
cslbxProbePassCount,
cslbxProbeConnTermination,
cslbxProbeSocketReuse,
cslbxProbeSendDataType,
cslbxProbeSendData
}
STATUS current
DESCRIPTION
"The collection of objects to configure
probes in an SLB device."
::= { ciscoSlbHealthMonMIBGroups 2 }
cslbHealthMonSIPProbesGroup OBJECT-GROUP
OBJECTS { cslbxProbeSIPRegAddress }
STATUS current
DESCRIPTION
"A collection of objects providing information
specific to SIP Probes."
::= { ciscoSlbHealthMonMIBGroups 3 }
cslbHealthMonFTPProbesGroup OBJECT-GROUP
OBJECTS {
cslbxProbeFtpRequestMethod,
cslbxProbeFtpRequestFileName,
cslbxProbeFtpRequestFileType
}
STATUS current
DESCRIPTION
"A collection of objects providing information
specific to FTP Probes."
::= { ciscoSlbHealthMonMIBGroups 4 }
cslbHealthMonHTTPProbesCommmonGroup OBJECT-GROUP
OBJECTS {
cslbxProbeHttpRequestMethod,
cslbxProbeHttpRequestUrl,
cslbxProbeHeaderFieldValue,
cslbxProbeHeaderRowStatus,
cslbxProbeHTTPCfgVersion,
cslbxProbeHTTPCfgPersistence,
cslbxProbeHTTPCfgHashValid,
cslbxProbeHTTPCfgHashName
}
STATUS current
DESCRIPTION
"A collection of objects providing information
specific to both HTTP and HTTPS Probes."
::= { ciscoSlbHealthMonMIBGroups 5 }
cslbHealthMonHTTPSProbesGroup OBJECT-GROUP
OBJECTS {
cslbxProbeHTTPCfgCipherSuite,
cslbxProbeHTTPCfgSslTlsVersion,
cslbxProbeHTTPCfgSslSessionReuse
}
STATUS deprecated
DESCRIPTION
"A collection of objects providing information
specific to HTTPS Probes."
::= { ciscoSlbHealthMonMIBGroups 6 }
cslbHealthMonTFTPProbesGroup OBJECT-GROUP
OBJECTS {
cslbxProbeTftpRequestMethod,
cslbxProbeTftpRequestFileName,
cslbxProbeTftpRequestFileType
}
STATUS current
DESCRIPTION
"A collection of objects providing information
specific to TFTP Probes."
::= { ciscoSlbHealthMonMIBGroups 7 }
cslbHealthMonIMAPProbesGroup OBJECT-GROUP
OBJECTS {
cslbxProbeIMAPMailBox,
cslbxProbeIMAPMethodName
}
STATUS current
DESCRIPTION
"A collection of objects providing information
specific to IMAP Probes."
::= { ciscoSlbHealthMonMIBGroups 8 }
cslbHealthMonProbeScriptGroup OBJECT-GROUP
OBJECTS {
cslbxProbeScriptName,
cslbxProbeScriptArguments
}
STATUS current
DESCRIPTION
"The collection of objects to configure scripted
probes in an SLB device."
::= { ciscoSlbHealthMonMIBGroups 9 }
cslbHealthMonHTTPSProbesGroupRev1 OBJECT-GROUP
OBJECTS {
cslbxProbeHTTPCfgCipherSuite,
cslbxProbeHTTPCfgSslTlsVersion,
cslbxProbeHTTPCfgSslSessionReuse,
cslbxProbeHTTPSslTlsVersionSupported
}
STATUS current
DESCRIPTION
"A collection of objects providing information
specific to HTTPS Probes."
::= { ciscoSlbHealthMonMIBGroups 10 }
cslbHealthMonServerProbesGroupRev1 OBJECT-GROUP
OBJECTS {
cslbxProbeType,
cslbxProbeInterval,
cslbxProbeRetries,
cslbxProbeFailedInterval,
cslbxProbeReceiveTimeout,
cslbxProbeTcpOpenTimeout,
cslbxProbeAlternateDestAddrType,
cslbxProbeAlternateDestAddr,
cslbxProbeDnsDomainName,
cslbxProbeRowStatus,
cslbxDnsProbeIpRowStatus,
cslbxProbeExpectStatusMaxValue,
cslbxProbeExpectStatusRowStatus,
cslbxProbePort,
cslbxProbeDescription,
cslbxProbeProtocolType,
cslbxProbeRouteMethod,
cslbxProbePriority,
cslbxProbeState
}
STATUS current
DESCRIPTION
"The third revision of the collection of SLB server
health probe objects."
::= { ciscoSlbHealthMonMIBGroups 11 }
cshMonSfarmrealserverProbeStatsGroup OBJECT-GROUP
OBJECTS {
cshMonSfarmRealProbesPassed,
cshMonSfarmRealProbesFailed,
cshMonSfarmRealProbeHealthMonState
}
STATUS deprecated
DESCRIPTION
"Group of objects providing statistics of a probe applied
to a real server."
::= { ciscoSlbHealthMonMIBGroups 12 }
cshMonSfarmrealserverProbeStatsGroupRev1 OBJECT-GROUP
OBJECTS {
cshMonServerfarmRealPassedProbes,
cshMonServerfarmRealFailedProbes,
cshMonServerfarmRealProbeHealthMonState,
cshMonServerfarmRealProbeLastProbeTime,
cshMonServerfarmRealProbeLastActiveTime,
cshMonServerfarmRealProbeLastFailedTime,
cshMonProbeInheritedPortType
}
STATUS current
DESCRIPTION
"Group of objects providing statistics of a probe applied
to a real server."
::= { ciscoSlbHealthMonMIBGroups 13 }
cshMonProbeTypeStatsGroup OBJECT-GROUP
OBJECTS {
cshMonProbeTotalSentProbes,
cshMonProbeTotalPassedProbes,
cshMonProbeTotalConnectionErrors,
cshMonProbeTotalReceivedRSTs,
cshMonProbeTotalReceiveTimeouts,
cshMonProbeTotalSendFailures,
cshMonProbeTotalFailedProbes,
cshMonProbeTotalRefusedConns,
cshMonProbeTotalOpenTimeouts,
cshMonProbeTotalActiveSockets
}
STATUS current
DESCRIPTION
"Group of objects providing statistics per probe type."
::= { ciscoSlbHealthMonMIBGroups 14 }
cshMonNotifObjectsGroup OBJECT-GROUP
OBJECTS { cshMonSocketOverusageCount }
STATUS current
DESCRIPTION
"Group of notification objects."
::= { ciscoSlbHealthMonMIBGroups 15 }
cshMonNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS {
cshMonSocketOveruse,
cshMonSocketNormalUse
}
STATUS current
DESCRIPTION
"A collection of objects providing healthmon notifications."
::= { ciscoSlbHealthMonMIBGroups 16 }
END
|