18-Jun-2019 07:30
Hello F5 Community,
I have a separated "Sorry" page URL configured as a Fallback host in the profile settings of a Virtual Server. I would like to redirect HTTP/HTTPS traffic to this "Sorry" page only if a specific URI (http://my-virtual-server.com/probe) is not available. Is it possible via the profile settings or do I have to write an Irule?
And if so, could you please give guidance for writing that rule?
Kind regards
18-Jun-2019 08:59
I think you'll have to do an iRule
The 'easiest' (But perhaps not most efficient) would be to
Now that's not going to be very efficient. That sideband connection will get awfully busy. But it's easy.
A more efficient method would be to replace that wideband query with an explicit pool. And the monitor for the pool checks /probe. And do the redirect to sorry if the pool itself is offline.
You can then add more bells and whistles as you require. But try to keep it simple. Simple things fail far less.
18-Jun-2019 09:16
I would also advise of Hamish, creating a sorry-pool would be lot easier and monitoring the same URI as health check parameter would make your job easier. When this pool goes down, you take your action with an irule.
26-Jun-2019 08:33
Were you able to close this out. Just checking back.
02-Jul-2019 03:24
Hello,
I tried first with an HTTP monitor, but that does not work.
I am know trying the first solution proposed by Hamish, but I am not familiar with iRules.