批量ping 查看主机能否ping通,能否ssh上.md,

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量ping 查看主机能否ping通,能否ssh上.md,相关的知识,希望对你有一定的参考价值。

[[email protected] lilei]$ cat hosts_status.sh
#!/bin/bash
# 清空脚本结果文件

/tmp/cant_ssh.txt
/tmp/cat_ssh.txt
/tmp/cant_ping.txt

# shell脚本并发查看ip,具体ip列表根据个人信息更改
for n in $(awk ‘{print $1}‘ /etc/hosts |uniq |grep -v ‘127.0.0.1‘)
do
{
ping -w 2 -c 2 $n 1>/dev/null 2>&1
if [ $? -eq 0 ]
then
ssh $n ‘hostname‘ 1>/dev/null 2>&1
if [ $? -ne 0 ]
then
echo $n >>/tmp/cant_ssh.txt # 不能ssh上的ip
else
echo $n >>/tmp/cat_ssh.txt # 能ssh上的ip
fi
else
echo $n >>/tmp/cant_ping.txt # 不能ping通的ip
fi
}&
done
# 等待脚本执行完毕
wait
# 输出详细内容,并且排除掉外网ip,之保留内网ip,内网IP是10段的,所以排除掉,根据实际情况更改
echo "sh $0 is done"
SSHOK=$(cat /tmp/cat_ssh.txt |grep ^10 |wc -l)
echo "$SSHOK master SSH is ok , info to read /tmp/cat_ssh.txt"
SSHDOWN=$(cat /tmp/cant_ssh.txt |grep ^10 |wc -l)
echo "$SSHDOWN master cant ssh , info to read /tmp/cant_ssh.txt"
PINGDONE=$(cat /tmp/cant_ping.txt |grep ^10 |wc -l)
echo "$PINGDONE master cant ping , info to read /tmp/cant_ping.txt"
[[email protected] lilei]$

以上是关于批量ping 查看主机能否ping通,能否ssh上.md,的主要内容,如果未能解决你的问题,请参考以下文章

dhcp ip配置

本地主机无法ping通虚拟机主机解决办法

主机ping不通虚拟机,虚拟机可以ping通主机解决方式

怎么确定android能否连接某个地址(ping 某个地址)?

批量检测服务器能否ping通和硬盘容量状态的一个脚本

ping 如何看通不通