<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>

<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body text="#000000" bgcolor="#ffffff">
Hi, I'm trying to set multiple instances of pdns and each instance have
their domains and their ptr records, the first part works really great,
but when I try to set the rdns part for the domains I cannot delegate
the zones from the site of the entity that have those ip address I get
this:<br>
<br>
in the delegation website: <br>
<span class="Apple-style-span"
 style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span
 class="Apple-style-span"
 style="font-family: Arial,Helvetica,sans-serif; font-size: 12px;">
<pre>NS0.DOMAIN.COM: DNS fail

Error on data update</pre>
</span></span>on syslog:<br>
Oct 19 11:47:22 server pdns-domain.com[29585]: Not authoritative for
'xxx.xxx.xxx.IN-ADDR.ARPA', sending servfail to xxx.xxx.xxx.xxx<br>
<br>
I'm working with gmysql backend, so the records that I'm inserting in
the database are these (I use a perl script to do this automatically
writen by me...):<br>
INSERT INTO domains VALUES
('','$ptrclass.in-addr.arpa',NULL,NULL,'NATIVE','$date3',NULL);<br>
<br>
INSERT INTO records VALUES
('','$iddomainptr->{'id'}','$provider','SOA','ns0.$provider
hostmaster.$provider $date3','86400',0,$date3);<br>
INSERT INTO records VALUES
('','$iddomainptr->{'id'}','$provider','NS','ns0.$provider','86400',0,$date3);<br>
INSERT INTO records VALUES
('','$iddomainptr->{'id'}','$provider','NS','ns1.$provider','86400',0,$date3);<br>
<br>
INSERT INTO records VALUES
('','$iddomainptr->{'id'}','$ptrclass.in-addr.arpa','NS','ns0.$provider','86400',0,$date3);<br>
INSERT INTO records VALUES
('','$iddomainptr->{'id'}','$ptrclass.in-addr.arpa','NS','ns1.$provider','86400',0,$date3);<br>
<br>
INSERT INTO records VALUES
('','$iddomainptr->{'id'}','ns0.$provider','A','$class.$ns0','86400',0,$date3);<br>
INSERT INTO records VALUES
('','$iddomainptr->{'id'}','ns1.$provider','A','$class.$ns1','86400',0,$date3);<br>
<br>
And for every ip:<br>
<br>
INSERT INTO records VALUES
('','$iddomainptr->{'id'}','$allip.$ptrclass.in-addr.arpa','PTR','$prefix$allip.$provider','86400',0,$date3);<br>
<br>
example parameters parameters: <br>
$ptrclass = 0.168.192<br>
$date3 = some serial number<br>
$provider = domain.com<br>
$prefix = somestuff-<br>
$allip = number of the current ip address<br>
$iddomainptr = id of the domain in table domains<br>
<br>
If you need the full script let me know, or if you see an error on what
I'm doing here...<br>
<br>
Thanks.<br>
<br>
Regards.<br>
Gabriel.<br>
<pre class="moz-signature" cols="72">-- 
Gabriel Garrido.
Network Administrator.
Workjoy Argentina S.A.
Technology Department.</pre>
</body>
</html>