私はtwisted.namesimportdnsを使用して、ネットワーク上でdnsクエリを提供しています。そして、自分のドメインのIPアドレスのリストで返信したい(「mydomain22.com」クエリの例)クエリを提供するためにこのサンプルを使用しますhttps://gist.github.com/johnboxall/1147973
for answer in ans:
if answer.type != dns.A:
continue
if domain['name'] not in answer.name.name:
continue
answer.payload.address = socket.inet_aton(list_of_ip) # here
answer.payload.ttl = TTL
ありがとう!