Re: [Nagios-users] check_route or equivalent?

2006-09-22 Thread Robin-David Hammond%KB3IEN

looking at my ping'(ipv4)s man page using -g and the IP of the secondary 
gateway would work.

using ipv6 i tend to run one rtsold advertisement for each pipe for each 
gateway. Thus a host on a network that is comprised of two interconnected 
routers with independent access to two shared pipes would have at /least/ 
4 IPs, thus src address alone is sufficient in the ip6 world!

('local'* services are by fe80:: or rfc 4193 addressing depending upon 
segmentation).

* as in LAN or corporate-internal.

  On Fri, 22 Sep 2006, Hari Sekhon wrote:

 Date: Fri, 22 Sep 2006 19:21:23 +0100
 From: Hari Sekhon [EMAIL PROTECTED]
 To: nagios-users@lists.sourceforge.net
 Subject: [Nagios-users] check_route or equivalent?
 
 I've got a second firewall connected to an adsl modem as a backup and I
 want to be able to monitor that the second line is actually working and
 routing properly to the internet.

 What I would like to do is to send a traceroute to www.google.com but
 send it via the ip of the backup firewall instead of the default gateway.

 I just want to check ping using this ip as my local gateway instead of
 the usual default gateway.

 Does anybody know of a plugin to do this or have any idea how I can send
 this ping without changing my routing on the nagios host server?

 -h

 -- 
 Hari Sekhon



Robin-David Hammond KB3IEN


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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] Service Check Execution Time

2006-09-13 Thread Robin-David Hammond%KB3IEN

Since upgrading to version 2.5 I have the darndest values in the tactical 
overview screen:

excuse my html, but the decimal values are outlandish, and it might help 
to see them in this context.

Is there a known issue here?


table border=0 cellspacing=4 cellspadding=0
tr
td align=left valign=center class='perfItem'a href='extinfo.cgi?type=4' 
class='perfItem'Service Check Execution Time:/a/tdtd valign=top 
class='perfValue' nowrapa href='extinfo.cgi?type=4' 
class='perfValue'0.49 / 4508105376629009.00 / 879630317391028.625 
sec/a/td

/tr
tr
td align=left valign=center class='perfItem'a href='extinfo.cgi?type=4' 
class='perfItem'Service Check Latency:/a/tdtd valign=top 
class='perfValue' nowrapa href='extinfo.cgi?type=4' 
class='perfValue'inf / inf / inf sec/a/td
/tr
tr
td align=left valign=center class='perfItem'a href='extinfo.cgi?type=4' 
class='perfItem'Host Check Execution Time:/a/tdtd valign=top 
class='perfValue' nowrapa href='extinfo.cgi?type=4' 
class='perfValue'0.00 / 10.17 / 2.372 sec/a/td
/tr
tr
td align=left valign=center class='perfItem'a href='extinfo.cgi?type=4' 
class='perfItem'Host Check Latency:/a/tdtd valign=top 
class='perfValue' nowrapa href='extinfo.cgi?type=4' 
class='perfValue'0.00 / inf / inf sec/a/td
/tr
tr

td align=left valign=center class='perfItem'a 
href='status.cgi?host=allserviceprops=131072' class='perfItem'# Active 
Host / Service Checks:/a/tdtd valign=top class='perfValue' nowrapa 
href='status.cgi?hostgroup=allhostprops=131072style=hostdetail' 
class='perfValue'29/a / a 
href='status.cgi?host=allserviceprops=131072' 
class='perfValue'41/a/td
/tr
tr
td align=left valign=center class='perfItem'a 
href='status.cgi?host=allserviceprops=65536' class='perfItem'# Passive 
Host / Service Checks:/a/tdtd valign=top class='perfValue' nowrapa 
href='status.cgi?hostgroup=allhostprops=65536style=hostdetail' 
class='perfValue'0/a / a href='status.cgi?host=allserviceprops=65536' 
class='perfValue'0/a/td
/tr
/table


Robin-David Hammond KB3IEN
+1 347 350 34 00


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
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] Rsync server test

2006-09-06 Thread Robin-David Hammond%KB3IEN
I only ever use rsync in conjunction with sshd.

short of generating errors with the check_tcp you could nmap the port 
(might that generate more/less noise).

