On Mon, Jul 16, 2012 at 11:20:15AM -0400, Adam Portier wrote:
> problem is, every time I request a RRSIG record set, I get a NoAnswer
> response

Set `raise_on_no_answer' to false to suppress the exception:
 
  answer = resolver.query(domain_name, dns.rdatatype.RRSIG, 
                          dns.rdataclass.IN, tcp=True,
                          raise_on_no_answer=False)

answer.response is the complete response message. The find_rrset() and
get_rrset() methods don't work here (which is why you're getting the NoAnswer
exception). You can iterate through answer.response to get the RRSIG records
yourself.


james
-- 
Times flies like an arrow. Fruit flies like bananas.
_______________________________________________
dnspython-users mailing list
[email protected]
http://howl.play-bow.org/mailman/listinfo/dnspython-users

Reply via email to