ecuthbertgo2_25
Mar 17, 2011Nimbostratus
External timeout :(
Actual configuration:
BIG-IP 9.4.6
virtual test.example.com_https_1455 {
snat automap
pool test.example.com_https_1455
destination 192.168.1.1:1455
ip protocol tcp
profiles
test-http
test-tcp
serverssl
clientssl-test.example.com
persist hash_cookie
}
pool test.example.com_https_1455 {
action on svcdown reselect
members
192.168.1.100:1455
192.168.1.200:1455
monitor all monitor_https_service
}
monitor monitor_https_service {
defaults from HTTPS
timeout 5
}
Additionally, in above monitor there are configured
* Send String is: HEAD /healthCheck/status \r\n
* Receive String is: HTTP/1.1 200 OK
Interval and Timeouts are using same value; 5 secs.
Requirement is check pool members and if a member sends a non HTTP 200 or takes longer than 5 secs in response, traffic should be redirected to other node.
Above configuration is working fine but I GOT A PROBLEM!!!
Even taking 5 seconds in monitor timeout options, I change in /healthCheck/status configuration to take 10 secs in response. Once I did this default 5 secs configuration doesn´t work. Because traffic should be redirected to other pool or after 5 seconds(because response is taking longer thatn 5 seconds) or if receive a 404 error page(that means non HTTP 200).
Can someone help me?
Thank you.