or you could have a test that retreives a file from rsync, thereby 
creating an access entry in the log, but no error.

A more advanced solution would be to run lsof on the monitored host, and 
see if rsync is running, is not zombie, and is listening on TCP 873.


On Wed, 6 Sep 2006, Hari Sekhon wrote:

 Date: Wed, 06 Sep 2006 13:19:02 +0100
 From: Hari Sekhon [EMAIL PROTECTED]
 To: nagios-users@lists.sourceforge.net
 Subject: [Nagios-users] Rsync server test
 
 I am testing an Rsync server by doing

 ./check_tcp -H $HOSTADDRESS$ -p 873


 but I have noticed that this causes the Rsync server to spew the
 following into the logs:

 rsyncd[10422]: rsync: writefd_unbuffered failed to write 74 bytes
 [receiver]: Broken pipe (32)
 rsyncd[10422]: rsync error: error in rsync protocol data stream (code
 12) at io.c(1121) [receiver=2.6.8]


 every single time a check is performed. This is obviously because of the
 tcp connection and then abrupt disconnection. I'd really like to get rid
 of all this noise from the logs.

 Is there a better way of doing this? Does anybody else monitor a Rsync
 server with nagios and if so how?


 Hari Sekhon

 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 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



Robin-David Hammond KB3IEN
+1 347 350 34 00


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
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 generated email.

2006-09-04 Thread Robin-David Hammond%KB3IEN


Where do i configure the FROM address for nagios's outbound emails?

bash-3.1# cat qfk8436oNG006748
V8
T1157339509
K1157393302
N31
P2730634
I4/0/122148
MDeferred: Connection timed out with mail.tmail.com.
Fwbs
$_localhost [IPv6:::1]
$rESMTP
$sgw-jfk-0-0.kb3ien
${daemon_flags}OO
S[EMAIL PROTECTED]
MDeferred: Connection timed out with mail.example.com.
rRFC822; [EMAIL PROTECTED]
RPFD:[EMAIL PROTECTED]
H?P?Return-Path: g
H??Received: from gw-jfk-0-0.kb3ien (localhost [IPv6:::1])
 by gw-jfk-0-0.kb3ien (8.13.7/8.13.3) with ESMTP id k8436oNG006748
 for [EMAIL PROTECTED]; Mon, 4 Sep 2006 03:11:49 GMT
H??Received: (from [EMAIL PROTECTED])
 by gw-jfk-0-0.kb3ien (8.13.7/8.13.3) id k7V5Doue012529
 for [EMAIL PROTECTED]; Thu, 31 Aug 2006 05:13:50 GMT
H??Date: Thu, 31 Aug 2006 05:13:50 GMT
H??From: [EMAIL PROTECTED]
H??Message-Id: [EMAIL PROTECTED]
H??To: [EMAIL PROTECTED]
H??Subject: ** PROBLEM alert - Andromeda Email/Shell/Web Server/PING6 is 
CRITICAL **
.

yes, these arnt the real addresses, but i want to change,

H??From: [EMAIL PROTECTED]

to something else. seems to be pulling the name of the effectiveuserid and 
the `hostname`. joins them together with a @, and hopes for the best.



Robin-David Hammond KB3IEN


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
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] nagios generated email.

2006-09-04 Thread Robin-David Hammond%KB3IEN

In that case, my question becomes: from where does nagios invoke the 
mailer? For it needs more arguments than it is using.


On Mon, 4 Sep 2006, Morris, Patrick wrote:

 Date: Mon, 4 Sep 2006 14:50:17 -0400
 From: Morris, Patrick [EMAIL PROTECTED]
 To: Robin-David Hammond%KB3IEN [EMAIL PROTECTED],
 nagios-users@lists.sourceforge.net
 Subject: Re: [Nagios-users] nagios generated email.
 
 Where do i configure the FROM address for nagios's outbound emails?

 It will go out from the user Nagios runs as.  The rest is handled by
 your mailer.

 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 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


Robin-David Hammond KB3IEN


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
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] (no subject)

2006-09-03 Thread Robin-David Hammond%KB3IEN



configure+make failed.

configure succeeded, but generated this warning:

