Good day,
I run a small program that performs an ICMP ping every 5 seconds or so from server A over a remote subnet to Server B. The result of each ping is appended to a log file on Server A.
My problem is that the log file would gather data for about 2 to 3 days and then terminate itself. Is there a way I can change it so that it continues to run until I terminate it manually? Below is some code i use:
use strict;
use Time::Local;
use Net::Ping;
my ($time);
my @hostnames = ("10.0.0.1");
my $p = Net::Ping->new("icmp");
my $hostname;
print "\nWriting data to ping.log\n";
print "Press CTRL-C to exit\n";
while(1)
{
foreach my $hostname (@hostnames)
{
$time = localtime;
open (LogFile, ">>ping.log") || die "Sorry, cannot open logfil
+e\n";
print (LogFile "$time - ");
print (LogFile "$hostname is ");
print (LogFile "NOT ") unless $p->ping($hostname, 2);
print (LogFile "reachable.\n");
close Logfile;
sleep(5);
}
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.