Forum Discussion
- F5LearnNimbostratus
Thank you! those both answers server my two different purposes. Appreciate your help!
Cheers!
- Stanislas_Piro2Cumulonimbus
create a new monitor for port 1 with alias port fixed...
assign this monitor to pool2
this configuration will mark pool2 member down if monitor on port 1 fails
- Lee_SutcliffeNacreous
You could use a Local Traffic Profile or an iRule to check that both pools are available before selecting the pool for your FTP service.
I've provided an example of an iRule below:
when CLIENT_ACCEPTED { if {([active_members pool1] < 1) && ([active_members pool2] < 1)} { pool pool2 } }