configure: WARNING: sys/mount.h: present but cannot be compiled
configure: WARNING: sys/mount.h: check for missing prerequisite 
headers?

configure: WARNING: sys/mount.h: see the Autoconf documentation
configure: WARNING: sys/mount.h: section Present But Cannot Be 
Compiled

configure: WARNING: sys/mount.h: proceeding with the preprocessor's result
configure: WARNING: sys/mount.h: in the future, the compiler will take 
precedence

configure: WARNING: ## - ##
configure: WARNING: ## Report this to the nagios-plugins lists.  ##
configure: WARNING: ## - ##

there is no sys/mount.h in the tarball, so I assume that this is a 
reference to one of the following:

/usr/include/sys/mount.h
/usr/src/sys/compat/sys/mount.h
/usr/src/sys/sys/mount.h

As best I can tell this is an autoconf snafu, and I am looking for a line 
like the following in the configure scripts:


AC_CHECK_HEADERS

but haven't found it yet.


What is nagios expecting to find in this file? AND WHY?

make failed,
mountlist.c: In function `fstype_to_string':
mountlist.c:187: error: case label does not reduce to an integer constant
mountlist.c:203: error: case label does not reduce to an integer constant
mountlist.c:207: error: case label does not reduce to an integer constant
mountlist.c:211: error: case label does not reduce to an integer constant
mountlist.c:215: error: case label does not reduce to an integer constant
mountlist.c:223: error: case label does not reduce to an integer constant
mountlist.c:227: error: case label does not reduce to an integer constant
mountlist.c:231: error: case label does not reduce to an integer constant
mountlist.c:235: error: case label does not reduce to an integer constant
mountlist.c:239: error: case label does not reduce to an integer constant
mountlist.c:243: error: case label does not reduce to an integer constant
mountlist.c:247: error: case label does not reduce to an integer constant
mountlist.c:251: error: case label does not reduce to an integer constant
mountlist.c:255: error: case label does not reduce to an integer constant
mountlist.c:263: error: case label does not reduce to an integer constant
mountlist.c: At top level:
mountlist.c:274: warning: `struct statfs' declared inside parameter list
mountlist.c:274: warning: its scope is only this definition or 
declaration, which is probably not what you want

mountlist.c: In function `fsp_to_string':


looking inside mountlist.c at line 187:


   case MOUNT_MFS:



Robin-David Hammond KB3IEN
bash-3.1# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking build system type... powerpc-unknown-netbsd3.0
checking host system type... powerpc-unknown-netbsd3.0
checking for a BSD-compatible install... /usr/bin/install -c
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for AIX... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ANSI C... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking whether gcc needs -traditional... no
checking for ranlib... ranlib
checking whether make sets $(MAKE)... (cached) yes
checking for gawk... (cached) awk


checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... yes
checking for error_at_line... no
checking for getloadavg... yes
checking for pstat_getdynamic... no
checking for kstat_open in -lkstat... no
checking for getloadavg... yes
checking whether getloadavg requires setgid

[Nagios-users] mount.h revisited.

2006-09-03 Thread Robin-David Hammond%KB3IEN


I have determined that the mount.h being read is /usr/include/sys/mount.h

The problem is that NGROUP is not defined. This is because configure 
failed to include wait.h


as a temporary patch i added this to mount.h.

// added rdh
#ifndef _SYS_WAIT_H_
#include sys/wait.h
// /added rdh

now instead of these earlier errors:

configure: WARNING: sys/mount.h: present but cannot be compiled
configure: WARNING: sys/mount.h: check for missing prerequisite headers?
configure: WARNING: sys/mount.h: see the Autoconf documentation
configure: WARNING: sys/mount.h: section Present But Cannot Be Compiled
configure: WARNING: sys/mount.h: proceeding with the preprocessor's result
configure: WARNING: sys/mount.h: in the future, the compiler will take 
precedence

configure: WARNING: ## - ##
configure: WARNING: ## Report this to the nagios-plugins lists.  ##
configure: WARNING: ## - ##


i get these even less useful error:

checking sys/mount.h usability... no
checking sys/mount.h presence... no
checking for sys/mount.h... no
...
checking for sys/mount.h... (cached) no

Why would configure fail to see mount.h now?

ls -lu /usr/include/sys/mount.h
-r--r--r--  1 root  wheel  14520 Sep  3 17:51 mount.h

seems that mount.h is still readable, and still being read, because 
re-running configure increases the last-read date.




this much didn't change:

make failed,
mountlist.c: In function `fstype_to_string':
mountlist.c:187: error: case label does not reduce to an integer constant
mountlist.c:203: error: case label does not reduce to an integer constant
mountlist.c:207: error: case label does not reduce to an integer constant
mountlist.c:211: error: case label does not reduce to an integer constant
mountlist.c:215: error: case label does not reduce to an integer constant
mountlist.c:223: error: case label does not reduce to an integer constant
mountlist.c:227: error: case label does not reduce to an integer constant
mountlist.c:231: error: case label does not reduce to an integer constant
mountlist.c:235: error: case label does not reduce to an integer constant
mountlist.c:239: error: case label does not reduce to an integer constant
mountlist.c:243: error: case label does not reduce to an integer constant
mountlist.c:247: error: case label does not reduce to an integer constant
mountlist.c:251: error: case label does not reduce to an integer constant
mountlist.c:255: error: case label does not reduce to an integer constant
mountlist.c:263: error: case label does not reduce to an integer constant
mountlist.c: At top level:
mountlist.c:274: warning: `struct statfs' declared inside parameter list
mountlist.c:274: warning: its scope is only this definition or declaration, 
which is probably not what you want

mountlist.c: In function `fsp_to_string':


