The Straight Dope

Go Back   Straight Dope Message Board > Main > General Questions

Reply
 
Thread Tools Display Modes
  #1  
Old 04-16-2009, 04:20 PM
Mr. Slant Mr.  Slant is offline
Guest
 
Join Date: Nov 2001
Freebie Network Monitoring Tools for Windows. Suggestions?

Folks,

I've got a situation where I want to slap an app on one of my Windows PCs that will let me monitor a few hundred hosts.
I'm looking for something that will let me ping my servers and verify that the web server on port 80 is running.
I'd also like something that will let me load the list of servers by means of a CSV file or somesuch. Typing in 1500 IPs is no fun, really.
If I was running Linux, I am certain there would be 25+ viable options.
Unfortunately, as I'm currently stuck on Windows... I can't find anything that fits.

Suggestions?

PS- Mods, I'm looking for suggestions, so I made this an IMHO. My apologies if I misfired.
Reply With Quote
Advertisements  
  #2  
Old 04-16-2009, 07:01 PM
eldowan eldowan is offline
Guest
 
Join Date: May 2008
Quote:
Originally Posted by Mr. Slant View Post
Folks,

I've got a situation where I want to slap an app on one of my Windows PCs that will let me monitor a few hundred hosts.
I'm looking for something that will let me ping my servers and verify that the web server on port 80 is running.
I'd also like something that will let me load the list of servers by means of a CSV file or somesuch. Typing in 1500 IPs is no fun, really.
If I was running Linux, I am certain there would be 25+ viable options.
Unfortunately, as I'm currently stuck on Windows... I can't find anything that fits.

Suggestions?

PS- Mods, I'm looking for suggestions, so I made this an IMHO. My apologies if I misfired.
Well, there are a few things you can do.

1) get a Virtual Machine installed, run a livecd distro that will provide the functionality that you need, and you're golden.

2) take an older, neglected PC, boot it up with a livecd distro, yadda yadda yadda.

3) I believe that wireshark (used to be etherape i believe) and nmap may come in handy. both run on windows and should have good installers.


