site Search:


 
    All Forums Hot Topics Gallery






how-to block ads


 
Search Topic:
Uniqs:
2437
Share Topic
Posting?
Post a:
Post a:
Links: ·Networking FAQ ·Links! ·HOWTOs ·Freezes? ·Site FAQ
page: 1 · 2
AuthorAll Replies

kungpow

join:2002-10-06
Canada

[Windows] Ping Alert Program

Hi,

I'm looking for a program that can do the following:
-ping a server constantly
-alert me if there's no ping response after 5minutes
-correspond the pings with the actual time. eg. ping #567 = Jan 17, 2012 10am.

What ping programs do you recommend?

Thanks for your help!


clarknova

join:2010-02-23
Fairview, AB
kudos:5

»community.zenoss.org/index.jspa

or any snmp-or-monitoring type program, but I know Zenoss does what you describe because we use it here.
--
db


kungpow

join:2002-10-06
Canada

reply to kungpow
I just got Axence NetTools installed on the server and it works pretty well with ping monitoring and email alert.

This is the one that I got install:
Axence NetTools 4.0 Pro
»www.axencesoftware.com/index.php···on=NTPro

I found these other ones on the internet that look pretty good but I haven't used them myself:
EMCO Ping Monitor
»emcosoftware.com/ping-monitor

Ping Alert
»www.sms4mail.com/smsmail/ping_alert.htm


kungpow

join:2002-10-06
Canada

reply to clarknova
Thanks. I will take a look at this one if Axence NetTools doesn't work out.


tomdlgns

join:2003-03-21
Chicago, IL

reply to kungpow
is there a downside to continual pings on a server/workstation/firewall/switch?


kungpow

join:2002-10-06
Canada

I believe not unless you are doing a DoS attack or having a million devices ping one device.



clarknova

join:2010-02-23
Fairview, AB
kudos:5
Reviews:
·voip.ms
·link2voip

reply to tomdlgns

said by tomdlgns:

is there a downside to continual pings on a server/workstation/firewall/switch?

Typically, no. This is a common way to monitor stuff on the network. pfsense does this automatically to monitor the status of its gateways.
--
db

bdnhsv

join:2012-01-20
Huntsville, AL

reply to kungpow
Have you looked into Nagios?



AngryBlakMan
Angry Black Man

join:2007-11-19
USA

reply to kungpow
»www.diskmonitor.com/ism/Internet···tor.aspx

Internet Server Monitor is MONEY. It can test connectivity in a million ways (http, smtp, imap, ping, etc, etc) and has highly customizable ways to tell you when something's failed.

if you can't handle the 20 day limitation, just fire up a virtual OS in virtualbox, create a snapshot of the OS before you install ISM, and run it to your heart's content. at the end of the 20 days, just revert to the snapshot and start over. you'll lose configuration information, but that can always be exported and re-imported.

or... you can buy 5 licenses like i did for 20 bux.


tomdlgns

join:2003-03-21
Chicago, IL

reply to kungpow
there are some good programs/links here that seem to do a handful of things.

before i download these programs, install them, and realize that they might not work, can someone try to answer this for me?

i am looking to do exactly what has been asked above, but i would like the ability to use my gmail account to send the email alerts.

i have used some programs in that past that only work if you have an email server on your network (either that, or i didnt see another way to send/relay/authenticate in the settings page).

the main features i am looking for are...

ping something and send me an email @gmail.com if there is no response after xx amount of time.

as i make this post, i am starting on the first link, Zenoss.

TIA

EDIT- i am at their site and i dont see a windows install (i am on w7) aside from VM?

i should have stated that i am looking for something that can run on windows xp or windows7 (not using xp mode).


tomdlgns

join:2003-03-21
Chicago, IL

2 edits

reply to kungpow
zenoss- no go. i dont think it can run on xp/7 (unless i missed something).

ping alert- no go. you need to be registered to enable email alerts

internet services monitor- looks nice, i installed it but right away it wants domain access. some of the networks i monitor are not part of a domain.

Axence NetTools 4.0 Pro- looks nice, but wont work for implementing at multiple locations. too much $$$.

i just realized that i will probably test all of these before my question is answered. no big deal, though.


kungpow

join:2002-10-06
Canada

said by tomdlgns:

zenoss- no go. i dont think it can run on xp/7 (unless i missed something).

ping alert- no go. you need to be registered to enable email alerts

internet services monitor- looks nice, i installed it but right away it wants domain access. some of the networks i monitor are not part of a domain.

