Re: Network Operations Center?

2004-03-18 Thread Jan Wagner
On Thursday 18 March 2004 20:37, Kuba Jakubik wrote: > Hello, > > does anybody know a good and free as in beer Network Monitoring Tool for > linux? > I don't want nagios or such, because it's web-based. Maybe you wonna have a look at http://www.nagios.org/download/extras.php#addons There are serv

Network Operations Center?

2004-03-18 Thread Kuba Jakubik
Hello, does anybody know a good and free as in beer Network Monitoring Tool for linux? I don't want nagios or such, because it's web-based. Moodss is nice, but a little raw... anything more user-friendly? I want to see graphs of several things like bandwidth, ping times etc in realtime, on my

unsubscribe

2004-03-18 Thread Gert De Keersmaecker

Re: Network Operations Center?

2004-03-18 Thread Jan Wagner
On Thursday 18 March 2004 20:37, Kuba Jakubik wrote: > Hello, > > does anybody know a good and free as in beer Network Monitoring Tool for > linux? > I don't want nagios or such, because it's web-based. Maybe you wonna have a look at http://www.nagios.org/download/extras.php#addons There are serv

Re: Checking what running program are using old libraries

2004-03-18 Thread Matt Zimmerman
On Thu, Mar 18, 2004 at 10:03:34AM +, Ronny Adsetts wrote: > Whilst doing security upgrades this morning for openssl, it occurred to me > that lots of software that uses the openssl libraries will not > automatically get restarted and will therefore still be running with old > libraries and

Network Operations Center?

2004-03-18 Thread Kuba Jakubik
Hello, does anybody know a good and free as in beer Network Monitoring Tool for linux? I don't want nagios or such, because it's web-based. Moodss is nice, but a little raw... anything more user-friendly? I want to see graphs of several things like bandwidth, ping times etc in realtime, on my de

unsubscribe

2004-03-18 Thread Gert De Keersmaecker
-- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Checking what running program are using old libraries

2004-03-18 Thread Matt Zimmerman
On Thu, Mar 18, 2004 at 10:03:34AM +, Ronny Adsetts wrote: > Whilst doing security upgrades this morning for openssl, it occurred to me > that lots of software that uses the openssl libraries will not > automatically get restarted and will therefore still be running with old > libraries and

Re: Checking what running program are using old libraries

2004-03-18 Thread Ronny Adsetts
Werner Macho was heard to utter, at roughly 18/03/04 12:27: On Thu, 2004-03-18 at 12:31, Dale Amon wrote: On Thu, Mar 18, 2004 at 12:03:29PM +0100, Jan Dittberner wrote: Such a script exists in testing yep it does, but unfortunately with dependencies, and i don't want my stable system gett

Re: Checking what running program are using old libraries

2004-03-18 Thread Javier Fernández-Sanguino Peña
On Thu, Mar 18, 2004 at 12:03:29PM +0100, Jan Dittberner wrote: > > Such a script exists in testing > > package: debian-goodies > filename: /usr/bin/checkrestart Also in Tiger, it's the 'check_finddeleted' module (at /usr/lib/tiger/scripts). Regards Javier signature.asc Description: Digital

Re: Checking what running program are using old libraries

2004-03-18 Thread Ronny Adsetts
Werner Macho was heard to utter, at roughly 18/03/04 12:27: On Thu, 2004-03-18 at 12:31, Dale Amon wrote: On Thu, Mar 18, 2004 at 12:03:29PM +0100, Jan Dittberner wrote: Such a script exists in testing yep it does, but unfortunately with dependencies, and i don't want my stable system getting co

Re: Checking what running program are using old libraries

2004-03-18 Thread Javier Fernández-Sanguino Peña
On Thu, Mar 18, 2004 at 12:03:29PM +0100, Jan Dittberner wrote: > > Such a script exists in testing > > package: debian-goodies > filename: /usr/bin/checkrestart Also in Tiger, it's the 'check_finddeleted' module (at /usr/lib/tiger/scripts). Regards Javier signature.asc Description: Digital

Re: Checking what running program are using old libraries

2004-03-18 Thread Werner Macho
On Thu, 2004-03-18 at 12:31, Dale Amon wrote: > On Thu, Mar 18, 2004 at 12:03:29PM +0100, Jan Dittberner wrote: > > Such a script exists in testing yep it does, but unfortunately with dependencies, and i don't want my stable system getting confused. allthough i think debian is managing that thing

Re: Checking what running program are using old libraries

