1.批量測試主機連通性
創(chuàng)新互聯(lián)公司是一家朝氣蓬勃的網(wǎng)站建設公司。公司專注于為企業(yè)提供信息化建設解決方案。從事網(wǎng)站開發(fā),網(wǎng)站制作,網(wǎng)站設計,網(wǎng)站模板,微信公眾號開發(fā),軟件開發(fā),微信小程序,10年建站對電動窗簾等多個方面,擁有豐富的網(wǎng)站設計經(jīng)驗。
#!/bin/bash
cat testsport | while read line
do
curl -v --connect-timeout 15 $line > /dev/null 2>&1
if [ $? -eq 0 ];then
echo $line:ok
else
echo $line:fail
fi
done
2.批量測試主機連通性ping IP
#!/bin/bash
# filename: /tmp/mydir/target_ip.txt
for ips in `cat /tmp/mydir/target_ip.txt`
do
result=`ping -w 2 -c 3 ${ips} | grep packet | awk -F" " '{print $6}'| awk -F"%" '{print $1}'| awk -F' ' '{print $1}'`
if [ $result -eq 0 ]; then
echo ""${ips}" is ok !"
else
echo ""${ips}" is not connected ....."
fi
done
3.批量測試主機連通性curl IP
#!/bin/bash
# filename: /tmp/target_ip.txt
for ips in `cat /tmp/target_ip.txt`
do
echo ${ips}
curl -v --connect-timeout 5 https://${ips} >> /tmp/curltest.txt 2>&1
sed -n '$p' curltest.txt
done