I kind of like the livecd solution (as if you couldn't tell). There should be a few good free virtual machine solutions by now, and I believe VMware still has their VMware server as a freebie (served me wonders, time and time again). If you go that route, you will have some impact on your host system, but with a task oriented install or livecd like you are using, you should see little to no reduced performance of the host system.
The nice thing about VMs is that they can also read an iso and give that to the VM as a physical cd, so you don't have to burn it, and the access time is GREAT.


I don't really know much about wireshark, but I think it is more for packet capturing and analysis than what you are looking for.

nmap, however, is a pretty neat piece of software. I know you can set it up to use CIDR addresses, and can map whole networks with a pretty simple designation. Something like this if I remember correctly: 192.168.0.0/16 would map the entire 192.168.x.x network with a netmask of 255.255.0.0.
Reply With Quote
  #3  
Old 04-16-2009, 07:19 PM
Dragwyr Dragwyr is offline
Charter Member
 
Join Date: Oct 1999
Location: Right behind you!!!
Posts: 3,649
Network Analysis is a category we have several reviews for at TechSupportAlert.com.

Here is the link:
http://www.techsupportalert.com/best...ysis-tools.htm
Reply With Quote
  #4  
Old 04-16-2009, 09:12 PM
Mr. Slant Mr.  Slant is offline
Guest
 
Join Date: Nov 2001
Due to the VPN setup involved, both a virtual PC and and additional PC are right out.
I'm already running my client "PC" as a VM...

Dragwyr:
None of those do what I need. I'm looking for monitoring, not analysis.
Reply With Quote
  #5  
Old 04-16-2009, 09:50 PM
LSLGuy LSLGuy is offline
Charter Member
 
Join Date: Sep 2003
Location: St. Louis, MO USA
Posts: 6,155
Are you looking to just run a >ping and confirm a packet comes back, or do you need to make an http request on port 80 and anaylse the results to confirm you're getting a valid page, not just a 51 or 404 or ... response?
Reply With Quote
  #6  
Old 04-16-2009, 09:56 PM
Mr. Slant Mr.  Slant is offline
Guest
 
Join Date: Nov 2001
Any response at all from port 80 will suffice for my http test.
Reply With Quote
  #7  
Old 04-17-2009, 08:21 AM
Mr. Slant Mr.  Slant is offline
Guest
 
Join Date: Nov 2001
Mods, it appears that rather than getting suggestions as to the best of breed, my question has now become whether or not such a beast exists at all.
Can I get this moved to GQ?
Reply With Quote
  #8  
Old 04-17-2009, 09:32 AM
Rico Rico is offline
The Mod you can look up to!
Moderator
 
Join Date: Mar 1999
Location: Utah's Dixie
Posts: 4,679
<mod>

Moved to GQ at OP's request.

IMHO > GQ

</mod>
Reply With Quote
  #9  
Old 04-17-2009, 01:54 PM
Omphaloskeptic Omphaloskeptic is offline
Guest
 
Join Date: Oct 2001
This is a pretty straightforward script to write. Here's a threaded Python version (you probably want some sort of concurrency, if you have a few hundred hosts to ping); it's straightforward to clean the output up into a presentable form (or do further verification on it), if that's what you want to do.
Reply With Quote
  #10  
Old 04-17-2009, 02:14 PM
Quartz Quartz is offline
Charter Member
 
Join Date: Jan 2003
Location: Home of the haggis
Posts: 18,546
Can't you write a simple script? You'll need to chain command files, but it looks relatively straightforward.

Basically you use a FOR /F construct to read the contents of a file containing all the hosts which calls a second batch file which tries to ping the host, checks the result, and behaves accordingly.

You don't need Python or Perl or whatever, just the standard Windows commands.

Last edited by Quartz; 04-17-2009 at 02:16 PM. Reason: Forgot to comment on above post
Reply With Quote
  #11  
Old 04-17-2009, 03:33 PM
Mr. Slant Mr.  Slant is offline
Guest
 
Join Date: Nov 2001
Okay.
Question answered.
openNMS now has a Windows version, which seems to meet all of my needs.
Reply With Quote
  #12  
Old 04-17-2009, 03:34 PM
Omphaloskeptic Omphaloskeptic is offline
Guest
 
Join Date: Oct 2001
Quote:
Originally Posted by Quartz View Post
You don't need Python or Perl or whatever, just the standard Windows commands
Yes, the CMD scripting language is sufficient for writing a simple for loop. But allowing concurrent pings and collecting all of their outputs is not easy to do (properly) this way, and if you want to do any sort of analysis (e.g., number of hosts responding, average ping times, etc.) or output collation you really don't want to be using such a limited language, unless there's a really good reason not to install a real one. (I'd recommend Python for this job: good multithreading support, mostly platform-independent, available for Windows, easy to learn.)
Reply With Quote
  #13  
Old 04-17-2009, 04:07 PM
ivn1188 ivn1188 is offline
Guest
 
Join Date: Nov 2008
Big Brother is free, works on windows, and will do everything you want and more. It's very customizable, and once you get the idea of how it works, you can make it do almost anything, such as page you, send email, etc. etc.

It also will dump pages into a webserver, so you can have a "war room" view of everything you are monitoring. And it's free! (Though they are annoyingly set on directing you to the professional version, which is not.)

ETA: I've used this for a large server system and related apps servers, and I think it's a much better solution than openNMS.

Last edited by ivn1188; 04-17-2009 at 04:09 PM.
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 09:19 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

Send questions for Cecil Adams to: cecil@chicagoreader.com

Send comments about this website to: webmaster@straightdope.com

Terms of Use / Privacy Policy

Advertise on the Straight Dope!
(Your direct line to thousands of the smartest, hippest people on the planet, plus a few total dipsticks.)

Publishers - interested in subscribing to the Straight Dope?
Write to: sdsubscriptions@chicagoreader.com.

Copyright © 2013 Sun-Times Media, LLC.