2004-03-18 Thread Dale Amon
On Thu, Mar 18, 2004 at 12:03:29PM +0100, Jan Dittberner wrote: > Such a script exists in testing > > package: debian-goodies > filename: /usr/bin/checkrestart Of course you have to do different things for different PID's. Most daemons you can 'restart'. Some you might have to 'stop' and then 'st

Re: Checking what running program are using old libraries

2004-03-18 Thread Lars Ellenberg
/ 2004-03-18 11:07:18 + \ Dale Amon: > > While we're on the subject, what is apache doing? > apache26756 root memDEL0,5 393216 > /SYSV > apache26757 www-data memDEL0,5 393216 > /SYSV > apache26758 www-data

Re: Checking what running program are using old libraries

2004-03-18 Thread Jan Dittberner
On Thu, Mar 18, 2004 at 10:34:36AM +, Ronny Adsetts wrote: > Stefan Neufeind was heard to utter, at roughly 18/03/04 10:24: > > >On 18 Mar 2004 at 10:03, Ronny Adsetts wrote: > > > >>Whilst doing security upgrades this morning for openssl, it occurred to > >> me that lots of software that uses

Re: Checking what running program are using old libraries

2004-03-18 Thread Dale Amon
While we're on the subject, what is apache doing? apache26756 root memDEL0,5 393216 /SYSV apache26757 www-data memDEL0,5 393216 /SYSV apache26758 www-data memDEL0,5 393216 /SYSV0

Re: Checking what running program are using old libraries

2004-03-18 Thread Andrew Pearce
Ronny, You might be thinking of: find /proc -name maps -exec egrep -l 'libssl095' {} /dev/null \; | sed -e 's/[^0-9]//g' | xargs --no-run-if-empty ps --no-headers -p | sed -e 's/^\+//' -e 's/ \+/ /g' | cut -d ' ' -f 5 | sort | uniq as posted in DSA 394 at: http://www.debian.org/security/2003/dsa-3

Re: Checking what running program are using old libraries

2004-03-18 Thread Ronny Adsetts
Stefan Neufeind was heard to utter, at roughly 18/03/04 10:24: On 18 Mar 2004 at 10:03, Ronny Adsetts wrote: Whilst doing security upgrades this morning for openssl, it occurred to me that lots of software that uses the openssl libraries will not automatically get restarted and will therefor

Re: Checking what running program are using old libraries

2004-03-18 Thread Stefan Neufeind
On 18 Mar 2004 at 10:03, Ronny Adsetts wrote: > Whilst doing security upgrades this morning for openssl, it occurred to me > that lots of software that uses the openssl libraries will not automatically > get restarted and will therefore still be running with old libraries and > therefore be vul

Re: Checking what running program are using old libraries

2004-03-18 Thread Giacomo Mulas
On Thu, 18 Mar 2004, Brian Brazil wrote: > On Thu, Mar 18, 2004 at 10:03:34AM +, Ronny Adsetts wrote: > > > I remember someone posting a method for locating programs that are running > > with old libraries, but don't recall where and I can't seem to find the > > right words whilst invoking goo

Re: Checking what running program are using old libraries

2004-03-18 Thread Rolf Kutz
* Quoting Ronny Adsetts ([EMAIL PROTECTED]): > I remember someone posting a method for locating programs that are running > with old libraries, but don't recall where and I can't seem to find the > right words whilst invoking google... lsof +L1 - Rolf

Re: Checking what running program are using old libraries

2004-03-18 Thread Werner Macho
On Thu, 2004-03-18 at 12:31, Dale Amon wrote: > On Thu, Mar 18, 2004 at 12:03:29PM +0100, Jan Dittberner wrote: > > Such a script exists in testing yep it does, but unfortunately with dependencies, and i don't want my stable system getting confused. allthough i think debian is managing that thing

Re: Checking what running program are using old libraries

2004-03-18 Thread Valentin Vidic
On Thu, Mar 18, 2004 at 10:03:34AM +, Ronny Adsetts wrote: > I remember someone posting a method for locating programs that are running > with old libraries, but don't recall where and I can't seem to find the > right words whilst invoking google... Before upgrade you can do: # lsof /usr/

Re: Checking what running program are using old libraries

2004-03-18 Thread Brian Brazil
On Thu, Mar 18, 2004 at 10:03:34AM +, Ronny Adsetts wrote: > Hi all. > > Whilst doing security upgrades this morning for openssl, it occurred to me > that lots of software that uses the openssl libraries will not > automatically get restarted and will therefore still be running with old > l

Checking what running program are using old libraries

2004-03-18 Thread Ronny Adsetts
Hi all. Whilst doing security upgrades this morning for openssl, it occurred to me that lots of software that uses the openssl libraries will not automatically get restarted and will therefore still be running with old libraries and therefore be vulnerable. I usually do this by hand for the mo

