• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

possible to keep track of isp uptime?

Fiveohhh

Diamond Member
I'm curious if its possible to have my smoothwall box ping a public site once every 30 seconds or so. and keep a log of if it got a response or times out. my isp seems to be very flakey lately and I'm curious how often it is actually down. I'm guessing I could do some sort of cron thing, but was hoping there was maybe a linux prgram written that would do this easily.
Thanks
 
Probably, check freshmeat.

I'd just do something like:

#!/bin/sh


ping -c 1 -i 30 ip address > ~/ping_test 2>&1

And then use something like gd to create a graph out of it. Might be kind of rude though 😛

EDIT: I just wanted to warn you that I can't test that or anything here, so double check the command. 😉
 
I use mrtg in combination with mtr. Mtr handles the ICMP stuff, and mrtg creates/manages a nice graphic. You can see the results of my network status Here
 
Back
Top