鮑勃你要求發送的回覆服務器的IP地址,或CNAME記錄中名稱的IP地址? DNS答覆的資源記錄(RR)部分中的規範名稱(CNAME)數據僅具有域名和TTL。我測試過的名稱服務器在不同的附加信息RR記錄中返回CNAME應答的IP地址。
如果你想讀原章的詩句:https://www.ietf.org/rfc/rfc1035.txt
這裏是有點用dpkt,可以讓你生成和探索DNS答覆的內容Python代碼。
import dpkt
import random
import socket
# build query
query_id = int(random.random() * 10000)
query = dpkt.dns.DNS(id=query_id)
my_q = dpkt.dns.DNS.Q(name="www.yahoo.com")
query.qd.append(my_q)
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.connect(("8.8.8.8", 53))
sock.send(str(query))
buf = sock.recv(0xffff)
# parse response
response = dpkt.dns.DNS(buf)
if query_id != response.id:
print "Expected %d but received id %d" % (query_id, response.id)
elif response.qr != dpkt.dns.DNS_R:
print "Not a response!"
elif response.opcode != dpkt.dns.DNS_QUERY:
print "Not a query op!"
elif response.rcode != dpkt.dns.DNS_RCODE_NOERR:
print "Not a successful response!"
elif len(response.an) == 0:
print"Response has no answers!"
else:
print "%d bytes received, id is %d" % (len(buf), response.id)
for rr in response.an:
print "AN: class is %d, type is %d, name is %s" % (rr.cls, rr.type, rr.name)
if hasattr(rr, 'ip'):
print "\tIP is %s" % socket.inet_ntoa(rr.ip)
for rr in response.ns:
print "NS: class is %d, type is %d, name is %s" % (rr.cls, rr.type, rr.name)
for rr in response.ar:
print "AR: class is %d, type is %d, name is %s" % (rr.cls, rr.type, rr.name)
,我看到(坐東海岸)結果:
240 bytes received, id is 5848
AN: class is 1, type is 5, name is www.yahoo.com
AN: class is 1, type is 1, name is fd-fp3.wg1.b.yahoo.com
IP is 98.139.180.149
AN: class is 1, type is 1, name is fd-fp3.wg1.b.yahoo.com
IP is 98.139.183.24
NS: class is 1, type is 2, name is wg1.b.yahoo.com
NS: class is 1, type is 2, name is wg1.b.yahoo.com
NS: class is 1, type is 2, name is wg1.b.yahoo.com
NS: class is 1, type is 2, name is wg1.b.yahoo.com
AR: class is 1, type is 1, name is yf2.yahoo.com
AR: class is 1, type is 1, name is yf1.yahoo.com
AR: class is 1, type is 1, name is yf3.a1.b.yahoo.net
AR: class is 1, type is 1, name is yf4.a1.b.yahoo.net
我不認爲你會看到在IP報頭中的DNS信息。 IP層低於DNS – Bob
這是正確的。但是,您可以在處理DNS數據之前解析IP標頭。 – chemdt