<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Ping range of IP addresses in parallel with fping</title>
	<atom:link href="http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/</link>
	<description></description>
	<pubDate>Tue, 06 Jan 2009 22:59:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: hozefa</title>
		<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-23643</link>
		<dc:creator>hozefa</dc:creator>
		<pubDate>Tue, 26 Aug 2008 22:20:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-23643</guid>
		<description>Can you guys help me install fping so that I can run it through Cygwin on a windows desktop.

Thanks</description>
		<content:encoded><![CDATA[<p>Can you guys help me install fping so that I can run it through Cygwin on a windows desktop.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kalyan</title>
		<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-23502</link>
		<dc:creator>kalyan</dc:creator>
		<pubDate>Fri, 25 Jul 2008 03:05:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-23502</guid>
		<description>Hi friends,

Thanx for all your replys.


cheers,
kalyan.</description>
		<content:encoded><![CDATA[<p>Hi friends,</p>
<p>Thanx for all your replys.</p>
<p>cheers,<br />
kalyan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alvaro</title>
		<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-23227</link>
		<dc:creator>alvaro</dc:creator>
		<pubDate>Tue, 15 Jul 2008 08:09:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-23227</guid>
		<description>Personally, i think it's better to use
&lt;code&gt; rm -rf /root/livestb.* &lt;/code&gt;

than 

&lt;code&gt; rm /root/livestb.* &#38;&#38; echo "File removed successfully" &lt;/code&gt;

By the way, i recommend you not to make scripts with root powers (uhm, quite dangerous).

Thanks</description>
		<content:encoded><![CDATA[<p>Personally, i think it&#8217;s better to use<br />
<code> rm -rf /root/livestb.* </code></p>
<p>than </p>
<p><code> rm /root/livestb.* &amp;&amp; echo "File removed successfully" </code></p>
<p>By the way, i recommend you not to make scripts with root powers (uhm, quite dangerous).</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pellgarlic</title>
		<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3412</link>
		<dc:creator>pellgarlic</dc:creator>
		<pubDate>Tue, 05 Feb 2008 14:44:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3412</guid>
		<description>it seems that you may be confusing the file that fping reads from, with a file you want to have the output stored in -

to have fping read from a file, do this:

fping -f /path/to/file

to save the ouput of fping to a file, do this:

fping -f /path/to/file &#62; /path/to/save/to

(the "&#62;" can be used to redirect the terminal output of any command-line command to a file)</description>
		<content:encoded><![CDATA[<p>it seems that you may be confusing the file that fping reads from, with a file you want to have the output stored in -</p>
<p>to have fping read from a file, do this:</p>
<p>fping -f /path/to/file</p>
<p>to save the ouput of fping to a file, do this:</p>
<p>fping -f /path/to/file &gt; /path/to/save/to</p>
<p>(the &#8220;&gt;&#8221; can be used to redirect the terminal output of any command-line command to a file)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pellgarlic</title>
		<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3405</link>
		<dc:creator>pellgarlic</dc:creator>
		<pubDate>Tue, 05 Feb 2008 10:48:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3405</guid>
		<description>so, maybe something like this:

fping -f /root/stb &#62; /root/livestb.`date +%d%I%M`</description>
		<content:encoded><![CDATA[<p>so, maybe something like this:</p>
<p>fping -f /root/stb &gt; /root/livestb.`date +%d%I%M`</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pellgarlic</title>
		<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3404</link>
		<dc:creator>pellgarlic</dc:creator>
		<pubDate>Tue, 05 Feb 2008 10:47:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3404</guid>
		<description>hi kalyan, what you're missing is the redirection... you would need to replace "fping /root/stb" with something like this:

"fping -f /file/with/list/of/ips/to/ping &#62; results/of/fping"

(i.e. - you need 2 files - 

1 - the list of ip addresses to ping
2 - the output of the fping command)</description>
		<content:encoded><![CDATA[<p>hi kalyan, what you&#8217;re missing is the redirection&#8230; you would need to replace &#8220;fping /root/stb&#8221; with something like this:</p>
<p>&#8220;fping -f /file/with/list/of/ips/to/ping &gt; results/of/fping&#8221;</p>
<p>(i.e. - you need 2 files - </p>
<p>1 - the list of ip addresses to ping<br />
2 - the output of the fping command)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalyan</title>
		<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3397</link>
		<dc:creator>Kalyan</dc:creator>
		<pubDate>Tue, 05 Feb 2008 05:25:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3397</guid>
		<description>Hi artiomix,pellgarlic

I am using below script my problem is here,i put this script in crontab to run daily 3 times and move the file "stb" to desktop of another system in the network by using " mv /root/stb /root/livestb.`date +%d%I%M` &#38;&#38; scp livestb.* root@192.168.0.20:/root/Desktop" as a script but final output on the desktop is empty file.

#!/bin/sh
#
#Script to ping all the hosts
#
rm /root/livestb.* &#38;&#38; echo "File removed successfully" #To remove previously run file
fping  /root/stb
echo " ***completed*** "
exit 0

Please can u correct me.

thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi artiomix,pellgarlic</p>
<p>I am using below script my problem is here,i put this script in crontab to run daily 3 times and move the file &#8220;stb&#8221; to desktop of another system in the network by using &#8221; mv /root/stb /root/livestb.`date +%d%I%M` &amp;&amp; scp livestb.* <a href="mailto:root@192.168.0.20">root@192.168.0.20</a>:/root/Desktop&#8221; as a script but final output on the desktop is empty file.</p>
<p>#!/bin/sh<br />
#<br />
#Script to ping all the hosts<br />
#<br />
rm /root/livestb.* &amp;&amp; echo &#8220;File removed successfully&#8221; #To remove previously run file<br />
fping  /root/stb<br />
echo &#8221; ***completed*** &#8221;<br />
exit 0</p>
<p>Please can u correct me.</p>
<p>thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: artiomix</title>
		<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3323</link>
		<dc:creator>artiomix</dc:creator>
		<pubDate>Wed, 30 Jan 2008 14:23:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3323</guid>
		<description>Hi Kalyan, you're more than welcome! :)</description>
		<content:encoded><![CDATA[<p>Hi Kalyan, you&#8217;re more than welcome! <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalyan</title>
		<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3320</link>
		<dc:creator>Kalyan</dc:creator>
		<pubDate>Wed, 30 Jan 2008 06:15:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3320</guid>
		<description>Hi artiomix

Thanks!


Cheers.</description>
		<content:encoded><![CDATA[<p>Hi artiomix</p>
<p>Thanks!</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalyan</title>
		<link>http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3319</link>
		<dc:creator>Kalyan</dc:creator>
		<pubDate>Wed, 30 Jan 2008 06:13:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/#comment-3319</guid>
		<description>sudo fping -f /tmp/ips
4.2.2.4 is alive
64.233.187.99 is alive
216.239.47.1 is alive



Hi pellgarlic

Thanks for all the above comments,i followed the above with little modification to suit my need and it's working fine.

cheers</description>
		<content:encoded><![CDATA[<p>sudo fping -f /tmp/ips<br />
4.2.2.4 is alive<br />
64.233.187.99 is alive<br />
216.239.47.1 is alive</p>
<p>Hi pellgarlic</p>
<p>Thanks for all the above comments,i followed the above with little modification to suit my need and it&#8217;s working fine.</p>
<p>cheers</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.340 seconds -->
