Hi All,
I'm running the latest Nagios version on Ubuntu server 11.
We are also using Microsoft ISA server as our proxy server.
When I try to monitor external web address using the check_http I get connection refused error.
After searching the web I found that Nagios check_http needs extra configuration when using a proxy server.
Can someone point me to what I need to do in order to get check_http to work behind a proxy server ?
Regards,
Simon
Check_http not working with proxy server
Re: Check_http not working with proxy server
The following should work:
check_http -H <website> -I user:password@proxyaddress -p port
Now I can't remember off the top of my head if you can just use the above for -I or if it needs to be in the format of http://user:password@proxyaddress
check_http -H <website> -I user:password@proxyaddress -p port
Now I can't remember off the top of my head if you can just use the above for -I or if it needs to be in the format of http://user:password@proxyaddress
Re: Check_http not working with proxy server
Thanks for that, I'll try it