looking inside mountlist.c at line 187:


   case MOUNT_MFS:



Robin-David Hammond KB3IENbash-3.1# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking build system type... powerpc-unknown-netbsd3.0
checking host system type... powerpc-unknown-netbsd3.0
checking for a BSD-compatible install... /usr/bin/install -c
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for AIX... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ANSI C... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking whether gcc needs -traditional... no
checking for ranlib... ranlib
checking whether make sets $(MAKE)... (cached) yes
checking for gawk... (cached) awk


checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes

[Nagios-users] libMYSQL

2006-09-03 Thread Robin-David Hammond%KB3IEN

Im trying to compile the plugins including the mysql client one

REQUIREMENTS tell me that i need

check_mysql:
 - Requires the MySQL libraries available from
   http://www.mysql.org
 Lib: libmysql, libmysqlclient
 Redhat Powertools Source: mysql-3.20.32a-3.i386.rpm, 
mysql-devel-3.20.32a-3.i386.rpm (these seem to be broken, however)
 RPMS from www.mysql.org work better


bash-3.1# pkg_info |grep sql
mysql-client-5.0.22 MySQL 5, a free SQL database (client)
mysql-server-5.0.22nb1 MySQL 5, a free SQL database (server)


I have :
bash-3.1# locate libmysql
/usr/local/lib/mysql/libmysqlclient.a
/usr/local/lib/mysql/libmysqlclient.la
/usr/local/lib/mysql/libmysqlclient.so
/usr/local/lib/mysql/libmysqlclient.so.15
/usr/local/lib/mysql/libmysqlclient.so.15.0.0
/usr/local/lib/mysql/libmysqlclient_r.a
/usr/local/lib/mysql/libmysqlclient_r.la
/usr/local/lib/mysql/libmysqlclient_r.so
/usr/local/lib/mysql/libmysqlclient_r.so.15
/usr/local/lib/mysql/libmysqlclient_r.so.15.0.0

Do i need another pkg?

Robin-David Hammond KB3IEN


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
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] libMYSQL

2006-09-03 Thread Robin-David Hammond%KB3IEN

uname -a

NetBSD gw-jfk-0-0 3.0 NetBSD 3.0 (GENERIC) #0: Sat Dec 24 04:40:36 UTC 2005 
[EMAIL 
PROTECTED]:/home/builds/ab/netbsd-3/macppc/20051223Z-obj/home/builds/ab/netbsd-3/src/sys/arch/macppc/compile/GENERIC
 
