Re: [Nagios-users] Monitor web server run multiple virtual web site

2008-06-05 Thread Victor Lanza
I will look into that.. Thanks!

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


On Jun 4, 2008, at 1:43 PM, Victor Lanza wrote:

 Yes, but this only works with those sites that use basic  
 authentication..and
 as far as I understand, no one has been able to get the windows
 authentication to work with the check_http plugin..

check_http can only use basic auth. It's my understanding that  
WebInject can use NTLM though... This might be a helpful start --

http://www.webinject.org/plugin.html

Google has more information as well.

--
Marc

-
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


-
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


Re: [Nagios-users] Monitor web server run multiple virtual web site

2008-06-05 Thread Randal, Phil
I've recently done this.

The details are in the Webinject forum here:

http://www.webinject.org/cgi-bin/forums/YaBB.cgi?board=Development;actio
n=display;num=1185818423

It works a treat.

Cheers,

Phil
--
Phil Randal
Networks Engineer
Herefordshire Council
Hereford, UK

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Victor
Lanza
Sent: 05 June 2008 13:07
To: 'Marc Powell'; 'nagios Mailinglist'
Subject: Re: [Nagios-users] Monitor web server run multiple virtual web
site

I will look into that.. Thanks!

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


On Jun 4, 2008, at 1:43 PM, Victor Lanza wrote:

 Yes, but this only works with those sites that use basic 
 authentication..and as far as I understand, no one has been able to 
 get the windows authentication to work with the check_http plugin..

check_http can only use basic auth. It's my understanding that WebInject
can use NTLM though... This might be a helpful start --

http://www.webinject.org/plugin.html

Google has more information as well.

--
Marc


-
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



-
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

-
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


Re: [Nagios-users] Monitor web server run multiple virtual web site

2008-06-04 Thread Seth Simmons
Have you tried using -a with check_http?


-a, --authorization=AUTH_PAIR
   Username:password on sites with basic authentication
 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Victor
Lanza
Sent: Wednesday, June 04, 2008 1:14 PM
To: 'Marc Powell'; 'nagios Mailinglist'
Subject: Re: [Nagios-users] Monitor web server run multiple virtual web
site

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_namecheck_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/vse012070mrt/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

-
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


Re: [Nagios-users] Monitor web server run multiple virtual web site

2008-06-04 Thread Victor Lanza
Yes, but this only works with those sites that use basic authentication..and
as far as I understand, no one has been able to get the windows
authentication to work with the check_http plugin..

Thanks though.. I guess I can a simple ping on those sites that I can't use
check_http with


