Re: [Pdns-users] IPv4 and IPv6 sockets at the same time

2011-07-21 Thread Chris Russell
Hi Martin, Actually, as a confirm, we have allow_from set specifically too. So +1 to it being the local nets. Cheers Chris > Line 123 in pdns_recursor.cc defines the default allow-from rules: #define LOCAL_NETS "127.0.0.0/8, 10.0.0.0/8, 192.168.0.0/16, 172.16.0.0/12, ::1/128, fe80::/10"

Re: [Pdns-users] IPv4 and IPv6 sockets at the same time

2011-07-21 Thread Chris Russell
WER SECTION: www.google.com. 86400 IN CNAME www.l.google.com. ... ;; SERVER: ::1#53(::1) -Original Message- From: pdns-users-boun...@mailman.powerdns.com [mailto:pdns-users-boun...@mailman.powerdns.com] On Behalf Of Marten Lehmann Sent: 21 July 2011 12:48 To: pdns-users@mai

Re: [Pdns-users] IPv4 and IPv6 sockets at the same time

2011-07-21 Thread Marten Lehmann
Hello, This might be a variant of http://wiki.powerdns.com/trac/ticket/209 Could you open a new bug and reference 209 in the description? no, I've found the problem: Line 123 in pdns_recursor.cc defines the default allow-from rules: #define LOCAL_NETS "127.0.0.0/8, 10.0.0.0/8, 192.168.0.0/16

Re: [Pdns-users] IPv4 and IPv6 sockets at the same time

2011-07-21 Thread bert hubert
On Thu, Jul 21, 2011 at 01:47:31PM +0200, Marten Lehmann wrote: > Should I file a bug report? This might be a variant of http://wiki.powerdns.com/trac/ticket/209 Could you open a new bug and reference 209 in the description? Thanks! We're all very busy with 3.0 auth right now, but the recursor wi

Re: [Pdns-users] IPv4 and IPv6 sockets at the same time

2011-07-21 Thread Marten Lehmann
Hello, Try this: local-address=127.0.0.1 local-ipv6=::1 there is no option "local-ipv6" in pdns recursor: http://doc.powerdns.com/built-in-recursor.html local-address=::1,127.0.0.1 is partially working: pdns listens on ::1 and 127.0.0.1. But it only answers on 127.0.0.1, not ::1 when bot

Re: [Pdns-users] IPv4 and IPv6 sockets at the same time

2011-07-20 Thread Seth Mattinen
On 7/20/2011 07:18, Marten Lehmann wrote: > > local-address=[::1],127.0.0.1 > > Whats wrong with it? > Try this: local-address=127.0.0.1 local-ipv6=::1 ~Seth ___ Pdns-users mailing list Pdns-users@mailman.powerdns.com http://mailman.powerdns.com/ma

[Pdns-users] IPv4 and IPv6 sockets at the same time

2011-07-20 Thread Marten Lehmann
Hello, I'm running a local recursor with pdns recursor 3.3. When I have this line: local-address=::1 pdns answers on queries like "dig google.com @::1". When I have local-address=127.0.0.1 pdns answers on queries like "dig google.com @127.0.0.1". When I combine both ("comma separated", as