<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">hi,<br><br>I am trying to setup BIND9 as a DNS server for local IPv6 name resolution within a LAN. I've been reading through related threads on forums and whatever documents Google comes up with. I am new to this and haven't been able to get it to work so far and could really use some help.<br><br><br>heres the network:<br>Ubuntu 8.10 running BIND 9.5.0-P2<br>IPv4 - 192.168.1.8<br>IPv6 - fe80::a00:27ff:fe56:7f27/64<br>hostname - dnsserver<br>Windows XP SP2 (IPv6 Protocol installed)<br>IPv4 - 192.168.1.7<br>IPv6 - fe80::a00:27ff:fea8:81ed%5<br>hostname - winclient<br><br>Both the IPv6 addresses are autoconfigured, while IPv4 addresses are via DHCP.<br><br>As long as iam working with IPv4, things work. I forced dnsserver's IPv4 address on winclient's DNS settings.<br>i can ping winclient and it resolves its IPv4 address. (i get replies from the IPv4
 address)<br><br>However, as soon as i add dnsserver's IPv6 address as DNS using <br>netsh interface ipv6 add dns "Local Area Connection" fe80::a00:27ff:fe56:7f27/64<br><br>I am no longer able to resolve winclient's IP address (i get replies from IPv6 loopback address ::1).<br><br>On dnsserver:<br>this is the /etc/bind/named.conf.options file <br>listen-on-v6 { any; };<br><br>and this is the /etc/bind/named.conf.local file<br>zone "dnsserver." {<br>    type master;<br>    file "/etc/bind/db.dnsserver";<br>};<br><br><br>this is the zone file (/etc/bind/db.dnsserver)<br>;forward lookup zonefile<br>$TTL 86400<br>dnsserver.    IN    SOA    dnsserver. dummy.rms. {<br>   <br>        2009071309    ; Serial no., based on date<br>             
 21600     ; Refresh after 6 hours<br>               3600     ; Retry after 1 hour<br>             604800     ; Expire after 7 days<br>               3600     ; Minimum TTL of 1 hour<br>    )<br>;Name Servers<br>dnsserver        IN    AAAA fe80::a00:27ff:fe56:7f27/64<br>dnsserver        IN    A    192.168.1.8<br>@                IN    NS    dnsserver<br><br>;clients<br>client    IN    A   
 192.168.1.7    <br>client    IN    AAAA fe80::a00:27ff:fea8:81ed%5<br><br>I have tried turning iptables and ip6tables off, it still doesn't work.<br>I have checked that IPv6 is enabled on Ubuntu using lsmod|grep ipv6.<br><br>There must be something i am missing here, please help!<br><br>Thanks<br></td></tr></table><br>