Re: Checking what running program are using old libraries

2004-03-18 Thread Dale Amon
On Thu, Mar 18, 2004 at 12:03:29PM +0100, Jan Dittberner wrote: > Such a script exists in testing > > package: debian-goodies > filename: /usr/bin/checkrestart Of course you have to do different things for different PID's. Most daemons you can 'restart'. Some you might have to 'stop' and then 'st

Re: Checking what running program are using old libraries

2004-03-18 Thread Jan Dittberner
On Thu, Mar 18, 2004 at 10:34:36AM +, Ronny Adsetts wrote: > Stefan Neufeind was heard to utter, at roughly 18/03/04 10:24: > > >On 18 Mar 2004 at 10:03, Ronny Adsetts wrote: > > > >>Whilst doing security upgrades this morning for openssl, it occurred to > >> me that lots of software that uses

Re: Checking what running program are using old libraries

2004-03-18 Thread Lars Ellenberg
/ 2004-03-18 11:07:18 + \ Dale Amon: > > While we're on the subject, what is apache doing? > apache26756 root memDEL0,5 393216 /SYSV > apache26757 www-data memDEL0,5 393216 /SYSV > apache26758 www-data mem

Re: Checking what running program are using old libraries

2004-03-18 Thread Dale Amon
While we're on the subject, what is apache doing? apache26756 root memDEL0,5 393216 /SYSV apache26757 www-data memDEL0,5 393216 /SYSV apache26758 www-data memDEL0,5 393216 /SYSV

Re: Checking what running program are using old libraries

2004-03-18 Thread Andrew Pearce
Ronny, You might be thinking of: find /proc -name maps -exec egrep -l 'libssl095' {} /dev/null \; | sed -e 's/[^0-9]//g' | xargs --no-run-if-empty ps --no-headers -p | sed -e 's/^\+//' -e 's/ \+/ /g' | cut -d ' ' -f 5 | sort | uniq as posted in DSA 394 at: http://www.debian.org/security/2003/dsa-3

Re: Checking what running program are using old libraries

2004-03-18 Thread Ronny Adsetts
Stefan Neufeind was heard to utter, at roughly 18/03/04 10:24: On 18 Mar 2004 at 10:03, Ronny Adsetts wrote: Whilst doing security upgrades this morning for openssl, it occurred to me that lots of software that uses the openssl libraries will not automatically get restarted and will therefore s

Re: Checking what running program are using old libraries

2004-03-18 Thread Stefan Neufeind
On 18 Mar 2004 at 10:03, Ronny Adsetts wrote: > Whilst doing security upgrades this morning for openssl, it occurred to me > that lots of software that uses the openssl libraries will not automatically > get restarted and will therefore still be running with old libraries and > therefore be vul

Re: Checking what running program are using old libraries

2004-03-18 Thread Giacomo Mulas
On Thu, 18 Mar 2004, Brian Brazil wrote: > On Thu, Mar 18, 2004 at 10:03:34AM +, Ronny Adsetts wrote: > > > I remember someone posting a method for locating programs that are running > > with old libraries, but don't recall where and I can't seem to find the > > right words whilst invoking goo

Re: Checking what running program are using old libraries

2004-03-18 Thread Rolf Kutz
* Quoting Ronny Adsetts ([EMAIL PROTECTED]): > I remember someone posting a method for locating programs that are running > with old libraries, but don't recall where and I can't seem to find the > right words whilst invoking google... lsof +L1 - Rolf -- To UNSUBSCRIBE, email to [EMAIL PROT

Re: Checking what running program are using old libraries

2004-03-18 Thread Valentin Vidic
On Thu, Mar 18, 2004 at 10:03:34AM +, Ronny Adsetts wrote: > I remember someone posting a method for locating programs that are running > with old libraries, but don't recall where and I can't seem to find the > right words whilst invoking google... Before upgrade you can do: # lsof /usr/

Re: Checking what running program are using old libraries

2004-03-18 Thread Brian Brazil
On Thu, Mar 18, 2004 at 10:03:34AM +, Ronny Adsetts wrote: > Hi all. > > Whilst doing security upgrades this morning for openssl, it occurred to me > that lots of software that uses the openssl libraries will not > automatically get restarted and will therefore still be running with old > l

Checking what running program are using old libraries

2004-03-18 Thread Ronny Adsetts
Hi all. Whilst doing security upgrades this morning for openssl, it occurred to me that lots of software that uses the openssl libraries will not automatically get restarted and will therefore still be running with old libraries and therefore be vulnerable. I usually do this by hand for the mos