08-Mar-2023 21:47
I have a pool containing few members with the custom monitor attached. My requirement is to add additional members and monitor to the existing pool with the min availabity function (so that min one monitor should respond to the server and marked up)
Please share the CLI command to modify the setup
08-Mar-2023 22:59
I you have multiple monitors, there is an 'availability requirement 'setting that lets you choose how many monitors would require a member to be UP. here is an example:
ltm pool Tiny_pool {
members {
172.16.100.11:http {
address 172.16.100.11
priority-group 2
session monitor-enabled
state up
}
172.16.100.12:http {
address 172.16.100.12
priority-group 2
session monitor-enabled
state down
}
}
min-active-members 2
monitor min 1 of { gateway_icmp http }
service-down-action reset
}
In the example above, I've set up 2 monitors (gateway_icmp and http) and a minimum of 1 can make the pool member as UP.
09-Mar-2023 01:30
Hello Mihaic,
Thank you for quick response
I'm looking for the cli command that serves below condition in single "modify pool" command
add additional members to existing pool
add additional monitor to the existing pool (old monitor should not be removed) with the min available condition between monitors
09-Mar-2023 02:54
That helps..Thank you