Hi -
So I'm trying to set up a working IPv6 CentOS box inside H.E. Fremont. I've got my IPv6 addresses, they are configured on the box and I can ping them. I've registered a couple of IPv6 hosts at my registrar. At this point I can ping those too:
[root@ns2 named]# ping6 ns1.colocationbayarea.net
PING ns1.colocationbayarea.net(2001:470:1:6d::3) 56 data bytes
64 bytes from 2001:470:1:6d::3: icmp_seq=0 ttl=64 time=0.052 ms
64 bytes from 2001:470:1:6d::3: icmp_seq=1 ttl=64 time=0.058 ms
64 bytes from 2001:470:1:6d::3: icmp_seq=2 ttl=64 time=0.056 ms
^C
--- ns1.colocationbayarea.net ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 0.052/0.055/0.058/0.006 ms, pipe 2
[root@ns2 named]# ping6 ns2.colocationbayarea.net
PING ns2.colocationbayarea.net(2001:470:1:6d::4) 56 data bytes
64 bytes from 2001:470:1:6d::4: icmp_seq=0 ttl=64 time=0.067 ms
64 bytes from 2001:470:1:6d::4: icmp_seq=1 ttl=64 time=0.066 ms
64 bytes from 2001:470:1:6d::4: icmp_seq=2 ttl=64 time=0.050 ms
^C
--- ns2.colocationbayarea.net ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 0.050/0.061/0.067/0.007 ms, pipe 2
These nameservers are authoritative for the domain, colocationbayarea.net.
I've got named running with IPv6 enabled and it is listening on IPv6:
[root@ns2 named]# netstat -lnptu | grep ":::" | grep named
tcp 0 0 :::53 :::* LISTEN 19813/named
tcp 0 0 ::1:953 :::* LISTEN 19813/named
udp 0 0 :::37555 :::* 19813/named
udp 0 0 :::53 :::* 19813/named
I've got the forward zone set in named.conf:
zone "colocationbayarea.net" {
type master;
file "/var/named/colocationbayarea.net.hosts";
};
and I've got the records in the zone file "colocationbayarea.net.hosts":
[root@ns2 named]# cat colocationbayarea.net.hosts
$ttl 300
@ IN SOA ns1.colocationbayarea.net. admin.colocationbayarea.net. (
1234469109
10800
3600
604800
300 )
IN NS ns1.colocationbayarea.net.
IN AAAA 2001:470:1:6d::3
ns1 IN AAAA 2001:470:1:6d::3
ns2 IN AAAA 2001:470:1:6d::4
mail IN AAAA 2001:470:1:6d::2
IN NS ns2.colocationbayarea.net.
www IN CNAME colocationbayarea.net.
IN MX 10 mail.colocationbayarea.net.
Named has been restarted. No worky:
[root@ns2 named]# ping6 colocationbayarea.net
unknown host
[root@ns2 named]# dig @ns1.colocationbayarea.net colocationbayarea.net
; <<>> DiG 9.3.4-P1 <<>> @ns1.colocationbayarea.net colocationbayarea.net
; (2 servers found)
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 1079
;; flags: qr aa rd; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;colocationbayarea.net. IN A
;; AUTHORITY SECTION:
colocationbayarea.net. 300 IN SOA ns1.colocationbayarea.net. admin.colocationbayarea.net. 1234469106 10800 3600 604800 300
;; Query time: 2 msec
;; SERVER: 2001:470:1:6d::3#53(2001:470:1:6d::3)
;; WHEN: Fri Feb 13 09:01:29 2009
;; MSG SIZE rcvd: 85
Any ideas on what I am missing or doing wrong would be appreciated.