您好,登錄后才能下訂單哦!
#!/usr/bin/env python #-*- coding: UTF-8 -*- import platform import sys import os import time import thread def get_os(): # get os os = platform.system() if os == "Windows": return "n" else: return "c" def ping_ip(ip_str): #ping ip cmd = ["ping", "-{op}".format(op=get_os()), "1", ip_str] output = os.popen(" ".join(cmd)).readlines() flag = False for line in list(output): if not line: continue if str(line).upper().find("TTL") >= 0: flag = True break if flag: print "ip: %s is ok ***" % ip_str def find_ip(ip_prefix): #find all ip of the net for i in range(1, 256): ip = '%s.%s' % (ip_prefix, i) thread.start_new_thread(ping_ip, (ip,)) time.sleep(0.3) if __name__ == "__main__": print "start time %s" % time.ctime() commandargs = sys.argv[1:] args = "".join(commandargs) ip_prefix = '.'.join(args.split('.')[:-1]) find_ip(ip_prefix) print "end time %s" % time.ctime()
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。