asusag
16th May 2011, 07:55 PM
All,
I'm trying to implement IPv6 on our current DNS servers and I've run in to a snag. Running netstat, I can see the server is not listening on any IPv6 interfaces:
[root@copper etc]# netstat -lnptu |grep "named\W*$"
tcp 0 0 x.x.x.10:53 0.0.0.0:* LISTEN 26812/named
tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN 26812/named
tcp 0 0 127.0.0.1:953 0.0.0.0:* LISTEN 26812/named
udp 0 0 x.x.x.10:53 0.0.0.0:* 26812/named
udp 0 0 127.0.0.1:53 0.0.0.0:* 26812/named
Looking at my log, I see:
May 16 13:50:11 copper named[26667]: using default UDP/IPv4 port range: [1024, 65535]
May 16 13:50:11 copper named[26667]: using default UDP/IPv6 port range: [1024, 65535]
May 16 13:50:11 copper named[26667]: no IPv6 interfaces found
Here is what I have...
BIND 9.3.6
I have created no AAAA record zone files at this time, just trying to get it to listen at this point.
named.conf
options {
listen-on-v6 { any; };
listen-on { any; };
directory "/var/named";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
version "Unknown Version";
allow-query { "any"; };
allow-transfer { 64.184.1.6/32; 64.184.1.11/32; };
allow-recursion { 127.0.0.1/32; ::1/128; x.x.0.0/17; x.x.0.0/18; x.x.x.0/19; 2607:xxxx::/32; };
/etc/sysconfig/network
NETWORKING=yes
NETWORKING_IPV6=yes
HOSTNAME=x.x.net
ifcfg-eth0
.
.
.
IPV6INIT=yes
IPV6ADDR=2607:xxxx:0:2::1:2/64
IPV6_DEFAULTGW=2607:xxxx:0:2::1
IPV6_AUTOCONF=no
Anyone run in to this before. I've verified using ip addr that I do indeed have an IPv6 interface. I can ping it, I can even ping6 ipv6.google.com from the server. I just can't figure out why it not listening on any IPv6 interfaces.
Thanks,
A
I'm trying to implement IPv6 on our current DNS servers and I've run in to a snag. Running netstat, I can see the server is not listening on any IPv6 interfaces:
[root@copper etc]# netstat -lnptu |grep "named\W*$"
tcp 0 0 x.x.x.10:53 0.0.0.0:* LISTEN 26812/named
tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN 26812/named
tcp 0 0 127.0.0.1:953 0.0.0.0:* LISTEN 26812/named
udp 0 0 x.x.x.10:53 0.0.0.0:* 26812/named
udp 0 0 127.0.0.1:53 0.0.0.0:* 26812/named
Looking at my log, I see:
May 16 13:50:11 copper named[26667]: using default UDP/IPv4 port range: [1024, 65535]
May 16 13:50:11 copper named[26667]: using default UDP/IPv6 port range: [1024, 65535]
May 16 13:50:11 copper named[26667]: no IPv6 interfaces found
Here is what I have...
BIND 9.3.6
I have created no AAAA record zone files at this time, just trying to get it to listen at this point.
named.conf
options {
listen-on-v6 { any; };
listen-on { any; };
directory "/var/named";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
version "Unknown Version";
allow-query { "any"; };
allow-transfer { 64.184.1.6/32; 64.184.1.11/32; };
allow-recursion { 127.0.0.1/32; ::1/128; x.x.0.0/17; x.x.0.0/18; x.x.x.0/19; 2607:xxxx::/32; };
/etc/sysconfig/network
NETWORKING=yes
NETWORKING_IPV6=yes
HOSTNAME=x.x.net
ifcfg-eth0
.
.
.
IPV6INIT=yes
IPV6ADDR=2607:xxxx:0:2::1:2/64
IPV6_DEFAULTGW=2607:xxxx:0:2::1
IPV6_AUTOCONF=no
Anyone run in to this before. I've verified using ip addr that I do indeed have an IPv6 interface. I can ping it, I can even ping6 ipv6.google.com from the server. I just can't figure out why it not listening on any IPv6 interfaces.
Thanks,
A