python版trace命令顯示歸屬地

來源:互聯網
上載者:User

標籤:trace 歸屬地

     無論是windows還是linux系統的traceroute命令都不能顯示歸屬地,在實際的網路維護中,這些追蹤路由的歸屬地址也是很重要的資訊,來協助我們定位問題發生的地方。以下為python寫的一個指令碼來顯示歸屬地。也方便自己的記憶和日後的使用。

#!/usr/bin/pythonimport sysimport osimport reimport urllib2import subprocessimport platformdef getlocation(ipaddr):    url = "http://www.ip138.com/ips138.asp?ip=%s&action=2" % ipaddr    u = urllib2.urlopen(url)    s = u.read()#Get IP Address    ip = re.findall(r‘\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}‘,s)#Get IP Address Location    result = re.findall(r‘(<li>.*?</li>)‘,s)    location = result[0][16:-5].decode(‘gbk‘)    return locationif len(sys.argv) < 2:    print "Usage: %s {hostname|ip}" % sys.argv[0]    sys.exit()else:    host = sys.argv[1]system_name = platform.dist()[0]if system_name == ‘redhat‘:    trace_cmd = ‘/bin/traceroute‘elif system_name == ‘Ubuntu‘:    trace_cmd = ‘/usr/sbin/traceroute‘try:    p = subprocess.Popen([trace_cmd,host],stdout=subprocess.PIPE)    while True:        line = p.stdout.readline()        if not line:            break        if re.match("^.[0-9].*(.*).*",line):            try:                ip = line.split(‘(‘)[1].split(‘)‘)[0]                                print line,getlocation(ip)            except IndexError,e:                print line,        else:            print line,except (KeyboardInterrupt,SystemExit):    sys.exit()

由於自己的網路環境在系統判斷上沒有加入windows,後續可以其他朋友們添加了。另外我也寫了一個windows版本的。歡迎大家一起交流

本文出自 “技術為王” 部落格,謝絕轉載!

python版trace命令顯示歸屬地

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.