04-Mar-2020 03:10
Hi! as a newbie i need to get get help for an iRule to check if all pool members are down then forward http requests for domains abc.com & xyz* to another vServer (VIP).
I would be thankful for your help
04-Mar-2020 03:27
Please try this ,
when HTTP_REQUEST { if { [active_members EXAMPLETEST_POOL] == 0 } { HTTP::redirect "https://abc.com" } }
Hope it helps you!
Mayur
04-Mar-2020 03:45
Hi Mayur,
Thank you for your answer, i do appreciate it.
there are two conditions for the redirect:
04-Mar-2020 04:40
I tried to manipulate it. Please check if it works for you.
when HTTP_REQUEST {
if { [HTTP::host] equals "abc.com" and { if { [active_members abc_POOL] == 0 }
}} {
HTTP::redirect "https://redirect.com"
}
if { [HTTP::host] equals "xyz.com" and { if { [active_members xyz_POOL] == 0 }
}} {
HTTP::redirect "https://redirect.com"
}
}
04-Mar-2020 11:16
I will diffidently try it and will let you know if it works.
I have also made this one using the of google, what do you think about it?
when HTTP_REQUEST {
if {[active_members [LB::server pool]] == 0 } {
if {(([string tolower [HTTP::host]] equals "abc.com") ||
([string tolower [HTTP::host]] equals "xyz.com") ||
([string tolower [HTTP::host]] contains "example"))
HTTP::redirect "https://redirect.com"
}
}
}