[Pdns-users] Some sites are not resolving

2011-03-15 Thread Maroon Ibrahim


Dear Sirs,
I have PDNS Recursor installed and everything is working properly except the 
following problem
I can't resolve www.indevcogroup.com knowing that if I use our ISP's DNS it 
will resolve normally... is there a way to solve this problem?




  ___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users


Re: [Pdns-users] Mongo DB and Powerdns

2011-03-15 Thread bert hubert
On Mon, Mar 14, 2011 at 07:34:15PM +0100, Jan-Piet Mens wrote:
 To my knowledge there is no such back-end. What I have done is a
 PowerDNS pipe back-end to CouchDB. Performance is lousy of course, but I
 did it as a proof of concept, and it works ok. I've written about it at

If the performance is lousy, it is not due to the pipe backend. People run
it at very very high query rates. There is no reason why a pipe should be
slower than (say) a TCP/IP socket to MySQL.

I am aware of several native CouchDB backends, but none has been released
pubicly as far as I know.

Bert
___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users


Re: [Pdns-users] Mongo DB and Powerdns

2011-03-15 Thread Kenneth Marshall
On Tue, Mar 15, 2011 at 01:28:14PM +0100, bert hubert wrote:
 On Mon, Mar 14, 2011 at 07:34:15PM +0100, Jan-Piet Mens wrote:
  To my knowledge there is no such back-end. What I have done is a
  PowerDNS pipe back-end to CouchDB. Performance is lousy of course, but I
  did it as a proof of concept, and it works ok. I've written about it at
 
 If the performance is lousy, it is not due to the pipe backend. People run
 it at very very high query rates. There is no reason why a pipe should be
 slower than (say) a TCP/IP socket to MySQL.
 
 I am aware of several native CouchDB backends, but none has been released
 pubicly as far as I know.
 
   Bert

The performance is bad when the query caches are disabled as is
documented in the perl code. Once those are enabled, it should
sing.

Cheers,
Ken
___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users


Re: [Pdns-users] Some sites are not resolving

2011-03-15 Thread Kenneth Marshall
On Tue, Mar 15, 2011 at 11:52:34AM +, Maroon Ibrahim wrote:
 
 
 Dear Sirs,
 I have PDNS Recursor installed and everything is working properly except the 
 following problem
 I can't resolve www.indevcogroup.com knowing that if I use our ISP's DNS it 
 will resolve normally... is there a way to solve this problem?
 
 
One of their nameservers is messed up. If you get the right one
it will work, otherwise it will not. Your ISP could also have
a cached copy which would allow it to seem to work. You should
contact their domain admin.

 nslookup -type=ns indevcogroup.com
Server:  dns-b.net.rice.edu
Address:  10.129.92.32

Non-authoritative answer:
indevcogroup.comnameserver = ns1.sodetel.net.lb
indevcogroup.comnameserver = ns2.sodetel.net.lb

 nslookup www.indevcogroup.com 89.108.128.44
Server:  ns1.sodetel.net.lb
Address:  89.108.128.44

Name:www.indevcogroup.com
Address:  89.108.154.6

 nslookup www.indevcogroup.com 89.108.129.77
*** Can't find server name for address 89.108.129.77: Query refused
*** Default servers are not available


Cheers,
Ken
___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users


[Pdns-users] Configure PowerDNS recursor as NON RECURSIVE

2011-03-15 Thread davis_jira

Hi all,

I am new to PowerDNS. I have downloaded the new PowerDNS recursor 3.3 tar
file from their website. I am debugging the code to understand how it works.
I can see that there are two config files being referred in the code.
recursor.conf in pdns_recursor.cc and pdns.conf in rec_control.cc. 

I want to be able to config the PowerDNS recursor in Non Recursive mode. I
know there are following parameters from whatever I read online, which let
me do that. 1. allow-recursion, 2. allow-recursion-override, 3. recursor ...
but I get an error when I put these parameters in recursor.conf that its not
recognized. 
Also I am not sure what goes into the pdns.conf. 

I have not configured the backend database to anything. I just want to look
at the flow of the functions being called when it is run in recursive mode
as well as in non-recursive mode.

Could anyone explain me how exactly am I supposed to configure the PowerDNS
to be able to achieve above? 

I have been trying this since long time but not yet succeeded. I look
forward for the help.

Thanks.


-- 
View this message in context: 
http://old.nabble.com/Configure-PowerDNS-recursor-as-NON-RECURSIVE-tp31156937p31156937.html
Sent from the PowerDNS mailing list archive at Nabble.com.

___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users


Re: [Pdns-users] Configure PowerDNS recursor as NON RECURSIVE

2011-03-15 Thread Adriel Torres
Hi there,

I am just trying to understand what you are trying to do.  Are you aware
that PowerDNS has two packages? There is the powerdns-server and
powerdns-recursor.  The pdns-server doesn't do recursion, that's what the
recursor package is for.  I hope I am understanding your question.

Kind regards

On Tue, Mar 15, 2011 at 7:13 PM, davis_jira davis.j...@gmail.com wrote:


 Hi all,

 I am new to PowerDNS. I have downloaded the new PowerDNS recursor 3.3 tar
 file from their website. I am debugging the code to understand how it
 works.
 I can see that there are two config files being referred in the code.
 recursor.conf in pdns_recursor.cc and pdns.conf in rec_control.cc.

 I want to be able to config the PowerDNS recursor in Non Recursive mode. I
 know there are following parameters from whatever I read online, which let
 me do that. 1. allow-recursion, 2. allow-recursion-override, 3. recursor
 ...
 but I get an error when I put these parameters in recursor.conf that its
 not
 recognized.
 Also I am not sure what goes into the pdns.conf.

 I have not configured the backend database to anything. I just want to look
 at the flow of the functions being called when it is run in recursive mode
 as well as in non-recursive mode.

 Could anyone explain me how exactly am I supposed to configure the PowerDNS
 to be able to achieve above?

 I have been trying this since long time but not yet succeeded. I look
 forward for the help.

 Thanks.


 --
 View this message in context:
 http://old.nabble.com/Configure-PowerDNS-recursor-as-NON-RECURSIVE-tp31156937p31156937.html
 Sent from the PowerDNS mailing list archive at Nabble.com.

 ___
 Pdns-users mailing list
 Pdns-users@mailman.powerdns.com
 http://mailman.powerdns.com/mailman/listinfo/pdns-users

___
Pdns-users mailing list
Pdns-users@mailman.powerdns.com
http://mailman.powerdns.com/mailman/listinfo/pdns-users