-Original Message-
From: Seth Simmons [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2008 1:53 PM
To: Victor Lanza; Marc Powell; nagios Mailinglist
Subject: RE: [Nagios-users] Monitor web server run multiple virtual web site

Have you tried using -a with check_http?


-a, --authorization=AUTH_PAIR
   Username:password on sites with basic authentication
 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Victor
Lanza
Sent: Wednesday, June 04, 2008 1:14 PM
To: 'Marc Powell'; 'nagios Mailinglist'
Subject: Re: [Nagios-users] Monitor web server run multiple virtual web
site

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_namecheck_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/vse012070mrt/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


-
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


Re: [Nagios-users] Monitor web server run multiple virtual web site

2008-06-04 Thread Seth Simmons
Have you tried -a with [EMAIL PROTECTED]

I just tried it on my exchange server's owa and it worked.
I have ssl enabled so this is the syntax I used.

check_http -H mail.company.com -u /exchange/user -a
[EMAIL PROTECTED]:password --ssl

The results are a 302, which is ok...if I omit the -a and/or --ssl I get
either a 401 or 403 but using the domain logon as above worked...not
sure if that helps you at all.

-Original Message-
From: Victor Lanza [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2008 2:43 PM
To: Seth Simmons; 'Marc Powell'; 'nagios Mailinglist'
Subject: RE: [Nagios-users] Monitor web server run multiple virtual web
site

Yes, but this only works with those sites that use basic
authentication..and
as far as I understand, no one has been able to get the windows
authentication to work with the check_http plugin..

Thanks though.. I guess I can a simple ping on those sites that I can't
use
check_http with


-Original Message-
From: Seth Simmons [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2008 1:53 PM
To: Victor Lanza; Marc Powell; nagios Mailinglist
Subject: RE: [Nagios-users] Monitor web server run multiple virtual web
site

Have you tried using -a with check_http?


-a, --authorization=AUTH_PAIR
   Username:password on sites with basic authentication
 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Victor
Lanza
Sent: Wednesday, June 04, 2008 1:14 PM
To: 'Marc Powell'; 'nagios Mailinglist'
Subject: Re: [Nagios-users] Monitor web server run multiple virtual web
site

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_namecheck_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/vse012070mrt/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


-
Check out the new SourceForge.net Marketplace

Re: [Nagios-users] Monitor web server run multiple virtual web site

2008-06-04 Thread Marc Powell

On Jun 4, 2008, at 1:43 PM, Victor Lanza wrote:

 Yes, but this only works with those sites that use basic  
 authentication..and
 as far as I understand, no one has been able to get the windows
 authentication to work with the check_http plugin..

check_http can only use basic auth. It's my understanding that  
WebInject can use NTLM though... This might be a helpful start --

http://www.webinject.org/plugin.html

Google has more information as well.

--
Marc

-
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


Re: [Nagios-users] Monitor web server run multiple virtual web site

2008-06-01 Thread Hugo van der Kooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

trevor obba wrote:
|
|
| I am running Nagios 2.5 on a Suse Enterprise 10; I would
| like to monitor web server running IIS with multiple virtual web sites.

The trick is to address the website by name. Pretty much like this:

define command {
~command_namecheck_http_url
~command_line$USER1$/check_http -H $ARG1$ -u $ARG2$
~}

define service{
~use linux-counter-template
~host_name   gimel.counter.li.org
~service_description HTTP-counter.li.org
~check_command
check_http_url!counter.li.org!/index.php
~contact_groups  linux-counter
~}

define service{
~use linux-counter-template
~host_name   gimel.counter.li.org
~service_description HTTP-i18n.counter.li.org
~check_command
check_http_url!i18n.counter.li.org!/index.php
~contact_groups  linux-counter
~}

Each virtual website becomes it's own service. But the problem is that
you send the host info with the -H option. But you should send the
virtual server details there instead. As shown in the manual:
~ -H, --hostname=ADDRESS
~Host name argument for servers using host headers (virtual host)
~Append a port to include it in the header (eg: example.com:5000)

Hugo.

- --
[EMAIL PROTECTED]   http://hugo.vanderkooij.org/
PGP/GPG? Use: http://hugo.vanderkooij.org/0x58F19981.asc

A: Yes.
Q: Are you sure?
A: Because it reverses the logical flow of conversation.
Q: Why is top posting frowned upon?

Bored? Click on http://spamornot.org/ and rate those images.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)

iD8DBQFIQnUeBvzDRVjxmYERAj5kAJ4yN96SVErJ+YXk7w+JCFnBcfe0kQCfbXFG
5cZZGc2md6OOpYPimENLBtA=
=c4Gk
-END PGP SIGNATURE-

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/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


Re: [Nagios-users] Monitor web server run multiple virtual web site

2008-05-30 Thread Victor Lanza
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.

Thanks in advance for your help,

Victor


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Wednesday, January 09, 2008 7:55 AM
To: trevor obba
Cc: nagios-user
Subject: Re: [Nagios-users] Monitor web server run multiple virtual web site

try check_http instead

On 1/9/08, trevor obba [EMAIL PROTECTED] wrote:



 I am running Nagios 2.5 on a Suse Enterprise 10; I would
 like to monitor web server running IIS with multiple virtual web sites.





 Each virtual web site has different IP address, Domain name
 and run on different port.





 Here is Nagios command definition





  $USER1$/check_tcp -H
 $HOSTADDRESS$ -p $ARG1$





 The command definition substitute host address of the
 server and then check the port. However in my case I have multiple IP
 address
 serving multiple virtual web sites on different port of the same host.





 How do I configure Nagios to monitor virtual web sites
 running on multiple IP address on the same web server?





 Can you help? Please






   __
 Sent from Yahoo! Mail - a smarter inbox http://uk.mail.yahoo.com



 -
 Check out the new SourceForge.net Marketplace.
 It's the best place to buy or sell services for
 just about anything Open Source.

http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
 ___
 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://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
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


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/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


Re: [Nagios-users] Monitor web server run multiple virtual web site

2008-05-30 Thread Marc Powell

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_namecheck_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/vse012070mrt/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


Re: [Nagios-users] Monitor web server run multiple virtual web site

2008-01-09 Thread kyle . odonnell
try check_http instead

On 1/9/08, trevor obba [EMAIL PROTECTED] wrote:



 I am running Nagios 2.5 on a Suse Enterprise 10; I would
 like to monitor web server running IIS with multiple virtual web sites.





 Each virtual web site has different IP address, Domain name
 and run on different port.





 Here is Nagios command definition





  $USER1$/check_tcp -H
 $HOSTADDRESS$ -p $ARG1$





 The command definition substitute host address of the
 server and then check the port. However in my case I have multiple IP
 address
 serving multiple virtual web sites on different port of the same host.





 How do I configure Nagios to monitor virtual web sites
 running on multiple IP address on the same web server?





 Can you help? Please






   __
 Sent from Yahoo! Mail - a smarter inbox http://uk.mail.yahoo.com



 -
 Check out the new SourceForge.net Marketplace.
 It's the best place to buy or sell services for
 just about anything Open Source.
 http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
 ___
 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://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
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