<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hi Parth,<div><br></div><div>having little information available, I can only guess. It seems to me that you have illegal A resource records, most likely due to malformed user input. Since your mail is a few hours old, I assume you did already check the A records? I would assume that there is a hostname in the content column, and the record type should be CNAME.</div><div><br></div><div>If you are using the standard MySQL tables you can check this by issuing</div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">  </span>SELECT id,name,type,content FROM records WHERE type='A' AND content REGEXP '^[A-Za-z\.]+$';</div><div><br></div><div>In case any resource record is shown on the execution of this statement, there has been malformed user input which needs further investigation (most likely the frontend you are using to provide the domain data needs more sanity checks on user input). If there are any resource records reported, you can fix the problem with the following steps:</div><div><br></div><div><ul class="MailOutline"><li>Make a backup of the database now. Though I did a few quick tests, I did not have the time of thoroughly testing my solution since I do not have a real domain to play with).</li><li>Issue the following statement: UPDATE records SET type='CNAME' WHERE type='A' AND content REGEXP '^[A-Za-z\.]+$' ;</li><li>Make sure the zones are reloaded on the secondary NSs if applicable.</li></ul></div><div><br></div><div><br></div><div><br></div><div>Kind regards,</div><div><br></div><div>Markus</div><div><br><div><div>Am 25.04.2012 um 08:37 schrieb PARTH MONGA:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div>HI Peter and Fellow list members</div><div><br></div><div><br></div><div>I am in a very critical situation i am moving my powerdns into production with a mysql backend and things were working smooth but after an hour i start getting these errors in the log files.</div>
<div><br></div><div><br></div><div><div>Apr 25 11:47:14 172.16.14.242 pdns[8056]: Exception: Parsing record content: while parsing IP address, expected digits at position 0 in 'A'</div><div>Apr 25 11:47:14 172.16.14.242 pdns[8056]: Exception building answer packet (Parsing record content: while parsing IP address, expected digits at position 0 in 'A') sending out servfail</div>
</div><div><br></div><div>Used latest powerdns version all things are working fine and resolving but i am not getting why i am getting this error.</div><div>Please help me i am in a fix.</div><div>Its very urgent.</div><div>
<br></div><div>Thanks & Regards</div><div>Parth</div>
_______________________________________________<br>Pdns-users mailing list<br><a href="mailto:Pdns-users@mailman.powerdns.com">Pdns-users@mailman.powerdns.com</a><br>http://mailman.powerdns.com/mailman/listinfo/pdns-users<br></blockquote></div><br></div></body></html>