WEB开发网
开发学院软件开发Shell shell脚本批量telnet ip port 阅读

shell脚本批量telnet ip port

 2013-06-07 14:16:29 来源:WEB开发网   
核心提示:在做http proxy的检测,判断proxy服务是不是正常,shell脚本批量telnet ip port,需要ping代理机器的上XXXXX端口,由于机器的数目过多,需要批量化执行telnet的命令,脚本如下:PORT=XXXXXcount=0for i in $(cat ip_list.dat)do ((c

在做http proxy的检测,判断proxy服务是不是正常,需要ping代理机器的上XXXXX端口。

由于机器的数目过多,需要批量化执行telnet的命令。

脚本如下:

PORT=XXXXX

count=0
for i in $(cat ip_list.dat)
do
    ((count++))
    echo "count=$count"
	# 关键代码,1s自动结束telnet
    (sleep 1;) | telnet $i $PORT >> telnet_result.txt
done
# 根据结果判断出正常可以ping通的ip
cat telnet_result.txt | grep -B 1 \] | grep [0-9] | awk '{print $3}' | cut -d '.' -f 1,2,3,4 > telnet_alive.txt 
# 差集,得到ping不同的ip
cat ip_list.dat telnet_alive.txt | sort | uniq -u > telnet_die.txt 


 

Tags:shell 脚本 批量

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接