<div dir="ltr">Hi All,<br><br>I found a lot of examples how it possible to make custom response for A records in python module, but didn't find any example to make reponse for PTR records:<br><br>do you have something like this:<br>if qstate.qinfo.qtype == RR_TYPE_A:<br>    msg.answer.append("%s 10 IN A 192.168.1.1" % qstate.qinfo.qname_str)<br>if (qstate.qinfo.qtype == RR_TYPE_SRV) or (qstate.qinfo.qtype == RR_TYPE_ANY):<br>    msg.answer.append("%s 10 IN SRV 0 0 80 <a href="http://neinfo.example.com">neinfo.example.com</a>." % qstate.qinfo.qname_str)<br>if (qstate.qinfo.qtype == RR_TYPE_TXT) or (qstate.qinfo.qtype == RR_TYPE_ANY):<br>    msg.answer.append("%s 10 IN TXT path=/" % qstate.qinfo.qname_str)<br><br>but for PTR records?<br><br></div>