Thanks for the reply,

Sorry I didn't reply earlier but I had email problems..I've tried your
suggestion already, the issue I face with that is that some of these virtual
sites require authentication, some simple and some Windows Authentication.

This causes Nagios to get a "...401 unauthorized" error message (since
check_http can only handle simple authentication).

Is there no way to just check in IIS if the site is in an started or stopped
state? I think this would be the ideal solution..

Thanks again,

Victor..

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marc Powell
Sent: Friday, May 30, 2008 3:37 PM
To: nagios Mailinglist
Subject: Re: [Nagios-users] Monitor web server run multiple virtual web site


On May 30, 2008, at 1:12 PM, Victor Lanza wrote:

> Hi all,
>
> I have a similar setup and same issue here and I'm trying to use  
> check_http
> but it doesn't seem to be working correctly.
>
> I have IIS setup with multiple virtual sites with different IPs all  
> running
> on the same port (80)
>
>
> My command is: check_http -H 10.10.5.12 -u http://10.10.5.111
>
> However I get the following results whether that site is up or down:
>
> HTTP OK HTTP/1.1 200 OK - 1828 bytes in 0.013 seconds...
>
>
> I really wanted to avoid having to create a host definition for each  
> site.

suggestion --

define host {
        host_name       websites
        alias           Virtual Site Container
        address         127.0.0.1
        ...
}

define service {
        host_name       websites
        service_description     site-10.10.5.111
        check_command           check_http_sites!10.10.5.111
        ...
}
define service {
        host_name       websites
        service_description     site-othersite
        check_command           check_http_sites!10.10.5.200
        ...
}

define command {
        command_name            check_http_sites
        command_line            $USER1$/check_http -H $ARG1$ -u
http://$ARG1$
}

The above assumes that your web server can properly answer for and  
differentiate between http://10.10.5.111 and http://10.10.5.200 (or  
whatever other address is valid).

--
Marc


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Reply via email to