For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

Subrun's avatar
Subrun
Icon for Cirrostratus rankCirrostratus
Nov 18, 2019

Select Specific Monitor for Health Monitor "Availability Requirement"

From "Availability Requirement" option of a Pool we can select at least minimum number of Monitor as a Prerequisite for a Pool to be UP.

 

I have 3 monitor for example I want to specify 2 monitor at least to be UP. But I do not see any option to select a Specific Monitor ?

 

Any suggestions on how to do that ?

 

 

 

1 Reply

  • There is no way to do that - you either specify that all monitors are required, or a minimum number of monitors of the available monitors are up.

    ltm pool http_pool {
        members {
            10.0.0.145:http {
                address 10.0.0.145
                session monitor-enabled
                state up
            }
        }
        monitor min 2 of { tcp gateway_icmp http }
    }

    or

    ltm pool http_pool {
        members {
            10.0.0.145:http {
                address 10.0.0.145
                session monitor-enabled
                state up
            }
        }
        monitor tcp and gateway_icmp and http
    }

    You cannot mix the min key option with the and option in the configuration.