Forum Discussion

philvirtual's avatar
philvirtual
Icon for Nimbostratus rankNimbostratus
Jun 02, 2017

Basic Help forming specific URL HTTP Monitor

Thank you in advance --

 

I have a simple LTM HTTP pool setup with two members. The destination URL is

 

The simple monitor is setup now and i guess is just hitting the IIS default page on port 80, not the sub page. One of my IIS server "noblewebagent" directory is down, and the monitor thinks that they are both working fine... so when i hit the destination URL above, it's sending me to the HTTP ERROR 500 page.

 

What do I need to do to setup the monitor to work for that specific URL?

 

Screenshots of both attached.

 

 

 

1 Reply

  • The simple monitor is setup now and i guess is just hitting the IIS default page

    You are requesting the root path "/". So, try this way:

    GET /noblewebagent HTTP/1.1\r\nHost: nb-wf-web\r\nConnection: close\r\n\r\n

    or this:

    GET /noblewebagent/ HTTP/1.1\r\nHost: nb-wf-web\r\nConnection: close\r\n\r\n

    Regards.