码迷,mamicode.com
首页 > 编程语言 > 详细

Python批量检测连通性

时间:2016-09-29 22:30:06      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:python   批量检测   

#!/usr/bin/env python3
#author:zhouxia
#date:2016-08-05

import socket

def checkip(ipaddr,port):
    try:
        sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
        sock.settimeout(3)
        sock.connect((ipaddr,port))
        return True
    except socket.error as e:
        return False
    finally:
        sock.close()

if __name__ == ‘__main__‘:
    file = open("ip_list.txt")
    checkinfo = open("check_info.txt",‘w+‘)
    line = file.readline()
    while line:
        if line == "":
            continue
        iplist = line.split(‘ ‘)
        ipaddr = iplist[0]
        port = int(iplist[1])
        status = checkip(ipaddr,port)
        if status == True:
            info = ‘%s %s is OK‘ % (ipaddr, port)+‘\n‘
            checkinfo.write(info)
        else:
            info = ‘%s %s is Fail‘ % (ipaddr, port)+‘\n‘
            checkinfo.write(info)
        line = file.readline()
    file.close()


本文出自 “Dream” 博客,转载请与作者联系!

Python批量检测连通性

标签:python   批量检测   

原文地址:http://zhouxia.blog.51cto.com/6029585/1857755

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!