i just realized that i will probably test all of these before my question is answered. no big deal, though.

I guess you missed my post.

Try this program, Axence NetTools 4.0 Pro, it does email alert and install is quick. I'm using it now. Works great.

tomdlgns

join:2003-03-21
Chicago, IL

didn't miss it, i opened them all up in tabs and i am getting to them all.


tomdlgns

join:2003-03-21
Chicago, IL

reply to kungpow
i just updated my post, above.

it looks nice, but i cant install it at multiple locations especially after i see their prices...too much money (it could be 10+ sites, right now).


tomdlgns

join:2003-03-21
Chicago, IL

reply to kungpow
how about spiceworks? has anyone used this for ping/alerts?

i used it long ago, but when i used it, i never looked into pings, i was using it for other things.

»www.spiceworks.com/free-network-···oftware/


jsmithepa

join:2006-12-06
Burlingame, CA

1 edit

said by tomdlgns:

how about spiceworks?

This is like 1,000x times overkill what the OP needs.

Once I tried spiceworks on my P3-512MB laptop and it took like 15 minutes just to load, wadda FAT PIG application!

I can do what the OP wants in a 10-lines batch script.

tomdlgns

join:2003-03-21
Chicago, IL

Nice. Please do and share with us, since I am looking for the same thing.

Even email alerts?

TIA if you are serious.


jsmithepa

join:2006-12-06
Burlingame, CA

Here ya go:

@echo off
:START
SLEEP 60
PING -N 1 %1 >NUL
IF NOT ERRORLEVEL 1 GOTO START
SLEEP 60
PING -N 1 %1 >NUL
IF NOT ERRORLEVEL 1 GOTO START
SLEEP 60
PING -N 1 %1 >NUL
IF NOT ERRORLEVEL 1 GOTO START
SLEEP 60
PING -N 1 %1 >NUL
IF NOT ERRORLEVEL 1 GOTO START
SLEEP 60
PING -N 1 %1 >NUL
IF NOT ERRORLEVEL 1 GOTO START
SENDEMAIL
GOTO START
:END

Call batch file with Name, URL, or IP you want to ping. i.e.: P.BAT YAHOO.COM

SENDEMAIL is you notification method, as simple as:

ECHO DOWN!

to there are several free command-line sendmail utilities on the net, but you will have to configure those. Should come in handy for a variety of things.

SLEEP is also a free command util on the net, does as it says.

If u guys want to be administrators, u gotta learn scripting.



djtim21
It's all good
Premium
join:2003-12-22
Lake Villa, IL

reply to kungpow
IP Sentry may work for you: »www.ipsentry.com/

It's a solid product, and solid support. The only time I had an issue was about 2 years ago. For some reason the monitoring interface would just crash and then a few hours later the monitoring service would crash. Called IP Sentry, they took the logs, created an update about 2 weeks later.

It also has a remote console for suspending alerts, and reporting.
--
"All that is necessary for the triumph of evil is that good men do nothing.” - Edmund Burke


tomdlgns

join:2003-03-21
Chicago, IL

reply to jsmithepa

said by jsmithepa:

Here ya go:

@echo off
:START
SLEEP 60
PING -N 1 %1 >NUL
IF NOT ERRORLEVEL 1 GOTO START
SLEEP 60
PING -N 1 %1 >NUL
IF NOT ERRORLEVEL 1 GOTO START
SLEEP 60
PING -N 1 %1 >NUL
IF NOT ERRORLEVEL 1 GOTO START
SLEEP 60
PING -N 1 %1 >NUL
IF NOT ERRORLEVEL 1 GOTO START
SLEEP 60
PING -N 1 %1 >NUL
IF NOT ERRORLEVEL 1 GOTO START
SENDEMAIL
GOTO START
:END

Call batch file with Name, URL, or IP you want to ping. i.e.: P.BAT YAHOO.COM

SENDEMAIL is you notification method, as simple as:

ECHO DOWN!

to there are several free command-line sendmail utilities on the net, but you will have to configure those. Should come in handy for a variety of things.

SLEEP is also a free command util on the net, does as it says.

If u guys want to be administrators, u gotta learn scripting.

all that code for one ip/url?

what if my network has 50 devices?

Wednesday, 22-May 08:43:17 Terms of Use & Privacy | feedback | contact | Hosting by nac.net - DSL,Hosting & Co-lo
over 13.5 years online © 1999-2013 dslreports.com.
Most commented news this week
Hot Topics