[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

IPv6 DNS



Hi

I'm aiming to set up an independent IPv6 DNS. Actually, i have my own
IPv6 network, and i'm running several tests on it. This is a local
network, which has a gateway to the core network which is IPv6 native.

On this native network, i have a station called luffy, and i'm aiming at
setting up this one as DNS server.

luffy has a DNS entry in the main server for the name luffy.loria.fr and
with an IPv6 address for the prefix 2001:660:4501:1::/64

My network has a prefix 2001:660:4501:aaaa::/64.  These hosts have the
following resolv.conf : 

search ipv6.renumbering.loria.fr
nameserver 2001:660:4501:1:211:11ff:fe4d:8200

where ipv6.renumbering.loria.fr is the name i want to give to my network

On luffy, i have the following configuration : 

/etc/bin/named.conf :
zone "ipv6.renumbering.loria.fr" {
	type master;
	file "/etc/bind/ipv6.renumbering.loria.fr"
};

zone "a.a.a.a.1.0.5.4.0.6.6.0.1.0.0.2.ip6.arpa" {
	type master;
	file "/etc/bind/2001:660:4501:aaaa_64";
};

/etc/bind/ipv6.renumbering.loria.fr:
@	IN	SOA	ipv6.renumbering.loria.fr.	luffy.loria.fr. (
		2005201700
		2M
		1M
		6M
		3M)
	IN	NS	luffy.loria.fr.

aria	3600	IN	AAAA	2001:660:4501:aaaa:201:2ff:fee3:608a

/etc/bind/2001:660:4501:aaaa_64
@	IN	SOA	ipv6.renumbering.loria.fr.	luffy.loria.fr. (
		2005201700
		2M
		1M
		6M
		3M)
	IN	NS	luffy.loria.fr.

$ORIGIN a.a.a.a.1.0.5.4.0.6.6.0.1.0.0.2.ip6.int
a.8.0.6.3.e.e.f.f.f.2.0.1.0.2.0	IN	PTR	aria.ipv6.renumbering.loria.fr.

When i try to resolv, it get the following output

root@treize:~
% nslookup aria.ipv6.renumbering.loria.fr
Server:         2001:660:4501:1:211:11ff:fe4d:8200
Address:        2001:660:4501:1:211:11ff:fe4d:8200#53

*** Can't find aria.ipv6.renumbering.loria.fr: No answer

root@treize:~
% nslookup 2001:660:4501:aaaa:201:2ff:fee3:608a
Server:         2001:660:4501:1:211:11ff:fe4d:8200
Address:        2001:660:4501:1:211:11ff:fe4d:8200#53

** server can't find
a.8.0.6.3.e.e.f.f.f.2.0.1.0.2.0.a.a.a.a.1.0.5.4.0.6.6.0.1.0.0.2.ip6.arp
a: NXDOMAIN

I think it's a configuration problem, i must miss something. But the
structure seems ok, as the check command don't return any error.

dig responds :
; <<>> DiG 9.2.4 <<>> ipv6.renumbering.loria.fr soa +noaa
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 17805
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1

;; QUESTION SECTION:
;ipv6.renumbering.loria.fr.     IN      SOA

;; ANSWER SECTION:
ipv6.renumbering.loria.fr. 180  IN      SOA    
ipv6.renumbering.loria.fr. luffy.loria.fr. 2005201701 120 60 360 180

;; AUTHORITY SECTION:
ipv6.renumbering.loria.fr. 180  IN      NS      luffy.loria.fr.

;; ADDITIONAL SECTION:
luffy.loria.fr.         10629   IN      A       152.81.10.23

;; Query time: 5 msec
;; SERVER:
2001:660:4501:1:211:11ff:fe4d:8200#53(2001:660:4501:1:211:11ff:fe4d:820
0) ;; WHEN: Thu Feb 17 17:33:13 2005
;; MSG SIZE  rcvd: 115


Thanks for your help
Fred



Reply to: