[Nagios-users] (no subject)

2005-11-20 Thread karan gupta
Hello Nagios Guru's!

I have setup Nagios1.2 server on a Gentoo linux box. I
need it to monitor Windows 2000/2003 server for a
couple of things
1. CPU, load, hard disk etc.
2. Whether the windows machine can connect to remote
IPs (telnet x.x.x.x xx)

This info needs to be relayed back to Nagios central
sever (Gentoo linux machine) which should generate
alerts based on the thresholds i specify. I looked at
the documentation  am confused how to set this up -
NSClient or NSCA.

Any help will be greatly appreciated!



__ 
Start your day with Yahoo! - Make it your home page! 
http://www.yahoo.com/r/hs


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
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


[Nagios-users] Checking remote servers tunnels

2005-11-20 Thread Brian J. Dent








Nagios Users,



Ive been using NAGIOS for several years to monitor my
clients networks and Windows servers. Many of these clients have IPSec
tunnels to their remote offices. Ive always been able to monitor
the remote locations but never the status of the tunnel. Since my NAGIOS
server is remote to their location, its like coming in from the outside
and making a left turn to check if the tunnel is up or down. 



Reading through
some code snippets gave me this idea using the NRPE_NT plug-in. Obviously
there are permutations but the basics work.



1) Duplicate the nrpe_nt_check_cmd in checkcommands.cfg and change
the suffix to _remote.



2) Add this line to your nrpe.cfg file:

command[nrpe_nt_check_remote]=c:\nrpe_nt\ping_remote.cmd
192.168.2.10 # where 192.168.2.10 is the remote server



3) Create a ping_remote.cmd file in the nrpe_nt folder:

@ECHO OFF

PING -n 1 %1
 FIND TTL=  NUL



IF ERRORLEVEL 0 GOTO REMOTE_FOUND

PING -n 1 -w
3000 %1  FIND TTL=  NUL



IF ERRORLEVEL 1 GOTO REMOTE_DOWN

ECHO REMOTE CONNECTION TO %1 IS SLOW

EXIT 1



:REMOTE_DOWN

ECHO REMOTE CONNECTION TO %1 IS DOWN

EXIT 2



:REMOTE_FOUND

ECHO REMOTE CONNECTION TO %1 IS UP

EXIT 0



REM OK = 0;

REM WARNING = 1;

REM CRITICAL = 2;

REM UNKNOWN = 3;



Regards,
bjd

~Brian J. Dent












Re: [Nagios-users] (no subject)

2005-11-20 Thread VINAY_SHARMA

Use NSclient for windows its very good for monitoing many services...

if need more help reply..

Thanks  regards
**
Vinay Sharma
Information Systems and Solutions-Associates
Advanex Inc (www.advanex.co.jp)
Fon   : 813-3822-5863
Fax : 813-5815-7881
Email   : [EMAIL PROTECTED]



   
  karan gupta   
   
  [EMAIL PROTECTED]  宛先: 
nagios-users@lists.sourceforge.net
  送信者:  cc: 

  [EMAIL PROTECTED]件名: [Nagios-users] (no 
subject)   
  ceforge.net   
   

   

   
  2005/11/21 06:52  
   

   

   




Hello Nagios Guru's!

I have setup Nagios1.2 server on a Gentoo linux box. I
need it to monitor Windows 2000/2003 server for a
couple of things
1. CPU, load, hard disk etc.
2. Whether the windows machine can connect to remote
IPs (telnet x.x.x.x xx)

This info needs to be relayed back to Nagios central
sever (Gentoo linux machine) which should generate
alerts based on the thresholds i specify. I looked at
the documentation  am confused how to set this up -
NSClient or NSCA.

Any help will be greatly appreciated!



__
Start your day with Yahoo! - Make it your home page!
http://www.yahoo.com/r/hs


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
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 the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
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


[Nagios-users] nagios and MySQL

2005-11-20 Thread Craig Worthington
I downloaded the nagios-db plugin for nagios-2.

But there's no install instructions !
I can create the database but unsure of how to install the event processing 
routines.

Is there install instruction or a howto ??

CraigW



---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
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] retention issue

2005-11-20 Thread moshe sharon
hello

please note that the retention_update_interval=60 are in minutes. if you during this time restart nagios
the retention state will not be saved. i would suggest to lower this to 5 minutes and to check if you still have this problem.also ifyou enable retention in the main config file you do not need to specify it per service (only if you want to disable retention for specfic service)



Moshe