• Welcome to Hurricane Electric's IPv6 Tunnel Broker Forums.

News:

Welcome to Hurricane Electric's Tunnelbroker.net forums!

Main Menu

Google over IPv6

Started by brad, January 08, 2009, 04:30:24 PM

Previous topic - Next topic

cholzhauer

I'm not sure how I'm supposed to use this...can someone give me a little direction?  I use MS AD for my DNS

Thanks

jimb

Just set up a forwarders entry for google.com zone on your DNS server, pointing that zone to the servers HE supplies.

cholzhauer

Hmm...with MS DNS, I do not see a way to set a forwarder by domain name (eg google.com)  Has anyone done this before with MS DNS?

cholzhauer

Never mind, I found it.  With server 2008, they moved the location of the conditional forwarders.

cholzhauer

Unfortunately, it's telling me that a "timeout occurred during validation"

jimb

#35
It's trivial in BIND:

# HE DNS server for google IPv6 service
zone "google.com" IN {
  type forward;
  forward first;
  forwarders {
      2001:470:20::2;
      74.82.42.42;
  };
};

cholzhauer

Once I found it in MS DNS, it was pretty easy, just a couple of clicks. 

akghetto

So what are the appropriate HE DNS servers to use to get default IPv6 DNS records for Google?

Thanks.

Scott

kcochran

Quote from: scottajohnson on February 21, 2010, 07:04:15 PM
So what are the appropriate HE DNS servers to use to get default IPv6 DNS records for Google?

Thanks.

Scott

They're in the tunnel details page listed as the Anycast DNS servers, included below.

Anycasted IPv6 Caching Nameserver:   2001:470:20::2
Anycasted IPv4 Caching Nameserver:   74.82.42.42

berry

For more recent revisions of OpenWrt add the following to the dnsmasq section of '/etc/config/dhcp' and leave the /lan/ lines intact.


        list server             '/google.com/2001:470:20::2'
        list server             '/google.ca/2001:470:20::2'
        list server             '/youtube.com/2001:470:20::2'

or

        list server             '/google.com/74.82.42.42'
        list server             '/google.ca/74.82.42.42'
        list server             '/youtube.com/74.82.42.42'


https://forum.openwrt.org/viewtopic.php?id=28975