<div dir="ltr">Hello, <br>This is a running shell script for ping multiple host it provides result directly:<br>if host is successfully ping then it returns Host is alive. otherwise Host is not alive<br>Try this i am working with that in my local n/w.<br>
<br><br>#/bin/bash<br>for n in {1..5};<br>do<br>host=<a href="http://192.168.1.">192.168.1.</a>$n<br>ping -c2 $host &> /dev/null<br>if [ $? = 0 ] ; then<br>printf "%-30s is alive \n" $host<br>else<br>printf "%-30s is not alive \n" $host<br>
fi<br>done<br><br><br>Note: 1.Replace ip with your ip range<br>2.Replace the no. of ip according to your need.(means value of n in for loop)<br><br><br><br clear="all"><br>-- <br>Thanks and Regards,<br>Kapil Singh Kushwah<br>
Linux System Administrator<br>Hotwax Media Inc.<br>Indore,(M.P) INDIA<br><br>
</div>