diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1997-03-25 09:58:02 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1997-03-25 09:58:02 +0000 |
commit | 16a624c8497d110dd95e4fb049fee5320bef3804 (patch) | |
tree | f9b7d54cf638f66b27756d3957ec8aa5b641338a /net/fping/files/patch-03 | |
parent | previous was a bogus commit. Important lines accidently got deleted. (diff) |
A tool to quickly ping N number of hosts to determine their reachability
without flooding the network.
Notes
Notes:
svn path=/head/; revision=6006
Diffstat (limited to 'net/fping/files/patch-03')
-rw-r--r-- | net/fping/files/patch-03 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/net/fping/files/patch-03 b/net/fping/files/patch-03 new file mode 100644 index 000000000000..4a24bd07b463 --- /dev/null +++ b/net/fping/files/patch-03 @@ -0,0 +1,32 @@ +--- fping.man.orig Tue Mar 25 01:24:16 1997 ++++ fping.man Tue Mar 25 01:25:33 1997 +@@ -1,4 +1,4 @@ +-.TH fping l ++.TH fping 8 + .SH NAME + fping \- send ICMP ECHO_REQUEST packets to network hosts + .SH SYNOPSIS +@@ -70,12 +70,12 @@ + example none the less. + .nf + +-#!/usr/local/bin/perl ++#!/usr/bin/perl + require 'open2.pl'; + + $MAILTO = "root"; + +-$pid = &open2("OUTPUT","INPUT","/usr/local/bin/fping -u"); ++$pid = &open2("OUTPUT","INPUT","/usr/local/sbin/fping -u"); + + @check=("slapshot","foo","foobar"); + +@@ -96,7 +96,7 @@ + that are currently reachable. + .nf + +-#!/usr/local/bin/perl ++#!/usr/bin/perl + + $hosts_to_backup = `cat /etc/hosts.backup | fping -a`; + |