当前位置: 首页 >> Shell >> 【Shell】Linux 局域网ping脚本 >> 正文

【Shell】Linux 局域网ping脚本

2022年11月23日 05:44:01    作者:Jiaozn    分类:Shell     评论(0)

Linux 局域网ping脚本,检查主机是否在线。

同目录下建立hosts.txt文件,写上要ping的主机ip

执行脚本如下ping_hosts.sh

#!/bin/bash
#2011/11/22
#Jiaozn
#ping hosts
file="hosts.txt"
for host_ip in $(cat $file)
do
        i=`ping -c 3 $host_ip |grep '3 received'|wc -l`
        if [ $i -ne 1 ]
        then
                echo $host_ip not ping.
        fi

done


除非注明,发表在“Jiaozn的博客”的文章『【Shell】Linux 局域网ping脚本』版权归Jiaozn所有。 转载请注明出处为“本文转载于『Jiaozn的博客』原地址https://jiaozn.com/reed/823.html

评论

发表评论   

昵称*

E-mail*

网站