TJ_Vreugdenhil
Dec 28, 2011Cirrus
Monitor send string
I am creating one pool with two pool members with two different IP's and ports, but I want to create a monitor that will check for both pool member host names? The problem is the VIP is going to be created in the future, so I can't match the URL name just yet. Is there a way to do this, or an alternative way? The config below is as follows on 10.2 software:
b monitor test_pool_monitor '{
defaults from https
interval 30
timeout 91
password "pass"
recv "Server Up"
send "GET /monitor/bigip.html HTTP/1.1 \nHost:examplesite1.test.com \nConnection: Close\n\n\r\n"
username "joe"
}'
b pool test_pool '{
monitor all test_pool_monitor
members {
1.1.1.1:7111
2.2.2.2:7112
}
}'
DNS: examplesite1 IP: 1.1.1.1 Ports: 7111
DNS: examplesite2 IP: 2.2.2.2 Ports: 7112