查看某个端口是否链接超时

def curl_tyt(port):

        buf=cStringIO.StringIO()

        cc=pycurl.Curl()

        cc.setopt(cc.URL,'http://10.67.21.11')

        cc.setopt(cc.WRITEFUNCTION,buf.write)

        cc.setopt(cc.CONNECTTIMEOUT,5)

        cc.setopt(cc.TIMEOUT,8)

        cc.setopt(cc.PROXY,'http://10.67.21.11:%s'%port)

        cc.perform()


你可能感兴趣的:(python,端口超时)