我使用的是python2.7,我原本另裝了一個python3.6,發現沒法安裝dnspython,因而只能換回來了
import dns.resolver #這個須要另外下載並安裝(下載地址www.dnspython.org/kits/1.9.4/dnspython-1.9.4.tar.gz 解壓以後,python setup.py install)
import os
import httplib #由於要用到http?
iplist=[] #存儲查到的ip
appdomain="www.baidu.com" #查詢的網站服務器
def get_iplist(domain=""): #這應該是說若是domain沒有值,則默認爲空
try: #捕獲異常
A=dns.resolver.query(domain,'A')
print ('hi')
except Exception,e:
print 'dns wrong:'+str(e)
return
for i in A.response.answer:
for j in i.items:
print ("ip is %s " % j)
newj=str(j) #若是不轉換爲字符串格式,會報錯
#print type(newj)
iplist.append(newj) #把查詢到的ip放到列表中
return True
def checkip(ip): #模擬瀏覽器訪問,查詢服務器是否異常
checkurl=ip+':80'
getcontent=""
httplib.socket.setdefaulttimeout(5) #設置默認超時時間
conn=httplib.HTTPConnection(checkurl)
try:
conn.request("GET","/",headers={"HOST":appdomain}) #獲取頭文件內容
r=conn.getresponse()
getcontent=r.read(15) #取頭文件的一部分進行對比便可
print getcontent
finally:
if getcontent=="<!DOCTYPE html>": #注意,這裏區分大小寫,由於是字符串比較
print ip+" [ok]"
else:
print ip+" [error]"
if name=="main":
#if get_iplist(appdomain) and len(iplist)>0:
if get_iplist(appdomain):
for ip in iplist: #逐個檢查
checkip(ip)
else:
print "dns resolver error."html