On Fri, 2003-08-08 at 10:02, Chris wrote:
> I have an intermitent problem on one of my servers with the Apache service
> failing at random intervals. How would I go about checking, in a shell
> script (run every few minutes with cron), whether httpd service is "running"
> or "stopped", and if "sto
Yohann DESQUERRE (DSI NOISIEL) wrote:
> Hi all,
>
>
> I try to monitor my network via snmp and I don't know which mib file
> is used by redhat 9.0
>
>
I'm not aware of a net-snmp using a single mib file.
1) Have you looked at: /usr/share/snmp/mibs
2) Have you dumped the entire mib tree using
Thanks all for your input. Monit looks like it is the way to go for my
needs.
> -Original Message-
> From: Mark Foster [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, June 04, 2003 1:45 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Monitoring and Notification of Failed
I recommend monit.
http://www.tildeslash.com/monit/
-mark
On Wed, 2003-06-04 at 12:38, Mike Burger wrote:
> On Wed, 4 Jun 2003, Christopher Lyon wrote:
>
> > I have been having some problems with some of the services running on
> > Redhat 8.0. I will do a service start and the service will run
>
On Wed, 4 Jun 2003, Christopher Lyon wrote:
> I have been having some problems with some of the services running on
> Redhat 8.0. I will do a service start and the service will run
> for a while but during the night it will fail. I have fixed the problem
> with that service but I want to be e-mai
The following simple bash script may help:
#!/bin/bash
if [ `ps -ax |grep httpd |grep -v grep |wc -l` -lt 1 ]
then
echo HTTPD server dead. Restarting HTTPD at `date`...
/etc/init.d/httpd restart
echo HTTPD Server Started at `date`...
fi
Just replace the httpd with your se
> On Mon, 2003-06-02 at 12:39, sentinel wrote:
> > Good tools however they are not GUI based. MRTG and RRDtool write logs and
> > create charts/web pages. Snort has ACID which is a GUI tool but typically
> > is used to monitor network intrusion. iptraf is a firewall filter which can
> > also wri
Alle 19:06, lunedì 02 giugno 2003, Tom Smith ha scritto:
> I've also found NTop and Nagios good programs for doing this. They both
> (in my humble opinion) have a much cleaner and well refined interface
> for viewing and gathering network-related statistics.
I'm using ntop and find it really good
sentinel wrote:
Good tools however they are not GUI based. MRTG and RRDtool write logs and
create charts/web pages. Snort has ACID which is a GUI tool but typically
is used to monitor network intrusion. iptraf is a firewall filter which can
also write logs and charts created.
It was my understa
On Mon, 2003-06-02 at 12:39, sentinel wrote:
> Good tools however they are not GUI based. MRTG and RRDtool write logs and
> create charts/web pages. Snort has ACID which is a GUI tool but typically
> is used to monitor network intrusion. iptraf is a firewall filter which can
> also write logs an
Good tools however they are not GUI based. MRTG and RRDtool write logs and
create charts/web pages. Snort has ACID which is a GUI tool but typically
is used to monitor network intrusion. iptraf is a firewall filter which can
also write logs and charts created.
It was my understanding he was loo
I use iptraf and snort, for me are the best traffic
"monitor"
--- sentinel <[EMAIL PROTECTED]> escribió: >
Better? Well.. Yes and no. I've been looking at
> switching over to it for
> some time. You have more options with RRDtool. For
> example, with MRTG you
> couldn't chart more than two it
Better? Well.. Yes and no. I've been looking at switching over to it for
some time. You have more options with RRDtool. For example, with MRTG you
couldn't chart more than two items in the same chart. You would have to
create multiple charts to track multiple items. RRDtool however allows you
is RRDtool better then MRTG ?
On Fri, 30 May 2003, sentinel wrote:
> Personally for a web/gui based tool I really like MRTG. I understand that
> it will soon be going away (if it hasn't already) in favor of it's bigger
> brother RRDtool. Basically using SNMP to pull from your SNMP enabled
>
Personally for a web/gui based tool I really like MRTG. I understand that
it will soon be going away (if it hasn't already) in favor of it's bigger
brother RRDtool. Basically using SNMP to pull from your SNMP enabled
devices whatever you want. I've been using it for years. It's been a great
add
You could try etherape.
On Fri, 2003-05-30 at 10:20, [EMAIL PROTECTED] wrote:
> Greetings!
>
> I have a leased line connection to the Internet and this
> is being shared by a hundred of users in my LAN. Is there
> a tool, preferably web or GUI based, that will show me the bandwidth usage
> of ea
On Wed, 19 Feb 2003 at 9:56pm (-0700), Jason Riedel wrote:
> Does anyone know a really good way to monitor bind, like requests
> processed a second etc so that I can see how much load my system is under.
> I would prefer an MRTG type application...I am currently writing perl apps
> using informati
re how much
> bandwidth this game uses.
>
> Anyone has a good tip ?
>
>
> >From: Wim De Hul <[EMAIL PROTECTED]>
> >Reply-To: [EMAIL PROTECTED]
> >To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
> >Subject: Re: Monitoring network traffic on p
;
> >From: Wim De Hul <[EMAIL PROTECTED]>
> >Reply-To: [EMAIL PROTECTED]
> >To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
> >Subject: Re: Monitoring network traffic on port nivo
> >Date: 29 Nov 2002 10:13:35 +0100
> >
> >Hi Raymon
good tip ?
From: Wim De Hul <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
Subject: Re: Monitoring network traffic on port nivo
Date: 29 Nov 2002 10:13:35 +0100
Hi Raymond,
Are it servers or routers you need to monitor?
If it are
Hi Raymond,
Are it servers or routers you need to monitor?
If it are routers, take a loot at netflow at www.caida.org
Graphing can be done with cacti at www.raxnet.net, it uses RRDTool from
Tobi Oetiker!
Cheers!
Wim
On Fri, 2002-11-29 at 10:02, Raymond van den Houwen wrote:
> Does anyone know
ipchains -L , will tell you the current rules, if it's empty then it isn't active and
yeah logging them in /var/log/messages and then probably tail -f | grepping the
firewall logs parameters and redirecting it to another file, and then another shell
script who keeps watching that output file, i
At 10:28 09/07/2002 -0400, you wrote:
>On Tue, 2002-07-09 at 10:27, Shaw, Marco wrote:
> > We use HP ITO/VPO at work. I'm trying to figure out how we can monitor
> ipchains, and make sure it's running. I see nothing shows up in ps
> related to ipchains, probably since it runs as a kernel modul
On Tue, 2002-07-09 at 10:27, Shaw, Marco wrote:
> We use HP ITO/VPO at work. I'm trying to figure out how we can monitor ipchains,
>and make sure it's running. I see nothing shows up in ps related to ipchains,
>probably since it runs as a kernel module.
>
> Any ideas on how we can monitor ipc
"Todd A. Jacobs" wrote:
>
> On Thu, 9 Nov 2000, Simons wrote:
>
> > Is there any tools in redhat can monitor/count the traffic of eth0 in
> > bytes/sec ?
>
> Get the rpms for either iptraf or ethereal.
>
>
Try ntop
Cokey
--
--
On Thu, 9 Nov 2000, Simons wrote:
> Is there any tools in redhat can monitor/count the traffic of eth0 in
> bytes/sec ?
Get the rpms for either iptraf or ethereal.
--
Todd A. Jacobs
Senior Network Consultant
___
Redhat-list mailing list
[EMAIL PR
Take a look at iptraf...there's a RPM around.
MRW
- Original Message -
From: "Simons" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, November 08, 2000 11:49 AM
Subject: monitoring the traffic of eth0 ?
> Hello,
>
> Is there any tools in redhat can monitor/count the traff
MRTG and snmpd.
On Thu, 9 Nov 2000, Simons wrote:
> Hello,
>
> Is there any tools in redhat can monitor/count the traffic of eth0 in
> bytes/sec ?
> or any 3rd party software to do it ?
> (recompile kernel will be my last resort)
>
> Thank you very much.
>
>
>
>
>
>
> ___
Ethereal might be what you are looking for too.
Maximum Linux shipped this month with four or five sniffers (Ethereal,
Sniffit, Perro, etc) and some other security tools. That might be what you
are looking for?
Tyler
On Wed, 08 Nov 2000 12:52:58 John Aldrich wrote:
> On Wed, 08 Nov 2000, Sim
On Wed, 08 Nov 2000, Simons wrote:
> Hello,
>
> Is there any tools in redhat can monitor/count the traffic of eth0 in
> bytes/sec ?
> or any 3rd party software to do it ?
> (recompile kernel will be my last resort)
>
Investigate "sniffit."
John
For barebones traffic monitoring, you can do something like this:
watch -n 1 'cat /proc/net/dev'
--Matt
On Thu, Nov 09, 2000 at 12:49:13AM +0800, Simons wrote:
> Hello,
>
> Is there any tools in redhat can monitor/count the traffic of eth0 in
> bytes/sec ?
> or any 3rd party software to do it
check out mrtg or ntop
http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/mrtg.html
http://www.ntop.org/ntop.html
Charlie
-Original Message-
From: Tomer Okavi [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 28, 2000 12:01 PM
To: [EMAIL PROTECTED]
Subject: Monitoring Traffic Rates
At 02:01 AM 7/19/00 , Mark Ivey <[EMAIL PROTECTED]> wrote:
>Hi,
>
>I keep seeing comments similar to "someone port-scanned my firewall today,
>and here is who they were..." and I was wondering how you manage to get
>this information (both the fact that someone scanned you, and then the
>info on th
Mark Ivey wrote:
> Hi,
>
> I keep seeing comments similar to "someone port-scanned my firewall today,
> and here is who they were..." and I was wondering how you manage to get
> this information (both the fact that someone scanned you, and then the
> info on the originating system). Thanks...
>
the first place to always look is /var/log/secure and /var/log/messages
see what you said.
:Hi,
:
:I keep seeing comments similar to "someone port-scanned my firewall today,
:and here is who they were..." and I was wondering how you manage to get
:this informati
this wouldn't work for X would it? If so I might take a look too. If not any
Ideas?
Bret
Brad 'GreyBear' Davis wrote:
> TTYSNOOP comes to mind... Have you tried that? I'm pretty sure it should
> still work in 6.1
>
> Brad 'GreyBear' Davis - CTO, PeoplePublish, Inc.
> -
TTYSNOOP comes to mind... Have you tried that? I'm pretty sure it should
still work in 6.1
Brad 'GreyBear' Davis - CTO, PeoplePublish, Inc.
On the web at http://www.peoplepublish.com
Free Market Publishing, enabled by the Internet
- Origina
37 matches
Mail list logo