For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

Ankitk_265377's avatar
Ankitk_265377
Icon for Nimbostratus rankNimbostratus
Jun 17, 2016

Is there any way to configure health monitor in below scenerio ?

Is there any way to monitor the Applications server through f5 which are not immediate behind the f5 device ?

 

Scenerio :

 

Client ------------> F5--------->Webservers -----------> Application server

 

Client : User machine, f5 : LTM, Webserver : Backend server which configured on f5 with ports, Application server : Not directly connect with F5, directly connect with Webservers

 

So is there way to monitor both Webservers & Applications through f5, if any one goes down completely f5 will come to know & change the status of their VIP ?

 

Thanks Ankit Katyal

 

2 Replies

  • Best way would probably be to monitor some resource on the webserver that indirectly contains the status of the application server, for example (if application is a java server like tomcat) some custom jsp page that checks the availabilty of the tomcat and returns something like "all OK" via the webserver.

     

  • Use something like this for "Send String":

    GET /index.html HTTP/1.1\r\nHost: host.domain.com\r\nConnection: Close\r\n

    "Response String" should be a unique value in the content. If the "Response String" somehow depends on your application performance/uptime, you will end up monitoring the application availability.

    Reference link.