我的博客已迁移到xdoujiang.com请去那边和我交流 cat ip.sh #!/bin/bash #-------------------------------------------------- #Author:jimmygong #Email:jimmygong@taomee.com #FileName:ip.sh #Function: #Version:1.0 #Created:2015-11-02 #-------------------------------------------------- set -o nounset ipfile="/root/iplist" [[ -e $ipfile ]] || exit 1 pingdir="/opt/$(date +%Y%m%d)" pinglog=${pingdir}/ping pinglog2=${pingdir}/$(date +%s)ping function pingfc () { [[ -d ${pingdir} ]] || mkdir -p ${pingdir} [[ -e $pinglog ]] && `> $pinglog` [[ ! -e $pinglog ]] && touch $pinglog i=1 while read ipline do ( packet=`ping -s 100 -c 100 -q $ipline|awk /transmitted/|awk '{print $6}'` echo "$ipline $packet" >> $pinglog )& [[ $i%10 -eq 0 ]] && wait done < $ipfile wait cat $pinglog|sort -rnk2 -t " " > $pinglog2 2>&1 } function main () { while true do pingfc sleep 60 done } main exit 0 ==================================说明============================================ bash ip.sh 执行结果 cat ping.log 111.111.111.111 100% 222.222.222.222 100% 333.333.333.333 23% 444.444.444.444 18% 555.555.555.555 17% 666.666.666.666 14% 777.777.777.777 13% 888.888.888.888 13% 999.999.999.999 12% cat iplist.txt 111.111.111.111 222.222.222.222 333.333.333.333 444.444.444.444 555.555.555.555 666.666.666.666 777.777.777.777 888.888.888.888 999.999.999.999 -s 字节数指定发送的数据字节数预设值是56加上8字节的ICMP头一共是64ICMP数据字节。 Specifies the number of data bytes to be sent. The default is 56, which translates into 64 ICMP data bytes when combined with the 8 bytes of ICMP header data. -c 数目在发送指定数目的包后停止。 -c count Stop after sending count ECHO_REQUEST packets. With deadline option, ping waits for count ECHO_REPLY packets, until the timeout expires. -q 不显示任何传送封包的信息只显示最后的结果。 -q Quiet output. Nothing is displayed except the summary lines at startup time and when finished. 二、需要安装fping命令(apt-get -y install fping --force-yes或yum -y install fping) fping - sends ICMP ECHO_REQUEST packets to network hosts fping -ef /root/iplist.txt >ping.log 2>&1 ==================================说明============================================ 执行结果 cat ping.log 10.1.1.101 is alive (0.66 ms) 10.1.1.102 is alive (1.22 ms) 10.1.1.104 is alive (1.28 ms) 10.1.1.105 is alive (1.26 ms) 10.1.1.103 is unreachable cat iplist.txt 10.1.1.101 10.1.1.102 10.1.1.103 10.1.1.104 10.1.1.105 -f Read list of targets from a file. -e Show elapsed (round-trip) time of packets
ping一堆机器的二种方法(shell或fping)
原创
©著作权归作者所有:来自51CTO博客作者xdoujiang的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
java连接oracle的二种方法
建立和分析java程序和oracle数据库交互的两种方法。 第一种应该是比较古老的方法了。
Oracle Java JDBC SQL C -
Linux安装Docker的二种方法
Linux安装Docker的二种方法
docker linux 运维 python -
自动调整listview标题头宽度的二种方法
自动调整listview标题头宽度的二种方法 方法一:****************
listview integer api function user -
[Java] Thread 创建线程的第二种方法
public class Thread4{ public static void main(String[] args){
Java 职场 休闲 java笔记,java学习 -
linux系统下php安装mbstring扩展的二种方法
转载自:http://www.jb51.net/article/45925.htm
php linux mbstring -
mysql 远程连接数据库的二种方法
mysql 远程连接数据库的二种方法
mysql 远程连接数据库的二种方法 -
二种方法均可行
cblStatus是一个CheckBoxList有三个选框,值为0,1,2:现在是需要对三种值作不同的判断,有二种方法是可以实现。方法一:CodeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->stringstatusSelectValue=GetCheckBoxListSelectedValue(this.cblStatus);if(statusSelectValue.Length>0){string[]str=statusSelec
CheckBoxList if forEach Contains .net