macppc



  On Sun, 3 Sep 2006, Richard Galvez wrote:

 Date: Sun, 03 Sep 2006 14:23:07 -0400
 From: Richard Galvez [EMAIL PROTECTED]
 To: Robin-David Hammond%KB3IEN [EMAIL PROTECTED]
 Cc: nagios-users@lists.sourceforge.net
 Subject: Re: [Nagios-users] libMYSQL
 
 Hi,
 
 What distro are you running?
 
 On Sun, 2006-09-03 at 18:14 +, Robin-David Hammond%KB3IEN wrote:
 Im trying to compile the plugins including the mysql client one
 
 REQUIREMENTS tell me that i need
 
 check_mysql:
  - Requires the MySQL libraries available from
http://www.mysql.org
  Lib: libmysql, libmysqlclient
  Redhat Powertools Source: mysql-3.20.32a-3.i386.rpm,
 mysql-devel-3.20.32a-3.i386.rpm (these seem to be broken, however)
  RPMS from www.mysql.org work better
 
 
 bash-3.1# pkg_info |grep sql
 mysql-client-5.0.22 MySQL 5, a free SQL database (client)
 mysql-server-5.0.22nb1 MySQL 5, a free SQL database (server)
 
 
 I have :
 bash-3.1# locate libmysql
 /usr/local/lib/mysql/libmysqlclient.a
 /usr/local/lib/mysql/libmysqlclient.la
 /usr/local/lib/mysql/libmysqlclient.so
 /usr/local/lib/mysql/libmysqlclient.so.15
 /usr/local/lib/mysql/libmysqlclient.so.15.0.0
 /usr/local/lib/mysql/libmysqlclient_r.a
 /usr/local/lib/mysql/libmysqlclient_r.la
 /usr/local/lib/mysql/libmysqlclient_r.so
 /usr/local/lib/mysql/libmysqlclient_r.so.15
 /usr/local/lib/mysql/libmysqlclient_r.so.15.0.0
 
 Do i need another pkg?
 
 Robin-David Hammond KB3IEN
 
 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job 
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 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
 
 !DSPAM:44fb1ba6137281745514564!
 



Robin-David Hammond KB3IEN
+1 347 350 34 00


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
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] mountlist.c:187: error: case label does not reduce to an integer constant

2006-08-29 Thread Robin-David Hammond%KB3IEN


I just downloaded the lasted? modules,

MD5 (nagios-plugins-1.4.3.tar.gz) = 2c40fc69d51cc979e85150870a1daa93


did ./configure and tired both make and gmake to no avail. It seems there 
is a missing header file. Does any one know anything about this?



Robin-David Hammond KB3IEN


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
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] Periodic failure of cgi.

2006-08-28 Thread Robin-David Hammond%KB3IEN


[Tue Aug 22 09:21:18 2006] [error] [client 192.168.102.128] Premature end 
of script headers: status.cgi
[Wed Aug 23 07:47:47 2006] [error] [client 192.168.102.128] Premature end 
of script headers: status.cgi
[Thu Aug 24 04:29:19 2006] [error] [client 192.168.102.128] Premature end 
of script headers: extinfo.cgi
[Thu Aug 24 14:50:53 2006] [error] [client 192.168.102.128] Premature end 
of script headers: status.cgi
[Thu Aug 24 22:38:11 2006] [error] [client 192.168.102.128] Premature end 
of script headers: status.cgi


It seems like every 12 hours or so a web page stops loading, once the cgi 
has broken once, the client does not accept the 'Reload' header and the 
frame sits blank until the user clicks on a monitoring link again.

Any ideas how to get more debuging info out of this cgi?

Robin-David Hammond KB3IEN


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
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] nmap

2006-08-17 Thread Robin-David Hammond%KB3IEN

Has anyone used nagios to track changes in the open ports on remote hosts?

I'm thinking that if the output of nmap changes one hour to the next that 
something ought to be investigated.

Sure it might be nothing, but might be a OOh a root-kit! How Nice! 
moment.


Robin-David Hammond KB3IEN
+1 347 350 34 00


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
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] ARP

2006-08-17 Thread Robin-David Hammond%KB3IEN

I have a dumb-as-nails Motorola SIP adapter from  certain VoIP provider.

The think act closed on all tcp/udp ports and ignores ICMP echo request.

Mercifully the thing is hardwired to the nagios machine.

Anyone how a check_arp_tables script that will raise some kinda hell if 
the arp entry vanishes?


Robin-David Hammond KB3IEN
+1 347 350 34 00


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
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