<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SinYu Network  新语网络 -- &#187; ipv6</title>
	<atom:link href="http://www.xiaoyu.net/category/technology/ipv6/feed" rel="self" type="application/rss+xml" />
	<link>http://www.xiaoyu.net</link>
	<description>IPv6 IPv4 Domain Hosting</description>
	<lastBuildDate>Sun, 29 Jan 2012 14:40:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Setting up NAT64 &amp; DNS64</title>
		<link>http://www.xiaoyu.net/530.html</link>
		<comments>http://www.xiaoyu.net/530.html#comments</comments>
		<pubDate>Mon, 09 Jan 2012 16:03:01 +0000</pubDate>
		<dc:creator>xiaoyu</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[DNS64]]></category>
		<category><![CDATA[NAT64]]></category>

		<guid isPermaLink="false">http://www.xiaoyu.net/?p=530</guid>
		<description><![CDATA[&#160; In this post, I will try to explain how to setup NAT64 &#38; DNS64 in order to enable an IPv6 LAN (no IPv4 enabled) to talk to a mixed IPv4 en IPv6 Internet. It is assumed that there are no IPv4 hosts left in the LAN. In the setup there is one gateway for [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>In this post, I will try to explain how to setup NAT64 &amp; DNS64 in order to enable an IPv6 LAN (no IPv4 enabled) to talk to a mixed IPv4 en IPv6 Internet. It is assumed that there are no IPv4 hosts left in the LAN. In the setup there is one gateway for both native IPv6 traffic and translated (NAT64) IPv4 traffic. This gateway is also the DNS64 server.</p>
<p><strong>Operating system and packages</strong><br />
The setup was built using <a href="http://www.ubuntu.com/" target="_blank">Ubuntu</a> 10.04 server, using the following packages:</p>
<ul>
<li>Router Advertisements: <a href="http://www.litech.org/radvd/" target="_blank">RADVD</a> (available via ubuntu package manager)</li>
<li>DNS64: <a href="http://www.dillema.net/software/totd.html" target="_blank">TOTD</a> (available via ubuntu package manager)</li>
<li>NAT64: <a href="http://www.litech.org/tayga/" target="_blank">TAYGA</a> (<a href="http://ubuntu.wikimedia.org/ubuntu/pool/universe/t/tayga/" target="_blank">available here as a package</a>)</li>
<li>DHCPv6: WIDE-DHCPV6-SERVER (available via ubuntu package manager)</li>
</ul>
<p><strong>Interfaces &amp; prefixes</strong><br />
The following interfaces &amp; prefixes were used (replace values by your own where needed):</p>
<ul>
<li>Assigned IPv6 subnet: 4000:0:0::/48</li>
<li>LAN IPv6 subnet : 4000:0:0:1::/64</li>
<li>LAN interface: eth4</li>
<li>IPv4 Internet interface: eth0</li>
<li>NAT64 tunnel interface: nat64</li>
<li>6to4 NAT range: 4000:0:0:2:EEEE::/96 (should be within your own subnet)</li>
<li>GW IP: 4000:0:0:1::1/64</li>
<li>An Internet based DNS server with IP 99.99.99.99</li>
</ul>
<p><strong>RADVD &amp; DHCPv6 configuration</strong><br />
RADVD will take care of sending Router Advertisements to the clients, enabling SLAAC (Stateless Address Auto-configuration). Is should be configured like this (/etc/radvd.conf):</p>
<pre>interface eth4
{
    AdvSendAdvert on;
    AdvManagedFlag off;     //stateless autoconfiguration
    AdvOtherConfigFlag on;  //clients get extra parameters via DHCPv6
    MaxRtrAdvInterval 10;   //resend RA @ random times, max 10sec delay
    prefix 4000:0:0:1::/64  //announce prefix to clients
    {
        AdvOnLink on;
        AdvAutonomous on;
    };
    RDNSS 4000:0:0:1::1
    {
    };
};</pre>
<p>&nbsp;</p>
<p>While the RDNSS messages are sufficient for some operating systems like iOS and Linux (with extra rdnssd packages), others need their DNS via DHCPv6 (such as Windows 7). Mac OS X doesn’t listen to any of them and needs a manual DNS configuration.<br />
The DHCPv6 configuration is rather simple. Put the following line in /etc/wide-dhcpv6/dhcp6s.conf:</p>
<pre>option domain-name-servers 4000:0:0:1::1;</pre>
<p>&nbsp;</p>
<p><strong>DNS64: TOTD</strong><br />
The TOTD package is a DNS64 + forwarding daemon (it doesn’t handle DNS itself):</p>
<ul>
<li>If an AAAA request is made for a hostname that has AAAA records, the original AAAA record is returned</li>
<li>If an AAAA request is made for a hostname that only has an A record, TOTD will translate the original A record (holding an IPv4 address) into an IPv6 record, using the prefix configured in its configuration file (/etc/totd.conf) :</li>
</ul>
<pre>forwarder 99.99.99.99 port 53   //forward DNS requests to this server
prefix 4000:0:0:2:EEEE::        //this prefix is used for translation
port 53</pre>
<p>&nbsp;</p>
<p><strong>NAT64: TAYGA</strong><br />
The TAYGA package takes care of the NAT64 process. Whenever DNS64 returns a translated address to a client, it connects to the newly generated IPv6 address through its default GW. The GW itself sends the package to his nat64 tunnel interface which is managed by the TAYGA daemon. The daemon creates a mapping between the IPv6 address of the client computer and an IPv4 address of the private address range, as configured. As a last step, the IPv6 address as returned by DNS64 is translated back to the original IPv4 address and sent out to the Internet, using normal NAT44.<br />
This is how it’s configured:<br />
Create the following configuration file (/etc/tayga.conf):</p>
<pre>tun-device nat64              //name of the NAT64 tunnel device
ipv4-addr 172.16.254.1        //IP address of the remote tunnel endpoint
prefix 4000:0:0:2:EEEE::/96   //IPv6 prefix of translated IPv4 addresses
dynamic-pool 172.16.254.0/24  //pool for mapping IPv6 client &lt;-&gt; IPv4</pre>
<p>&nbsp;</p>
<p>Next, let TAYGA create the tunnel device and add the necessary IP addresses &amp; routes:</p>
<pre>tayga --mktun                               //create tunnel devices
ip link set nat64 up
ip addr add 172.16.0.1 dev nat64            //local endpoint of the tunnel
ip addr add 4000:0:0:1::1 dev nat64         //same IP as GW
ip route add 172.16.254.0/24 dev nat64      //send through tunnel
ip route add 4000:0:0:2:EEEE::/96 dev nat64 //send through tunnel
tayga -d</pre>
<p>(or use /etc/init.d/tayga start – the -d option gives some debugging information)</p>
<p>The translated (IPv4) packets will be sent to the default GW for IPv4 connectivity. The only thing left is to translate the source address (the local IPv4 endpoint address of the nat64 tunnel) to the public IPv4 address of your internet interface. This is done with IPTABLES:</p>
<pre>iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
iptables -A FORWARD -i eth0 -o nat64
                    -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A FORWARD -i nat64 -o eth0 -j ACCEPT</pre>
<p>&nbsp;</p>
<p><strong>IP Forwarding</strong><br />
If you haven’t done so already, turn on IP forwarding on the gateway:</p>
<pre>echo 1 &gt; /proc/sys/net/ipv4/conf/all/forwarding
echo 1 &gt; /proc/sys/net/ipv6/conf/all/forwarding</pre>
<p>(can also be done via sysctl commands etc…)</p>
<p><strong>Debugging</strong></p>
<ul>
<li>To check if the DNS64 is working correctly, try doing some nslookup’s (or dig). Hostnames that normally do not return an AAAA record should now return a “fake” one with a value within the configured range. If that’s not happening, first check your /etc/resolv.conf on your local machine to see if it points to the correct server</li>
<li>NAT64 problems can be checked by running tcpdump on your gateway, especially on the nat64 tunnel interface</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.xiaoyu.net/530.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在windows xp下添加IPv6 DNS</title>
		<link>http://www.xiaoyu.net/522.html</link>
		<comments>http://www.xiaoyu.net/522.html#comments</comments>
		<pubDate>Thu, 05 Jan 2012 02:57:20 +0000</pubDate>
		<dc:creator>xiaoyu</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.xiaoyu.net/?p=522</guid>
		<description><![CDATA[在命令行下依次输入： netsh， interface， ipv6 之后输入： add dns ”本地连接” 2001:470:20::2     便可以将对应DNS服务器添加到“本地连接”了]]></description>
			<content:encoded><![CDATA[<p>在命令行下依次输入：</p>
<p>netsh， interface， ipv6</p>
<p>之后输入：</p>
<div>
<ol start="1">
<li><em>add dns ”本地连接” 2001:470:20::2  </em></li>
</ol>
</div>
<p><em> </em></p>
<p>便可以将对应DNS服务器添加到“本地连接”了</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiaoyu.net/522.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv6 Email的服务</title>
		<link>http://www.xiaoyu.net/484.html</link>
		<comments>http://www.xiaoyu.net/484.html#comments</comments>
		<pubDate>Fri, 23 Dec 2011 07:19:57 +0000</pubDate>
		<dc:creator>xiaoyu</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[sales]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[ipv6 mail]]></category>

		<guid isPermaLink="false">http://www.xiaoyu.net/?p=484</guid>
		<description><![CDATA[欢迎您使用新语国际的IPv6邮局服务. 我们是世界首家提供公共IPv6 Email 的服务. 现在已经可以同时支持IPv6 IPv4 的邮件收发. 如果你申请使用后缀为ipv6china.com的邮箱，那么现在已经自动支持双网收发. 如果你使用的后缀为ipv6bbs.com的邮箱,需要稍后配置. 目前我们已经增加后缀为vp6.org的邮箱，这样短的域名也许你更喜欢使用. 如果你有什么好的建议，请直接联系我们： Email: info@ipv6china.com QQ:9371121 www.xiaoyu.net 预祝你们圣诞快乐.  稍后我们将建立邮件列表方便大家交流. 2011.12.23 管理员：小鱼虾]]></description>
			<content:encoded><![CDATA[<p>欢迎您使用新语国际的IPv6邮局服务.</p>
<p>我们是世界首家提供公共IPv6 Email 的服务. 现在已经可以同时支持IPv6 IPv4<br />
的邮件收发.</p>
<p>如果你申请使用后缀为<a href="http://ipv6china.com/" target="_blank">ipv6china.com</a>的邮箱，那么现在已经自动支持双网收发.<br />
如果你使用的后缀为<a href="http://ipv6bbs.com/" target="_blank">ipv6bbs.com</a>的邮箱,需要稍后配置.</p>
<p>目前我们已经增加后缀为<a href="http://vp6.org/" target="_blank">vp6.org</a>的邮箱，这样短的域名也许你更喜欢使用.</p>
<p>如果你有什么好的建议，请直接联系我们：</p>
<p>Email: <a href="mailto:info@ipv6china.com" target="_blank">info@ipv6china.com</a><br />
QQ:9371121<br />
<a href="http://www.xiaoyu.net/" target="_blank">www.xiaoyu.net</a></p>
<p>预祝你们圣诞快乐.  稍后我们将建立邮件列表方便大家交流.</p>
<p>2011.12.23</p>
<p>管理员：小鱼虾</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiaoyu.net/484.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv6即将正式启用.</title>
		<link>http://www.xiaoyu.net/416.html</link>
		<comments>http://www.xiaoyu.net/416.html#comments</comments>
		<pubDate>Mon, 24 Jan 2011 10:01:57 +0000</pubDate>
		<dc:creator>xiaoyu</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.xiaoyu.net/?p=416</guid>
		<description><![CDATA[“在未来数周内，IP地址便将用磬。”美国谷歌公司工程师科利蒂22日告诉法新社记者。IP地址即互联网地址，是用来标识互联网终端的逻辑地址，具有唯一性，相当于生活中家庭地址的门牌号码。现有互联网使用的IP协议是一种名为IPv4的32位地址，总容量43亿左右。新一代IP协议多年前问世，名为IPv6。这套协议系统可为互联网提供IP地址总数是个天文数字，确切为“34后面36个零”。不过，由IPv4向IPv6的协议转型是个巨大工程。 自格林尼治时间2011年6月8日零时1分开始的24小时将是IPv6协议系统的第一个试用日。届时，网络搜索引擎谷歌公司、社交网站“脸谱”等网站将率先启动IPv6协议系统，为用户及工程师提供测试和分析平台。]]></description>
			<content:encoded><![CDATA[<p>“在未来数周内，IP地址便将用磬。”美国谷歌公司工程师科利蒂22日告诉法新社记者。IP地址即互联网地址，是用来标识互联网终端的逻辑地址，具有唯一性，相当于生活中家庭地址的门牌号码。现有互联网使用的IP协议是一种名为IPv4的32位地址，总容量43亿左右。新一代IP协议多年前问世，名为IPv6。这套协议系统可为互联网提供IP地址总数是个天文数字，确切为“34后面36个零”。不过，由IPv4向IPv6的协议转型是个巨大工程。</p>
<p>自格林尼治时间2011年6月8日零时1分开始的24小时将是IPv6协议系统的第一个试用日。届时，网络搜索引擎谷歌公司、社交网站“脸谱”等网站将率先启动IPv6协议系统，为用户及工程师提供测试和分析平台。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiaoyu.net/416.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv6网络电视高清观看地址集合</title>
		<link>http://www.xiaoyu.net/276.html</link>
		<comments>http://www.xiaoyu.net/276.html#comments</comments>
		<pubDate>Wed, 21 Jul 2010 07:46:45 +0000</pubDate>
		<dc:creator>xiaoyu</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.xiaoyu.net/?p=276</guid>
		<description><![CDATA[高清直播专区 中央电视 高清频道（720P）mms://officetv.bupt.edu.cn/CCTV-HD 湖南卫视 高清直播（720P）mms://officetv.bupt.edu.cn/HNWS-HD 江苏卫视 高清直播（720P）mms://officetv.bupt.edu.cn/JSWS-HD 北京卫视 高清直播（720P）mms://officetv.bupt.edu.cn/BTV-HD 海外频道 ChannelV 在线观看地址：mms://officetv.bupt.edu.cn/ChannelV discovery探索频道 mms://officetv2.bupt.edu.cn/Discovery National Geographic《国家地理》系列点播(100集) 第一集：mms://video6.sjtu.edu.cn/ng/NG1.wmv（这个非常爽啊） 凤凰卫视 在线观看地址：mms://iptv.pku6.edu.cn/fhzw 凤凰资讯台 在线观看地址：mms://tv.lzu.edu.cn/tv4 香港电影 在线观看地址：mms://officetv.bupt.edu.cn/HMC1 央视频道 央视一套（综合） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-1 央视二套（经济） 在线观看地址mms://officetv.bupt.edu.cn/CCTV-2 央视三套（综艺） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-3 央视四套（综合国际）在线观看地址mms://officetv2.bupt.edu.cn/CCTV-4 央视五套（体育） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-5 央视六套（电影） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-6 央视七套（少儿军事） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-7 央视八套（电视剧）在线观看地址mms://officetv2.bupt.edu.cn/CCTV-8 央视九套（英语国际）在线观看地址mms://officetv2.bupt.edu.cn/CCTV-9 央视十套（科学教育） 在线观看地址mms://officetv.bupt.edu.cn/CCTV-10 CCTV-11（戏曲） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-11 CCTV-12（社会与法）在线观看地址mms://officetv2.bupt.edu.cn/CCTV-12 CCTV新闻 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-news CCTV音乐 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-music CCTV少儿 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-kid 央视新闻频道 在线观看地址mms://officetv.bupt.edu.cn/CCTV-news 央视世界地理频道 在线观看地址mms://officetv.bupt.edu.cn/CCTV-SJDL 中央教育一套 [...]]]></description>
			<content:encoded><![CDATA[<p>高清直播专区<br />
中央电视 高清频道（720P）mms://officetv.bupt.edu.cn/CCTV-HD<br />
湖南卫视 高清直播（720P）mms://officetv.bupt.edu.cn/HNWS-HD<br />
江苏卫视 高清直播（720P）mms://officetv.bupt.edu.cn/JSWS-HD<br />
北京卫视 高清直播（720P）mms://officetv.bupt.edu.cn/BTV-HD</p>
<p>海外频道<br />
ChannelV 在线观看地址：mms://officetv.bupt.edu.cn/ChannelV<br />
discovery探索频道 mms://officetv2.bupt.edu.cn/Discovery<br />
National Geographic《国家地理》系列点播(100集) 第一集：mms://video6.sjtu.edu.cn/ng/NG1.wmv（这个非常爽啊）<br />
凤凰卫视 在线观看地址：mms://iptv.pku6.edu.cn/fhzw<br />
凤凰资讯台 在线观看地址：mms://tv.lzu.edu.cn/tv4<br />
香港电影 在线观看地址：mms://officetv.bupt.edu.cn/HMC1</p>
<p>央视频道<br />
央视一套（综合） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-1<br />
央视二套（经济） 在线观看地址mms://officetv.bupt.edu.cn/CCTV-2<br />
央视三套（综艺） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-3<br />
央视四套（综合国际）在线观看地址mms://officetv2.bupt.edu.cn/CCTV-4<br />
央视五套（体育） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-5<br />
央视六套（电影） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-6<br />
央视七套（少儿军事） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-7<br />
央视八套（电视剧）在线观看地址mms://officetv2.bupt.edu.cn/CCTV-8<br />
央视九套（英语国际）在线观看地址mms://officetv2.bupt.edu.cn/CCTV-9<br />
央视十套（科学教育） 在线观看地址mms://officetv.bupt.edu.cn/CCTV-10<br />
CCTV-11（戏曲） 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-11<br />
CCTV-12（社会与法）在线观看地址mms://officetv2.bupt.edu.cn/CCTV-12<br />
CCTV新闻 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-news<br />
CCTV音乐 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-music<br />
CCTV少儿 在线观看地址mms://officetv2.bupt.edu.cn/CCTV-kid<br />
央视新闻频道 在线观看地址mms://officetv.bupt.edu.cn/CCTV-news<br />
央视世界地理频道 在线观看地址mms://officetv.bupt.edu.cn/CCTV-SJDL<br />
中央教育一套 在线观看地址mms://officetv2.bupt.edu.cn/CETV-1<br />
中央教育三套 在线观看地址mms://officetv2.bupt.edu.cn/CETV-3</p>
<p>各地卫视<br />
上海有线体育频道 mms://media6.sjtu.edu.cn/wmtv4<br />
旅游卫视 mms://officetv2.bupt.edu.cn/LYWS<br />
星空卫视 mms://officetv2.bupt.edu.cn/XKWS<br />
卡酷动画 mms://officetv.bupt.edu.cn/KKDH<br />
东风卫视 mms://officetv.bupt.edu.cn/DFWS<br />
重庆卫视 mms://officetv.bupt.edu.cn/CQWS<br />
安徽卫视 http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=8<br />
湖南卫视 http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=8<br />
浙江卫视 http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=12<br />
东方卫视 http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=17<br />
湖北卫视 http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=13<br />
辽宁卫视 http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=14<br />
云南卫视 http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=15<br />
东南卫视 http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=33<br />
广东卫视 http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=11<br />
深圳卫视 [url=http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=35]http://[2001:da8:d800::88]/tvplay/tvshow.asp?id=35[/url]]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiaoyu.net/276.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>为IPV6之家站提供服务</title>
		<link>http://www.xiaoyu.net/239.html</link>
		<comments>http://www.xiaoyu.net/239.html#comments</comments>
		<pubDate>Mon, 31 May 2010 18:10:58 +0000</pubDate>
		<dc:creator>xiaoyu</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.xiaoyu.net/?p=239</guid>
		<description><![CDATA[ 为了推广IPv6 爱好者的广泛实际应用. 我们很早与IPv6之家进行合作,我们再次提供其邮件技术服务. 大家可踊跃选择参与.  IPv6之家(IPv6Home.cn)携手新语国际网络(xiaoyu.net)，推出世界首家IPv6 Email专业服务和内部开放免费帐户，感谢新语网络提供IPv6邮箱服务及技术支持。 目前邮件帐户只能接收和发送IPV6网邮件，IPv4网暂时测试调试中。 邮箱登录地址：http://mail.ipv6bbs.com/ 申请方式： 1、域名邮箱为 yourname@ipv6bbs.com 的形式，发放数量有限，先到先得，限每人最多只发放一个。 2、为减少闲置浪费现象，申请对象仅限IPv6之家注册会员以上级别。 3、每人回帖形式为：您的帐号@ipv6bbs.com，注册信息将通过论坛短信通知你，请随时关注。 IPv6之家官方IPv6邮箱：ipv6home@ipv6bbs.com 技术支持请联系：Email: info#ongod.org，QQ: 9371121 http://www.ipv6bbs.com/thread-19149-1-1.html]]></description>
			<content:encoded><![CDATA[<p><span style="color: #99cc00;"> <span style="color: #339966;">为了推广IPv6 爱好者的广泛实际应用. 我们很早与IPv6之家进行合作,我们再次提供其邮件技术服务. 大家可踊跃选择参与.</span></span></p>
<p><span style="color: #99cc00;"><span style="color: #339966;"> </span></span>IPv6之家(<span style="color: #808000;">IPv6Home.cn</span>)携手新语国际网络(<span style="color: #808000;">xiaoyu.net</span>)，推出世界首家IPv6 Email专业服务和内部开放免费帐户，感谢新语网络提供IPv6邮箱服务及技术支持。<br />
目前邮件帐户<strong>只能接收和发送IPV6网邮件</strong>，IPv4网暂时测试调试中。</p>
<p>邮箱登录地址：<a href="http://mail.ipv6bbs.com/" target="_blank">http://mail.ipv6bbs.com/</a></p>
<p>申请方式：</p>
<div>
<blockquote><p>1、域名邮箱为 <strong>yourname@ipv6bbs.com</strong> 的形式，发放数量有限，先到先得，限每人最多只发放一个。<br />
2、为减少闲置浪费现象，申请对象仅限IPv6之家注册会员以上级别。<br />
3、每人回帖形式为：您的帐号@ipv6bbs.com，注册信息将通过论坛短信通知你，请随时关注。</p></blockquote>
</div>
<p>IPv6之家官方IPv6邮箱：ipv6home@ipv6bbs.com<br />
技术支持请联系：Email: info#ongod.org，QQ: 9371121</p>
<p><a href="http://www.ipv6bbs.com/thread-19149-1-1.html">http://www.ipv6bbs.com/thread-19149-1-1.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiaoyu.net/239.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ipv6 Commands and Links</title>
		<link>http://www.xiaoyu.net/229.html</link>
		<comments>http://www.xiaoyu.net/229.html#comments</comments>
		<pubDate>Sun, 23 May 2010 16:34:07 +0000</pubDate>
		<dc:creator>xiaoyu</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.xiaoyu.net/?p=229</guid>
		<description><![CDATA[Install Ipv6 for Windows Server 2003 c:\&#62;netsh interface ipv6 install c:\&#62;netsh interface ipv6 show interface level=verbose Firewall shows: disabled Verify the new TCP/IP Protocol in Local Area Connection Properties which now shows two TCP/IP Protocols including, Microsoft TCP/IP version 6. Do not uncheck Internet Protocol (TCP/IP). Click the Advanced tab, place a check in “Protect [...]]]></description>
			<content:encoded><![CDATA[<p>Install Ipv6 for Windows Server 2003</p>
<p>c:\&gt;netsh interface ipv6 install</p>
<p>c:\&gt;netsh interface ipv6 show interface level=verbose</p>
<p>Firewall shows: disabled</p>
<p><span id="more-229"></span></p>
<p>Verify the new TCP/IP Protocol in Local Area Connection Properties which now shows two TCP/IP Protocols including, Microsoft TCP/IP version 6. Do not uncheck Internet Protocol (TCP/IP).</p>
<p>Click the Advanced tab, place a check in “Protect my computer and network&#8230;” for the Internet Connection Firewall with Enterprise Edition only, (ICF) is not included in the 2003 Web Server Edition. With the Firewall on and with TCP/IP Version 6 installed, Windows Messenger continues to work for Video/Voice Chat. The Firewall, not TCP/IP Version 6, may need to be temporarily disabled for file or picture transfers.</p>
<p>c:\&gt;netsh interface ipv6 show help</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Router</p>
<p>c:\&gt;netsh interface ipv6 isatap set router 192.168.x.x (Linksys 192.168.1.1)</p>
<p>Then to verify:</p>
<p>c:\&gt;netsh interface ipv6 show state</p>
<p>Response: 6over4 State : default<br />
V4-Compatible Addresses: default</p>
<p>Note: The IPv6 protocol for Windows XP (prior to Service Pack 1) does not support the netsh interface ipv6 isatap set router command. Use the ipv6 rlu command instead.</p>
<p>Too many acronyms? “isatap” is Intra-Site Automatic Tunnel Addressing Protocol.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>DNS</p>
<p>By default, the Windows Server 2003 DNS Server service does not listen for DNS traffic sent over IPv6. To enable the DNS Server service to use DNS over IPv6, use the dnscmd /config /EnableIPv6 1 command, and then restart the DNS Server service. Dnscmd.exe is part of Windows Support Tools installed from the \Support\Tools folder on the Windows Server 2003 product CD.</p>
<p>How-To install Windows Support Tools from TechNet: http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/windowsserver2003/proddocs/standard/tools_howto.asp</p>
<p>Microsoft IPv6 page offers more information on IPv6 technology and its support&#8230;</p>
<p>http://www.microsoft.com/windowsserver2003/technologies/ipv6/default.mspx</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Privacy</p>
<p>Recommended maximum valid life time is one-day (default is seven-days)</p>
<p>c:\&gt;netsh interface ipv6 set privacy maxvalidlifetime=1d</p>
<p>c:\&gt;netsh interface ipv6 set privacy /? (for all Privacy options)</p>
<p>Conversion Table for changing from ipv6.exe to Windows Server 2003 ipv6 interface commands.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Network Connectivity Troubleshooting</p>
<p>Host names are resolved by using the Hosts file or by querying a DNS server. Problems in the Hosts file usually involve spelling errors and duplicate entries. Use the Nslookup utility or the Netdiag resource kit utility to diagnose host name resolution problems.</p>
<p>A misconfigured subnet mask can result in the system&#8217;s inability to access any other system on the local subnet while still being able to communicate with remote systems. (DHCP could help to prevent data entry errors in large networks.)</p>
<p>Problems at this point are usually related to an invalid ARP cache (such as a duplicate address) or an invalid subnet mask. If the IP address is local, the Address Resolution Protocol (ARP) is used to identify the destination MAC address. The utilities Arp and Ipconfig can be used to solve local address resolution problems.</p>
<p>Pathping /? Examples: -4 Force using IPv4.</p>
<p>-6 Force using IPv6.</p>
<p>c:\&gt;pathping -i -6 216.95.232.130 (localtech.us)</p>
<p>c:\&gt;pathping -i -6</p>
<p>Note: To determine why a remote host name cannot be resolved, first determine whether the remote computer is being addressed using NetBIOS or Sockets. If the application uses the Net commands or is an NT 4.0 version administrator tool, it is a NetBIOS problem. Try the net view command.</p>
<p>If the net view command works, name resolution is not the source of the problem.</p>
<p>To confirm this, check the status of the temporary session that NetBIOS creates by entering the Net view command with the syntax shown: net view where ip_address is the IP address of the same computer used in the previous example. If this command fails, the problem is in establishing a session. If the Net View utility fails with both hostname and ip_address, a likely culprit is that the computer is not running the File and Printer Sharing for Microsoft Networks service.<br />
If the application uses WinSock (like Telnet, FTP, and Web browsers) the problem will lie with DNS or the Hosts file. Microsoft Root Hints files (SRV files) are listed under the DNS Zone in Active Directory DNS, if the files are not there, DNS will not work.</p>
<p>Each of the following “subfolders” must be present in the Active Directory DNS zone. There will be DNS Service (SRV) records in these “subfolders”.</p>
<p>_MSDCS<br />
_SITES<br />
_TCP<br />
_UDP</p>
<p>read more&#8230;</p>
<p>Can you ping the static or dynamic IP of other computers in your Intranet? How-To allow incoming echo requests for Windows XP and Windows Server 2003 Enterprise Edition:<br />
If you are using the built-in Firewall (ICF), Click Start &#8211;&gt; Connect To &#8211;&gt; Show All Connections &#8211;&gt; Local Area Connection &#8211;&gt; Properties &#8211;&gt; choose the Advanced tab &#8211;&gt; Settings &#8211;&gt; the ICMP tab &#8211;&gt; and “Allow incoming echo requests”.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiaoyu.net/229.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool IPv6 links</title>
		<link>http://www.xiaoyu.net/168.html</link>
		<comments>http://www.xiaoyu.net/168.html#comments</comments>
		<pubDate>Sat, 03 Apr 2010 15:28:40 +0000</pubDate>
		<dc:creator>xiaoyu</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.xiaoyu.net/?p=168</guid>
		<description><![CDATA[Cool Links Streaming Audio: Absolute Radio: http://www.ipv6.ecs.soton.ac.uk/absoluteradio/ Streaming Video: Live stereo webcam in Amsterdam: http://www.terena.org/webcam/ Netflix: http://ipv6.netflix.com/ 40 TV channels over IPv6 &#8211; http://iptv.bupt.edu.cn Speed Test: http://www.noc.maine.edu/speedtest.net/ http://gogonet.gogo6.com/page/freenet6-tools MISC: Google: http://ipv6.google.com Check your IP address: http://whatismyipv6.net ShowIP addon for FireFox: https://addons.mozilla.org/en-US/firefox/addon/590 displays the V6 or V4 ip address on the bottom of the browser. Great [...]]]></description>
			<content:encoded><![CDATA[<h2>Cool Links</h2>
<div><strong>Streaming Audio:</strong></p>
<p>Absolute Radio: <a href="http://www.ipv6.ecs.soton.ac.uk/absoluteradio/" target="_blank">http://www.ipv6.ecs.soton.ac.uk/absoluteradio/</a></p>
<p><strong>Streaming Video:</strong><br />
Live stereo webcam in Amsterdam: <a href="http://www.terena.org/webcam/" target="_blank">http://www.terena.org/webcam/</a></p>
<p>Netflix: <a href="http://ipv6.netflix.com/" target="_blank">http://ipv6.netflix.com/</a></p>
<p>40 TV channels over IPv6 &#8211; <a href="http://iptv.bupt.edu.cn/" target="_blank">http://iptv.bupt.edu.cn</a></p>
<p><strong>Speed Test:</strong><br />
<a href="http://www.noc.maine.edu/speedtest.net/" target="_blank">http://www.noc.maine.edu/speedtest.net/</a></p>
<p><a href="http://gogonet.gogo6.com/page/freenet6-tools">http://gogonet.gogo6.com/page/freenet6-tools</a></p>
<p><strong>MISC:</strong></p>
<p>Google: <a href="http://ipv6.google.com/" target="_blank">http://ipv6.google.com</a></p>
<p>Check your IP address: <a href="http://whatismyipv6.net/" target="_blank">http://whatismyipv6.net</a></p>
<p>ShowIP addon for FireFox: <a href="http://gogonet.gogo6.com/group/%20https://addons.mozilla.org/en-US/firefox/addon/590" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/590</a> <em>displays the V6 or V4 ip address on the bottom of the browser. Great way to find out if the site you are in is V6 or V4</em></p>
<p>Official 6bone Webserver List: <a href="http://6bone.informatik.uni-leipzig.de/ipv6/stats/stats.php3" target="_blank">http://6bone.informatik.uni-leipzig.de/ipv6/stats/stats.php3</a></p>
<p>Hurricane Electric V6 hosting for 1 dollar: <a href="http://he.net/" target="_blank">http://he.net</a></p>
<p>StudioProxy: <a href="http://ipv6.studioproxy.com/" target="_blank">http://ipv6.studioproxy.com/</a> <em>Surf the V4 net with V6!</em></p>
<p>Dibbler: <a href="http://klub.com.pl/dhcpv6/" target="_blank">http://klub.com.pl/dhcpv6/</a> &#8211; a portable DHCPv6 implementation</p>
<p>NIIF/Hungarnet IPv6 project &#8211; <a href="http://ipv6.niif.hu/index.php?mn=3&amp;lg=en" target="_blank">http://ipv6.niif.hu/index.php?mn=3&amp;lg=en</a></p>
<p>Beijing Olympics IPv6 site: <a href="http://ipv6.beijing2008.cn/en" target="_blank">http://ipv6.beijing2008.cn/en</a></p>
<p>Directory of IPv6 sites: <a href="http://sixy.ch/" target="_blank">http://sixy.ch/</a></p>
<p>10+ answers to your questions about IPv6: <a href="http://rteebi.webs.com/apps/blog/show/prev?from_id=179383" target="_blank">http://rteebi.webs.com/apps/blog/show/prev?from_id=179383</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.xiaoyu.net/168.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google和各种网站的IPv6服务hosts</title>
		<link>http://www.xiaoyu.net/133.html</link>
		<comments>http://www.xiaoyu.net/133.html#comments</comments>
		<pubDate>Mon, 18 Jan 2010 15:04:59 +0000</pubDate>
		<dc:creator>xiaoyu</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.xiaoyu.net/?p=133</guid>
		<description><![CDATA[#Google和各种网站的IPv6服务hosts   #利用IPv6技术翻墙，保证Google服务可用，校园网用户使用IPv6应该不收取上网费用（至少我们学校如此） #最下方有各种网站的IPv6hosts列表 #欢迎转载，请注明来源，谢谢  #本文的发布地址：http://docs.google.com/View?id=dfkdmxnt_61d9ck9ffq #本文的共享链接：http://www.xiaoyu.net/133.html #欢迎穿越传阅 #大幅更新！请往下看！所有GoogleIPv6地址变更！支持https加密！ #5/5更新webcache.googleusercontent.com #5/7更新海盗湾 spreadsheets0.google.com id.google.com.hk music.googleusercontent.cn v*.lscache*.l.google.com IP地址变更（youtube视频储存服务器除外，谁有日本yt的IP告诉我- -），由日本东京改为澳洲悉尼，速度我测试变快了 #5/8更新feedburner.google.com www.panoramio.com #5/10更新v*.lscache*.c.google.com 感谢JL Hwung的提供 #6/16更新 Facebook（尚处于测试部署阶段） #6/19更新dir.google.com directory.google.com commondatastorage.googleapis.com linkhelp.clients.google.com docs0.google.com #6/28更新encrypted.google.com spreadsheet2.google.com 及部分高校 ipv6 网络电视 #7/12《电脑报》你威武！（2010年7月12日G14版第四列） #7/31更新 ghs 系列服务；部分疑似失效的以横线划去，待确认 #顺便提供能够解析出Google的IPv6地址的DNS服务器(因提供这些服务器的ISP已经加入Google over IPv6计划)，这样不需要修改hosts，只需改变本机DNS设置就可以自动将Google域名解析为IPv6地址了。 #2001:470:20::2 (v6) #74.82.42.42 (v4) #由HE提供。当然在内地使用IPv4的DNS会出问题。(by www.lostriver.net)(另外用这个对某些Google的功能还是有些支持不足（无法访问scholar.google.com，groups.google.com，desktop.google.com等等，也并非最快速连接地址，可以和本host文件配合使用） #最近好像有0.5不停的在举报本文有不适宜内容（滥用行为），然后接连收到10余封google发来的本文审核通过可以发表的邮件，我建议大家备份一下本文，免得某些人把本文404，reset什么的之类- -   #hosts文件位置： #C:\Windows\System32\drivers\etc  （Windows中） #/etc  （Linux中） #用文本编辑器打开hosts文件，复制以下内容到hosts文件中，保存即可（hosts文件没有后缀） #Windows用户可以以管理员身份直接运行 [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: x-small;">#Google和各种网站的IPv6服务hosts   </span></p>
<p><span style="font-size: x-small;">#利用IPv6技术翻墙，保证Google服务可用，校园网用户使用IPv6应该不收取上网费用（至少我们学校如此）</span></p>
<p><span style="font-size: x-small;">#最下方有各种网站的IPv6hosts列表</span></p>
<p><span style="font-size: x-small;">#欢迎转载，请注明来源，谢谢 </span></p>
<p><span style="font-size: x-small;">#本文的发布地址：http://docs.google.com/View?id=dfkdmxnt_61d9ck9ffq</span></p>
<p><span style="font-size: x-small;">#本文的共享链接：<a href="http://www.xiaoyu.net/133.html">http://www.xiaoyu.net/133.html</a></span></p>
<p><span style="font-size: x-small;">#</span><span style="font-size: small;">欢迎</span><span style="text-decoration: line-through;"><span style="font-size: small;">穿越</span></span><span style="font-size: small;">传阅</span></p>
<p><span style="font-size: small;"><span style="color: #ff0000;">#大幅更新！请往下看！所有GoogleIPv6地址变更！支持https加密！</span></span></p>
<p><span style="font-size: small;"><span style="color: #ff0000;"><span style="font-size: x-small;">#5/5更新<span style="color: #ff0000;"><span style="font-size: x-small;">webcache.googleusercontent.com</span></span></span></span><br />
</span></p>
<p><span style="color: #ff0000;"><span style="font-size: x-small;">#5/7更新海盗湾 <span style="font-size: x-small;">spreadsheets0.google.com</span> id.google.com.hk </span><span style="color: #ff0000;"><span style="font-size: x-small;">music.googleusercontent.cn v*.lscache*.l.google.com IP地址变更（youtube视频储存服务器除外，谁有日本yt的IP告诉我- -），由日本东京改为澳洲悉尼，速度我测试变快了</span></span></span></p>
<p><span style="color: #ff0000;"><span style="font-size: x-small;">#5/8更新feedburner.google.com <span style="color: #ff0000;"><span style="font-size: x-small;">www.panoramio.com</span></span></span></span></p>
<p><span style="color: #ff0000;"><span style="font-size: x-small;">#5/10更新<span style="color: #ff0000;"><span style="font-size: x-small;">v*.lscache*.c.google.com 感谢<span style="color: #00681c;"><strong>JL Hwung</strong><span style="color: #ff0000;">的提供</span></span></span></span></span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">#6/16更新 Facebook（尚处于测试部署阶段）</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">#6/19更新dir.google.com directory.google.com commondatastorage.googleapis.com linkhelp.clients.google.com docs0.google.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">#6/28更新encrypted.google.com spreadsheet2.google.com 及部分高校 ipv6 网络电视</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">#7/12《电脑报》你威武！（2010年7月12日G14版第四列）</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">#7/31更新 ghs 系列服务；部分疑似失效的以横线划去，待确认</span></span></p>
<h3>#顺便提供能够<strong>解析出Google的IPv6地址的DNS</strong>服务器(因提供这些服务器的ISP已经加入Google over IPv6计划)，这样不需要修改hosts，只需改变本机DNS设置就可以自动将Google域名解析为IPv6地址了。</h3>
<h3><span style="font-size: x-small;">#2001:470:20::2 (v6)</span></h3>
<h3><span style="font-size: x-small;"><span style="color: #555555;">#74.82.42.42 (v4)</span></span></h3>
<h3><span style="color: #555555;"><span style="font-size: x-small;">#由<span style="color: #555555;">HE</span>提供。当然在内地使用IPv4的DNS会出问题。(by www.lostriver.net)(另外用这个对某些Google的功能还是有些支持不足（无法访问scholar.google.com，groups.google.com，desktop.google.com等等，也并非最快速连接地址，可以和本host文件配合使用）</span></span></h3>
<p><span style="font-size: x-small;"><br />
<span style="font-size: small;"><span style="color: #20124d;"><strong>#最近好像有0.5不停的在举报本文有不适宜内容（滥用行为），然后接连收到10余封google发来的本文审核通过可以发表的邮件，我建议大家备份一下本文，免得某些人把本文404，reset什么的之类- -</strong></span></span><br />
</span></p>
<hr /> <span id="more-133"></span></p>
<p><span style="font-size: x-small;">#hosts文件位置： </span></p>
<p><span style="color: #444444;"><span style="color: #000000;"><span style="font-size: x-small;">#</span></span><span style="font-size: x-small;">C:\Windows\System32\drivers\etc  （Windows中） </span></span></p>
<p><span style="color: #444444;"><span style="color: #000000;"><span style="font-size: x-small;">#</span></span><span style="font-size: x-small;">/etc  （Linux中） </span></span></p>
<p><span style="color: #000000;"><span style="font-size: x-small;">#用文本编辑器打开hosts文件，复制以下内容到hosts文件中，保存即可（hosts文件没有后缀）</span></span></p>
<p><span style="color: #000000;"><span style="font-size: x-small;">#Windows用户可以以管理员身份直接运行 <span style="color: #0000ff;">notepad “%SystemRoot%\system32\drivers\etc\hosts”</span> 进行编辑</span></span></p>
<p><span style="color: #000000;"><span style="font-size: x-small;">#关闭某个IPv6的转发请在那一行的<span style="color: #ff0000;">最前面</span>添加#号，启用请去除<span style="color: #ff0000;">最前面</span>#号，每行中间的#号是为了区分地址和注释，不用理睬- -</span></span></p>
<hr /> </p>
<p><span style="font-size: x-small;"># Copyright (c) 1993-2006 Microsoft Corp. </span></p>
<p><span style="font-size: x-small;"># </span></p>
<p><span style="font-size: x-small;"># This is a sample HOSTS file used by Microsoft TCP/IP for Windows. </span></p>
<p><span style="font-size: x-small;"># </span></p>
<p><span style="font-size: x-small;"># This file contains the mappings of IP addresses to host names. Each </span></p>
<p><span style="font-size: x-small;"># entry should be kept on an individual line. The IP address should </span></p>
<p><span style="font-size: x-small;"># be placed in the first column followed by the corresponding host name. </span></p>
<p><span style="font-size: x-small;"># The IP address and the host name should be separated by at least one </span></p>
<p><span style="font-size: x-small;"># space. </span></p>
<p><span style="font-size: x-small;"># </span></p>
<p><span style="font-size: x-small;"># Additionally, comments (such as these) may be inserted on individual </span></p>
<p><span style="font-size: x-small;"># lines or following the machine name denoted by a &#8216;#&#8217; symbol. </span></p>
<p><span style="font-size: x-small;"># </span></p>
<p><span style="font-size: x-small;"># For example: </span></p>
<p><span style="font-size: x-small;"># </span></p>
<p><span style="font-size: x-small;">#      102.54.94.97     rhino.acme.com          # source server </span></p>
<p><span style="font-size: x-small;">#       38.25.63.10     x.acme.com              # x client host </span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">127.0.0.1       localhost </span></p>
<p><span style="font-size: x-small;">::1             localhost</span></p>
<div><span style="font-size: x-small;"></span></div>
<p><span style="font-size: x-small;"> </p>
<p></span></p>
<hr />
<h1><a id="_Google_30340538639575243_4439-p" name="_Google_30340538639575243_4439"></a><span style="font-size: x-small;"><span style="font-size: x-small;">#</span>##Google网站</span></h1>
<hr />
<h3><span style="color: #ff0000;">#下列红色地址为官方给出的准确地址，可以使用正确的https加密连接,另外无需去除下列列表中的#号，我用来做标注的</span></h3>
<p><span style="font-size: x-small;">##Google.com       Google.com</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::68 www.google.com                     #主页</span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::68 </span></span><span style="color: #ff0000;">www.l.google.com</span><br />
</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::c1 m.google.com                       #Google移动版</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::54 accounts.google.com                #帐户</span></span></p>
<p><span style="font-size: x-small;"><span style="text-decoration: line-through;">2404:6800:8005::62 ns1.google.com                     #域名系统服务器ns-soa/ns</span></span></p>
<div>
<p><span style="font-size: x-small;"><span style="text-decoration: line-through;">2404:6800:8005::62 ns2.google.com                     #域名系统服务器ns</span></span></p>
<p><span style="font-size: x-small;"><span style="text-decoration: line-through;">2404:6800:8005::62 ns3.google.com                     #域名系统服务器ns</span></span></p>
<p><span style="font-size: x-small;"><span style="text-decoration: line-through;">2404:6800:8005::62 ns4.google.com                     #域名系统服务器ns</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::65 services.google.com                #服务申请</span></span></p>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::65 goto.google.com                    #跳转</span></span></div>
<p> </p>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::65 </span></span><span style="color: #ff0000;">www3.l.google.com</span></span></div>
<p> </p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::76 </span></span><span style="color: #ff0000;">www4.l.google.com</span></span></p>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::d2 jmt0.google.com</span></span></div>
<p> </p>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::d2 wire.l.google.com</span></span></div>
<p> </p>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8005::</span>63 ipv6.google.com</span></div>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8005:</span>:67 ipv6.google.com</span></div>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8005::</span>68 ipv6.google.com</span></div>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8005::</span>69 ipv6.google.com</span></div>
<div><span style="font-size: x-small;">#2404:6800:8005::6a ipv6.google.com</span></div>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8005::</span>93 ipv6.google.com</span></div>
<div><span style="font-size: x-small;">#2404:6800:8003::6a ipv6.l.google.com</span></div>
</div>
<p> </p>
<p><span style="font-size: x-small;">##Google.com.hk    谷歌香港</span></p>
<p><strong><span style="font-size: medium;">2404:6800:8005::2e www.google.com.hk</span></strong></p>
<p><strong><span style="font-size: medium;">2404:6800:8005::2e images.google.com.hk</span></strong></p>
<p><strong><span style="font-size: medium;">2404:6800:8005::2e video.google.com.hk</span></strong></p>
<p><strong><span style="font-size: medium;">2404:6800:8005::2e maps.google.com.hk</span></strong></p>
<p><strong><span style="font-size: medium;">2404:6800:8005::2e news.google.com.hk</span></strong></p>
<p><strong><span style="font-size: medium;">2404:6800:8005::2e translate.google.com.hk</span></strong></p>
<p><span style="font-size: medium;"><span style="font-size: medium;"><strong>2404:6800:8005::2e </strong></span><strong>blogsearch</strong></span><strong><span style="font-size: medium;">.google.com.hk</span></strong></p>
<p><span style="font-size: medium;"><strong>2404:6800:8005::2e picasaweb</strong></span><span style="font-size: medium;"><strong>.google.com.hk</strong></span></p>
<p><strong><span style="font-size: medium;">2404:6800:8005::2e toolbar</span><span style="font-size: medium;">.google.com.hk</span></strong></p>
<p><strong><span style="font-size: medium;">2404:6800:8005::2e desktop</span><span style="font-size: medium;">.google.com.hk</span></strong></p>
<div><strong><span style="font-size: medium;">2404:6800:8005::2e id.google.com.hk</span></strong></div>
<p> </p>
<div><strong><span style="font-size: medium;">2404:6800:8005::2e wenda.google.com.hk</span></strong></div>
<p> </p>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8005::</span>63 ipv6.google.com.hk</span></div>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8005:</span>:67 ipv6.google.com.hk</span></div>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8005::</span>68 ipv6.google.com.hk</span></div>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8005::</span>69 ipv6.google.com.hk</span></div>
<div><span style="font-size: x-small;">#2404:6800:8005::6a ipv6.google.com.hk</span></div>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8005::</span>93 ipv6.google.com.hk</span></div>
<div><span style="font-size: x-small;">#2404:6800:8003::6a ipv6.l.google.com</span></div>
<p> </p>
<p><span style="font-size: x-small;">2404:6800:8005::67 www.googlechinawebmaster.com<br />
</span></p>
<div>##Google.cn        谷歌中国（启用此地址无法正常使用谷歌音乐）</div>
<p> </p>
<p><span style="font-size: x-small;"><span>#2401:3800:c001::68 www.google.cn                      #主页</span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span>#2401:3800:c001::68 g.cn                               #导航</span></span><br />
</span></p>
<p><span style="font-size: x-small;"><span>#2401:3800:c001::68 google.cn                          #跳转</span></span></p>
<div><span style="font-size: x-small;">2401:3800:c001::68 translate.google.cn                 #翻译</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 blogsearch.google.cn                #博客搜索</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 pack.google.cn                      #软件精选（跳转）<br />
</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 news.google.cn                      #新闻（跳转）<br />
</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 video.google.cn                      #视频（跳转）</span></div>
<p> </p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span>#2401:3800:c001::68 ipv6cn.l.google.com </span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span>#2401:3800:c001::68 ipv6.google.cn</span></span></span></p>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span>#2401:3800:c001::68 ipv6cn.l.google.com</span></span></span></div>
<p> </p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span><span style="font-size: x-small;"><span><span style="color: #ff0000;">2401:3800:c001::84 music.googleusercontent.cn</span></span></span><br />
</span></span></span></p>
<p><span style="font-size: x-small;">##Google.com.tw    Google台湾</span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">2404:6800:8005::2f www.google.com.tw                  #主页</span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::2f </span>picasaweb.google.com.tw            #<span style="font-size: x-small;">picasaweb</span><br />
</span></span></p>
<p><span style="font-size: x-small;">##Google.co.jp     Google日本</span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">2a00:1450:8006::30 www.google.co.jp</span></span></p>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">#</span></span><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">IPv6：ipv6</span></span><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">.google.co.jp</span></span></div>
<p> </p>
<p><span style="font-size: x-small;">##</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::20 www.google.com.tr #土耳其</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::21 www.google.com.au #澳大利亚</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::22 www.google.com.vn #越南</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::23 www.google.com.pk #巴基斯坦</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::24 www.google.com.my #马来西亚</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::25 www.google.com.pe</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::26 www.google.co.za</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::27 www.google.co.ve</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::28 www.google.com.ph</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::29 www.google.com.ar</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::2a www.google.co.nz</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::2b www.google.lt</span></div>
<div><span style="font-size: x-small;"><span>#2404:6800:8005::2c www.google.cn     #中国（已死）</span></span></div>
<div><span style="font-size: x-small;">2404:6800:8005::2d www.google.com.sg #新加坡</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::2e www.google.com.hk #香港</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::2f www.google.com.tw #台湾</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::30 www.google.co.jp  #日本</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::31 www.google.ae</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::32 www.google.co.uk  #英国</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::33 www.google.com.gr</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::34 www.google.de</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::35 www.google.co.il</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::36 www.google.fr     #法国</span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<div><span style="font-size: x-small;">2404:6800:8005::38 www.google.it     #意大利</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::39 www.google.lv</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::3a www.google.ca</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::3b www.google.pl</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::3c www.google.ch</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::3d www.google.ro</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::3e www.google.nl     #荷兰</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::3f www.google.com.ru #俄罗斯</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::40 www.google.at     #奥地利</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::42 www.google.be</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::44 www.google.co.kr  <span style="color: #ffffff;">#南韩</span></span></div>
<div><span style="font-size: x-small;">2404:6800:8005::45 www.google.com.ua</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::48 www.google.fi     #芬兰</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::49 www.google.co.in</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::4a www.google.pt</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::4b www.google.com.ly</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::4c www.google.com.br</span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;">#Web               网页 </span></p>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::68 www.google.com                     #主页</span></span></div>
<p> </p>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::68 encrypted.google.com               #主页</span></span></div>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::68 www.l.google.com</span></span> </p>
<p><span style="font-size: x-small;">2404:6800:8005::62 www0.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 www1.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 www3.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 suggestqueries.google.com          #搜索建议</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 suggestqueries.l.google.com        #搜索建议</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 clients0.google.com                #客户端服务器</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 clients1.google.com                #</span><span style="font-size: x-small;">客户端服务器</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 clients2.google.com                #</span><span style="font-size: x-small;">客户端服务器</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 clients3.google.com                #</span><span style="font-size: x-small;">客户端服务器</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::62 clients4.google.com                #客户端服务器</span></div>
<p> </p>
<div><span style="font-size: x-small;"><strong>2404:6800:8005::62 clients.l.google.com</strong></span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 clients-china.l.google.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">linkhelp.clients.google.com        #</span><br />
</span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;">#Images            图片 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::68 images.google.com                  #主页</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::68 images.l.google.com                #</span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 tbn0.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 tbn1.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 tbn2.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 tbn3.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 tbn4.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 tbn5.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 tbn6.google.com </span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Video             视频 </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 video.google.com                   #主页</span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">#2404:6800:8005::62 </span>video.l.google.com<br />
</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 0.gvt0.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 1.gvt0.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 2.gvt0.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 3.gvt0.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 4.gvt0.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 5.gvt0.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">video-stats.video.google.com</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::74 upload.video.google.com</span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::74 sslvideo-upload.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 vp.video.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 vp.video.l.google.com <br />
</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 qwqy.vp.video.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">nz.vp.video.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 nztdug.vp.video.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 pr.vp.video.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 ug.vp.video.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 vp01.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp02.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp03.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp04.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp05.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp06.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp07.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp08.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp09.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp10.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp11.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp12.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp13.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp14.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp15.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp16.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp17.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp18.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp19.video.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">vp20.video.l.google.com</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">2401:3800:c001::68 0.gvt0.cn</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 1.gvt0.cn</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 2.gvt0.cn</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 3.gvt0.cn</span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Map               地图 </span></p>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::68 maps.google.com                    #主页</span></span></div>
<p> </p>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::68 local.google.com</span></span></div>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::68 ditu.google.com                    #中国版（镜像）</span></span></div>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::68 maps.l.google.com</span></span> </p>
<p><span style="font-size: x-small;"><span style="color: #000000;"><span style="font-size: x-small;">2404:6800:8005::62 </span>maps-api-ssl.google.com</span><br />
</span></p>
<p><span style="font-size: x-small;"><span style="color: #000000;"><span style="font-size: x-small;">#2404:6800:8005::62 </span>clients.l.google.com<br />
</span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 map.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 kh.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 kh.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 khmdb.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 khm.google.com                     #</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 khm.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 khm0.google.com                    #<span style="font-size: x-small;">Satellite View</span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 khm1.google.com                    #<span style="font-size: x-small;">Satellite View</span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 khm2.google.com                    #<span style="font-size: x-small;">Satellite View</span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 khm3.google.com                    #<span style="font-size: x-small;">Satellite View</span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 cbk0.google.com                    #Street View</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 cbk1.google.com                    #Street View</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 cbk2.google.com                    #Street View</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 cbk3.google.com                    #Street View</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::62 mw0.google.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 mw1.google.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 mw2.google.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 mw3.google.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 mw-small.l.google.com</span></div>
<p> </p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mt.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mt0.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mt1.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mt2.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mt3.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mlt0.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mlt1.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mlt2.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mlt3.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 gg.google.com</span></p>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>csi.l.google.com</span></div>
<p><span style="font-size: x-small;">2404:6800:8005::62 id.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 id.l.google.com</span></p>
<p><span style="font-size: x-small;">2401:3800:c001::68 id.google.cn</span></p>
<div><span style="font-size: x-small;">2401:3800:c001::68 ditu.google.cn</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 mt0.google.cn</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 mt1.google.cn</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 mt2.google.cn</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 mt3.google.cn</span></div>
<div><span style="font-size: x-small;">2401:3800:c001::68 maps.gstatic.cn</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#News              资讯 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::68 news.google.com                    #主页</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::68 news.l.google.com  </span>                </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 nt0.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 nt1.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 nt2.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 nt3.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 nt4.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 nt5.ggpht.com </span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#Gmail             邮箱</span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::11 mail.google.com                    #主页</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::53</span><span style="color: #ff0000;"> googlemail.l.google.com</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::11</span></span><span style="color: #ff0000;"> googlemail.l.google.com</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::12</span></span><span style="color: #ff0000;"> googlemail.l.google.com</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::13</span></span><span style="color: #ff0000;"> googlemail.l.google.com</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bd chatenabled.mail.google.com        #Gmail中Gtalk聊天服务</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="color: #ff0000;"><span style="font-size: x-small;">#2404:6800:8005::bd </span></span>b.googlemail.l.google.com<br />
</span></span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 talk.gmail.com                     #Gmail中Gtalk聊天服务</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 gmail.google.com                   #</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 gmail.l.google.com                 #</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 www.gmail.com                      #Gmail主页</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 gmail.com                          #Gmail主页</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 pop.gmail.com                      #pop服务</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 smtp.gmail.com                     #smtp服务</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 smtp1.google.com <br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">smtp2.google.com <br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">smtp3.google.com <br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">smtp4.google.com <br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">smtp5.google.com <br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">smtp-out.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">smtp-out2.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">smtp-out3.google.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 imap.google.com                    #</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 gmail-pop.l.google.com <br />
<span style="font-size: x-small;">2404:6800:8005::62 </span>gmail-smtp.l.google.com <br />
<span style="font-size: x-small;">2404:6800:8005::62 </span>gmail-smtp-in.l.google.com <br />
<span style="font-size: x-small;">2404:6800:8005::62 </span>gmr-smtp-in.l.google.com</span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;">#Books             图书 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::62 books.google.com                   #主页</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">#2404:6800:8005::64 www3.l.google.com</span></span><br />
</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 bks0.books.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 bks1.books.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 bks2.books.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 bks3.books.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 bks4.books.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 bks5.books.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 bks6.books.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 bks7.books.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 bks8.books.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 bks9.books.google.com </span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Finance           财经 </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 finance.google.com </span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Translate         翻译 </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 translate.google.com </span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">2401:3800:c001::68 translate.google.cn</span><br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Trends            趋势</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::63 trends.google.com<br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Directory         <span style="font-size: x-small;">网页目录</span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::8a </span>directory.google.com<br />
</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::8a </span><span style="font-size: x-small;">dir.google.com                     #Google网页目录</span></span><br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Blog              博客搜索 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::63 blogsearch.google.com </span></span></p>
<p><span style="color: #ff0000;"><span style="font-size: x-small;">#2404:6800:8005::63 www2.l.google.com</span></span></p>
<p><span style="font-size: x-small;">2401:3800:c001::68 blogsearch.google.cn<br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Calendar          日历 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::64 calendar.google.com </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">#2404:6800:8005::64 www3.l.google.com</span></span><br />
</span></p>
<p><a id="Google官方Photo/Picasa（照片/网络相册）IPv6地址-p" name="Google官方Photo/Picasa（照片/网络相册）IPv6地址"></a><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Photo/Picasa      照片/网络相册 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::5d photos.google.com</span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::5d </span></span><span style="color: #ff0000;">picasaweb.l.google.com<br />
</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::63 picasa.google.com</span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::63 </span></span><span style="color: #ff0000;">www2.l.google.com</span><br />
</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::be picasaweb.google.com </span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::be </span></span><span style="color: #ff0000;">picasaweb.l.google.com</span><br />
</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 lh0.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 lh1.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 lh2.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 lh3.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 lh4.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 lh5.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 lh6.ggpht.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 lh7.ggpht.com </span></p>
<div><span style="font-size: x-small;">2404:6800:8005::62 lh8.ggpht.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 lh9.ggpht.com<br />
</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 lh6.google.com</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Docs              文档 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::64 docs.google.com </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::65 docs0.google.com</span><br />
</span></span></p>
<p><span style="font-size: x-small;">#2404:6800:8005::64 writely.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 spreadsheet.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 spreadsheets.google.com</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::62 spreadsheets0.google.com</span></div>
<p> </p>
<div><span style="font-size: x-small;">2404:6800:8005::62 spreadsheets1.google.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 spreadsheets2.google.com</span></div>
<p> </p>
<p><span style="font-size: x-small;">2404:6800:8005::62 spreadsheets.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 writely.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 writely.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">writely-com.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 writely-china.l.google.com</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Reader            阅读器 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::68 reader.google.com </span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::68 </span></span><span style="color: #ff0000;">www2.l.google.com</span><br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Group             论坛</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 groups.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 groups.l.google.com</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::89 *.googlegroups.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::89 blob-s-docs.googlegroups.com </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::89 2503061233288453901-a-1802744773732722657-s-sites.googlegroups.com</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Scholar           学术搜索 </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 scholar.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 scholar.l.google.com</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Tools             工具 </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 tools.google.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 tools.l.google.com</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Code              代码 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::64 code.google.com                    #主页</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::64 code.l.google.com                  #</span></span></p>
<p><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::52 *.googlecode.com                   #</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::52 chromium.googlecode.com            #</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::52 searchforchrome.googlecode.com     #</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::52 android-scripting.googlecode.com   #Android Scripting Environment </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::52 earth-api-samples.googlecode.com   #</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::52 gmaps-samples-flash.googlecode.com #</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::52 </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">google-code-feed-gadget.googlecode.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::52 china-addthis.googlecode.com       #</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::52 get-flash-videos.googlecode.com    #get-flash-videos</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::52 youplayer.googlecode.com           #YouPlayer</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::52 cclive.googlecode.com              #ccLive</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Labs              实验室 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::65 labs.google.com </span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::65 </span></span><span style="color: #ff0000;">www3.l.google.com</span><br />
</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 www.googlelabs.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 browsersize.googlelabs.com         #Browser Size </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 storegadget.googlelabs.com         #Google Checkout Store Gadget </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 citytours.googlelabs.com           #City Tours </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 livingstories.googlelabs.com       #Living Stories </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 image-swirl.googlelabs.com         #Image Swirl </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 scriptconv.googlelabs.com          #Script Converter </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 relatedlinks.googlelabs.com        #Related Links </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 fastflip.googlelabs.com            #Fast Flip </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 listen.googlelabs.com              #Google Listen </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 similar-images.googlelabs.com      #Similar Images </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 tables.googlelabs.com              #Fusion Tables </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 newstimeline.googlelabs.com        #Google News Timeline </span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Knol              在线百科全书</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::65 knol.google.com </span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::65 </span></span><span style="color: #ff0000;">www3.l.google.com</span><br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#SketchUp          3D建模工具 </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 sketchup.google.com </span></p>
<p><span style="font-size: x-small;">#2404:6800:8005::62 sketchup.l.google.com</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Pack              软件精选 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::68 pack.google.com </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::68 www2.l.google.com</span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::68 cache.pack.google.com</span></p>
<div><span style="font-size: x-small;">2401:3800:c001::68 pack.google.cn</span></div>
<p> </p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Blogger           博客服务 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf www.blogger.com</span></span></p>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf blogger.com</span></span></div>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf buttons.blogger.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf beta.blogger.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf draft.blogger.com                  #</span></span><span style="font-size: x-small;"><span style="color: #ff0000;">Blogger 测试区</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf status.blogger.com                 #Blogger 状态</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf help.blogger.com                   #</span></span><span style="font-size: x-small;"><span style="color: #ff0000;">支持中心</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf buzz.blogger.com                   #Blogger Buzz博客（英文）</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf photos1.blogger.com</span></span></p>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">bp0.blogger.com</span></span></div>
<p> </p>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">bp1.blogger.com</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">bp2.blogger.com</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::bf bloggerphotos.l.google.com<br />
</span></span></div>
<p><span style="font-size: x-small;">2404:6800:8005::62 blogger.google.com</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::62 www2.blogger.com</span></div>
<p> </p>
<p><span style="font-size: x-small;">2404:6800:8005::62 blogger.l.google.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 www.blogblog.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 www1.blogblog.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 www2.blogblog.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 img.blogblog.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 img1.blogblog.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 img2.blogblog.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 img.blshe.com</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#Blogspot          博客服务</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 www.blogspot.com                   #主页</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">#2404:6800:8005::62 </span>blogger.l.google.com<br />
</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 blogsofnote.blogspot.com           #留言博客（英文版本）</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 knownissues.blogspot.com           #已知问题</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 1.bp.blogspot.com                  #</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 2.bp.blogspot.com                  #</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 3.bp.blogspot.com                  #</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 4.bp.blogspot.com                  #</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 bloggertemplatespreview.blogspot.com #模板编辑器的实时预览功能</span></div>
<div><span style="font-size: x-small;">#Google 官方博客群</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>adwordsapi.blogspot.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>android-developers.blogspot.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 apacdeveloper.blogspot.com         #Google Asia Pacific Developer Blog</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 chrome.blogspot.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>doubleclickpublishersapi.blogspot.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 emeadev.blogspot.com               #Google Europe, Middle East &amp; Africa Developer Blog</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>gearsblog.blogspot.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 google-code-featured.blogspot.com  #Featured Projects on Google Code</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>google-entertainment-it.blogspot.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>google-opensource.blogspot.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>googleajaxsearchapi.blogspot.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 googleappengine.blogspot.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>googleappsdeveloper.blogspot.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 googleblog.blogspot.com            #Official Google Blog</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>googlecheckout.blogspot.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>googlecheckoutapi.blogspot.com<br />
</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 googlechinablog.blogspot.com</span></div>
<div><span style="color: #000000;"><span style="font-size: x-small;">2404:6800:8005::62</span></span> <span style="color: #000000;"><span style="font-size: x-small;">googlechrome</span></span><span style="color: #000000;"><span style="font-size: x-small;">releases.blogspot.com  #<span style="color: #000000;"><span style="font-size: x-small;">Google Chrome </span></span><span style="color: #000000;"><span style="font-size: x-small;">Releases</span></span></span></span></div>
<div><span style="color: #000000;"><span style="font-size: x-small;">2404:6800:8005::62 googlecode.blogspot.com</span></span></div>
<div><span style="color: #000000;"><span style="font-size: x-small;">2404:6800:8005::62 googlecustomsearch.blogspot.com    #Google Custom Search Blog</span></span></div>
<div><span style="color: #000000;"><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>googleenterprise.blogspot.com</span></span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 googlegeodevelopers.blogspot.com   #Google Geo Developers Blog</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>googlemashupeditor.blogspot.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>googlemobile.blogspot.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>googleresearch.blogspot.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>googletalk.blogspot.com</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>googlewebmaster-cn.blogspot.com<br />
</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 googlewebmastercentral.blogspot.com<br />
</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">googlewebtoolkit.blogspot.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 golangblog.blogspot.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 gmailblog.blogspot.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 igoogledeveloper.blogspot.com      #iGoogle Developer Blog<br />
</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 youtube-global.blogspot.com        #YouTube Blog</span></div>
<p><span style="font-size: x-small;">#BlogSpot 上的其他常用博客<br />
</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::62 googlesystem.blogspot.com          #</span><span style="font-size: x-small;">Google Operating System</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 chinafreenet.blogspot.com          #中国自由网</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 gregmankiw.blogspot.com            #GREG MANKIW&#8217;S BLOG</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 xiangeliushui.blogspot.com         #年华似水，岁月如歌</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 chinagfw.blogspot.com              #GFW Blog</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 wallpapers-arena.blogspot.com      #Wallpapers Arena</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62</span><span style="font-size: x-small;"> ggq.blogspot.com                   #GG圈</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 whiteappleer.blogspot.com          #WA＋ER</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62</span><span style="font-size: x-small;"> rain-reader.blogspot.com           #Nostalgia: Those Who Remain</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62</span> <span style="font-size: x-small;">unityteam1.blogspot.com            #生活圈 BLOG</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62</span> ipv6-or-no-ipv6.blogspot.com       #<span style="font-size: x-small;">IPv6 Related Stuff</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62</span> autoproxy2pac.appspot.com          #<br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62</span> gysj.blogspot.com                  #<br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62</span> szncu.blogspot.com<span style="font-size: x-small;">                 #</span><br />
</span></div>
<div><span style="font-size: x-small;">#2404:6800:8005::62 *.blogspot.com                     #可以添加你自己的博客地址到这里</span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Checkout          买家</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::73</span></span><span style="color: #ff0000;"> checkout.google.com </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="color: #ff0000;"><span style="font-size: x-small;">#2404:6800:8005::73</span></span> checkout.l.google.com<br />
</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;"><span><span style="text-decoration: line-through;">#Orkut             网络社区（尚未部署至 ipv6）</span></span></span></p>
<p><span style="font-size: x-small;"><span><span style="text-decoration: line-through;">#2404:6800:8005::62 orkut.google.com</span></span></span></p>
<p><span style="font-size: x-small;"><span><span style="text-decoration: line-through;">#2404:6800:8005::62 orkut.l.google.com</span></span></span></p>
<p><span style="font-size: x-small;"><span><span style="text-decoration: line-through;">#2404:6800:8005::62 www.orkut.com</span></span></span></p>
<p><span style="font-size: x-small;"><span><span style="text-decoration: line-through;">#2404:6800:8005::62 </span></span></span><span style="font-size: x-small;"><span><span style="text-decoration: line-through;">clients1.orkut.com</span></span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::69 help.orkut.com<br />
</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 officialorkutblog.blogspot.com<br />
</span></p>
<p><span style="font-size: x-small;">2404:6800:8003::79 blog.orkut.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8003::79 en.blog.orkut.com<br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Sites             协作平台</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::65 sites.google.com</span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::65 </span></span><span style="color: #ff0000;">www3.l.google.com</span><br />
</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 gsamplemaps.googlepages.com</span></p>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;">#Google Apps       企业应用套件</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 apps.google.com                    #主页</span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8003::79 </span>ghs.google.com<br />
</span></p>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><strong>2404:6800:8003::79 </strong></span><strong>ghs46.google.com</strong>              <span style="color: #0000ff;">#GHS 双栈入口！</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8003::79 </span>ghs.l.google.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8003::79 ghs46.l.google.com<br />
<span style="font-size: x-small;"><br />
</span></span></div>
<div><span style="font-size: x-small;">2404:6800:8003::79 blog.opensocial.org<br />
</span></div>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">2404:6800:8003::79</span> <span style="font-size: x-small;">ghs.google.com</span>                    #可以添加你 GApps 域名的博客地址 / GSites <span style="font-size: x-small;">地址</span>到这里</span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;">#Mashups/App Engine   GAE</span></p>
<div>
<div><span style="font-size: x-small;">2404:6800:8005::67 googlemashups.com                  #Google Mashup Editor<br />
</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::68 www.googlemashups.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 googlemashups.l.google.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::63 *.googlemashups.com</span></div>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::64 appengine.google.com               #主页</span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::64 </span></span><span style="color: #ff0000;">www3.l.google.com</span><br />
</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 appspot.l.google.com               #</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d *.appspot.com</span></span></p>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::8d productideas.appspot.com           #Google 汇问</span></span></div>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d wave-api.appspot.com               #Google Wave API</span></span> </p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d wave-skynet.appspot.com            #SkyNet </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d cactus-wave.appspot.com            #</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d storegadgetwizard.appspot.com      #Google Checkout Store Gadget </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d moderator.appspot.com              #Google Moderator </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d</span> <span style="color: #ff0000;">haiticrisis.appspot.com            #Google Person Finder: Haiti Earthquake</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d mytracks.appspot.com               #My Tracks for Android </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d reader2twitter.appspot.com         #Reader2Tweet</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d twitese.appspot.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d gfw.appspot.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d go2china9</span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">.appspot.com</span></span></span></p>
<p><span><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;"> mirrorrr.appspot.com</span></span></span></p>
<p><span><span><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d</span></span></span><span> </span><span style="font-size: x-small;"><span style="color: #ff0000;">mirrornt.appspot.com</span></span></span></p>
<p><span><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d </span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">soproxy.</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">appspot</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">.com </span></span></span></p>
<p><span><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d </span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">so-proxy.</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">appspot</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">.com</span></span></span></p>
<p><span><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d </span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">go-west.</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">appspot</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">.com</span></span></span></p>
<p><span><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d </span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">proxytea.</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">appspot</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">.com </span></span></span></p>
<p><span><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d </span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">sivanproxy.</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">appspot</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">.com</span></span></span></p>
<p><span><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d </span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">proxybay.</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">appspot</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">.com</span></span></span></p>
<p><span><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d </span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">ipgoto.</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">appspot</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">.com</span></span></span></p>
<p><span><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d </span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">meme2028.</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">appspot</span></span></span><span><span style="font-size: x-small;"><span style="color: #ff0000;">.com</span></span></span> </p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8d autoproxy2pac.appspot.com</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Google APIs       开发接口服务</span></p>
<p><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::62 chart.apis.google.com              #Google 图表 API</span></span></p>
<p><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::5f *.googleapis.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::5f translate.googleapis.com           #Google 翻译 API</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::5f ajax.googleapis.com                #Ajax API</span></span></p>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::5f googleapis-ajax.google.com</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::5f googleapis-ajax.l.google.com</span></span></div>
<p> </p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::5f </span></span>commondatastorage.googleapis.com   #</span></span><br />
 </p>
<p><span style="font-size: x-small;">#Google Hosted     托管服务</span></p>
<div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 www.googlehosted.com</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 music.googleusercontent.com        #音乐播放器 专辑封面 等<br />
</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 googlehosted.l.google.com</span></span></div>
</div>
<p> </p>
<p><span style="font-size: x-small;">2404:6800:8005::62 base.googlehosted.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 base0.googlehosted.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 base1.googlehosted.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 base2.googlehosted.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 base3.googlehosted.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 base4.googlehosted.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 base5.googlehosted.com</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#GoogleUserContent 用户自定义的Google服务</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 </span></span>www.googleusercontent.com                          #</span></span><br />
</span></p>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 clients1.googleusercontent.com                     #</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 clients2.googleusercontent.com                     #</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 webcache.googleusercontent.com                     #网页快照<br />
</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 lh0.googleusercontent.com                          #</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 lh1.googleusercontent.com                          #</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 lh2.googleusercontent.com                          #</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 lh3.googleusercontent.com                          #</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::62 lh3.googleusercontent.com                          #谷歌音乐（大陆）<br />
</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::62 lh4.googleusercontent.com<span style="color: #ff0000;"><span style="font-size: x-small;">                          #谷歌音乐（大陆）</span></span></span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::62 lh5.googleusercontent.com<span style="color: #ff0000;"><span style="font-size: x-small;">                          #谷歌音乐（大陆）</span></span></span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::62 lh6.googleusercontent.com<span style="color: #ff0000;"><span style="font-size: x-small;">                          #谷歌音乐（大陆）</span></span></span></span></div>
</div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 s2.googleusercontent.com                           #</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 wave.googleusercontent.com                         #Wave</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 blogger.googleusercontent.com                      #Blogger</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 translate.googleusercontent.com                    #翻译</span></span></div>
<div><span style="color: #ff0000;"><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 </span></span>music-onebox.googleusercontent.com                 #音乐歌曲CD封面图片</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 spreadsheets-opensocial.googleusercontent.com      #表格</span></span><br />
</span></div>
<div><span style="color: #ff0000;"><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 </span></span>www-opensocial.googleusercontent.com               #</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 www-gm-opensocial.googleusercontent.com            #Gmail？</span></span><br />
</span></div>
<div><span style="color: #ff0000;"><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 </span></span>www-opensocial-sandbox.googleusercontent.com       #SandBox</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 www-open-opensocial.googleusercontent.com          #</span></span></div>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 1-open-opensocial.googleusercontent.com            #</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">www-focus-opensocial.googleusercontent.com         #缩略图</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">images0-focus-opensocial.googleusercontent.com     #缩略图</span></span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">images1-focus-opensocial.googleusercontent.com     #缩略图</span></span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 </span></span><span style="color: #ff0000;">images2-focus-opensocial.googleusercontent.com     #缩略图</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="font-size: x-small;"><span><span style="color: #ff0000;">2404:6800:8005::84 </span></span></span><span><span style="color: #ff0000;">doc-00-7o-docs.</span></span></span><span style="font-size: x-small;"><span><span style="color: #ff0000;">googleusercontent.com</span></span><span style="font-size: x-small;"><span><span style="color: #ff0000;">               #</span></span></span></span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="font-size: x-small;"><span><span style="color: #ff0000;">2404:6800:8005::84 </span></span></span><span><span style="color: #ff0000;">doc-08-7o-docs.</span></span></span><span style="font-size: x-small;"><span><span style="color: #ff0000;">googleusercontent.com</span></span><span style="font-size: x-small;"><span><span style="color: #ff0000;">               #</span></span></span></span><br />
</span></div>
<div><span style="font-size: x-small;"><span><span style="color: #ff0000;">2404:6800:8005::84 </span></span></span><span style="font-size: x-small;"><span><span style="color: #ff0000;">doc-10-7o-docs.googleusercontent.com               #</span></span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="font-size: x-small;"><span><span style="color: #ff0000;">2404:6800:8005::84 </span></span></span><span><span style="color: #ff0000;">doc-14-7o-docs.googleusercontent.com</span></span><span style="font-size: x-small;"><span><span style="color: #ff0000;">               #</span></span></span></span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="font-size: x-small;"><span><span style="color: #ff0000;">2404:6800:8005::84 </span></span></span><span><span style="color: #ff0000;">doc-0c-7o-docs.googleusercontent.com</span></span><span style="font-size: x-small;"><span><span style="color: #ff0000;">               #</span></span></span></span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span><span style="color: #ff0000;">2404:6800:8005::84 </span></span></span><span><span style="color: #ff0000;">doc-0g-7o-docs.googleusercontent.com</span></span><span style="font-size: x-small;"><span><span style="color: #ff0000;">               #</span></span></span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span><span style="color: #ff0000;">2404:6800:8005::84 </span></span></span><span><span style="color: #ff0000;">doc-0s-7o-docs.googleusercontent.com</span></span><span style="font-size: x-small;"><span><span style="color: #ff0000;">               #</span></span></span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 </span></span><span style="color: #ff0000;">www-focus-opensocial.googleusercontent.com         #</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 </span></span><span style="color: #ff0000;">0-focus-opensocial.googleusercontent.com           #<br />
</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 </span></span><span style="color: #ff0000;">1-focus-opensocial.googleusercontent.com           #</span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 </span></span><span style="color: #ff0000;">2-focus-opensocial.googleusercontent.com           #</span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 </span></span><span style="color: #ff0000;">3-focus-opensocial.googleusercontent.com           #</span><br />
</span></div>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 www-open-opensocial.googleusercontent.com          #</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 0-open-opensocial.googleusercontent.com            #</span></span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 1-open-opensocial.googleusercontent.com            #</span></span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 2-open-opensocial.googleusercontent.com            #</span></span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::84 3-open-opensocial.googleusercontent.com            #</span></span></div>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 www-wave-opensocial.googleusercontent.com          #Wave</span></span></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 0-wave-opensocial.googleusercontent.com            #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 1-wave-opensocial.googleusercontent.com            #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 2-wave-opensocial.googleusercontent.com            #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 3-wave-opensocial.googleusercontent.com            #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 4-wave-opensocial.googleusercontent.com            #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 5-wave-opensocial.googleusercontent.com            #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 6-wave-opensocial.googleusercontent.com            #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 7-wave-opensocial.googleusercontent.com            #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 8-wave-opensocial.googleusercontent.com            #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 9-wave-opensocial.googleusercontent.com            #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 10-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 11-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 12-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 13-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 14-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 15-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 16-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 17-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 18-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 19-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 20-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 21-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 22-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 23-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 24-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 25-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 26-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 27-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 28-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 29-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 30-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 31-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 32-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 33-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 34-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 35-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 36-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 37-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 38-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 39-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 40-wave-opensocial.googleusercontent.com           #</span></span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;"><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 </span></span></span>1927502848-wave-opensocial.googleusercontent.com   #<br />
</span></span></span></em></div>
<div><em><span style="color: #ff0000;"><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 </span></span>la5dhjn62ripv179lf7outfl68h6dc3c-a-wave-opensocial.googleusercontent.com</span></span></em></div>
<div><em><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 </span></span></span>3hdrrlnlknhi77nrmsjnjr152ueo3soc-a-calendar-opensocial.googleusercontent.com</span><br />
</span></span></span></em></div>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 </span></span><span style="color: #ff0000;">eds9earadhd329tuipi6kfc947ts928j-a-sites-opensocial.googleusercontent.com</span><br />
</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::84 </span></span>sp5ovcebgtpf6rg65f53gdnvqtt3a58n-a-sites-opensocial.googleusercontent.com<br />
</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;">#Chrome            谷歌浏览器 </span> </p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::64 chrome.google.com </span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::65 <span style="font-size: x-small;">browsersync.google.com</span></span></p>
<div><span style="font-size: x-small;">2404:6800:8005::65 <span style="font-size: x-small;">browsersync.l.google.com</span></span></div>
<p> </p>
<div><span style="font-size: x-small;">2404:6800:8005::63 toolbarqueries.google.com          #PageRank 查询（工具栏显示）</span></div>
<p> </p>
<div><span style="font-size: x-small;">2404:6800:8005::63 toolbarqueries.clients.google.com</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::63 toolbarqueries.l.google.com</span></div>
<p> </p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Chromium          Chromium 项目</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::65 chromium.org                       #跳转至 www</span></div>
<p> </p>
<div><span style="font-size: x-small;">2404:6800:8003::79 www.chromium.org</span></div>
<p><span style="font-size: x-small;">2404:6800:8003::79 dev.chromium.org</span> </p>
<p><span style="font-size: x-small;">2404:6800:8003::79 blog.chromium.org</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Chromium OS       Chromium 操作系统</span></p>
<p><span style="color: #ff0000;">2404:6800:8003::79 goto.ext.google.com</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::8d welcome-cros.appspot.com           #Chromium 主菜单</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">#SafeBrowing       安全浏览</span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #000000;"><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">sb.google.com                      #安全浏览检测 API</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #000000;"><span style="font-size: x-small;">2001:4860:8010::88 sb.l.google.com<br />
</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #000000;"><span style="font-size: x-small;">2404:6800:8005::62 sb-ssl.google.com</span></span></span></p>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #000000;"><span style="font-size: x-small;">2001:4860:8010::be sb-ssl.google.com</span></span></span></div>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #000000;"><span style="font-size: x-small;">2001:4860:8010::5b sb-ssl.google.com</span></span></span></div>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #000000;"><span style="font-size: x-small;">2001:4860:8010::5d sb-ssl.google.com</span></span></span></div>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #000000;"><span style="font-size: x-small;">2001:4860:8010::88 sb-ssl.google.com</span></span></span></div>
<p> </p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #000000;"><span style="font-size: x-small;">2404:6800:8005::62 sb-ssl.l.google.com</span></span></span></p>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #000000;"><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">safebrowsing.clients.google.com    #安全浏览警告页面</span></span></span></div>
<p> </p>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #000000;"><span style="font-size: x-small;">2404:6800:8005::62 safebrowsing-cache.google.com      #安全浏览警告数据（分块加载）</span></span></span></div>
<p><span style="font-size: x-small;">2001:4860:4001:402::17 safebrowsing.cache.l.google.com<br />
</span> </p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Toolbar           工具栏</span> </p>
<p><span style="font-size: x-small;">2404:6800:8005::62 toolbar.google.com</span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">#2404:6800:8005::62 </span>tools.l.google.com<br />
</span></p>
<p><span style="font-size: x-small;"><span style="text-decoration: line-through;">#2404:6800:8005::62 </span></span><span style="font-size: x-small;"><span style="text-decoration: line-through;">www.</span></span><span style="font-size: x-small;"><span style="text-decoration: line-through;">gmailnotifier</span></span><span style="font-size: x-small;"><span style="text-decoration: line-through;">.com              #Gmail Notifier</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Desktop           桌面 </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 desktop.google.com </span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>desktop.l.google.com<br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#Google Earth      Google地球</span></div>
<div><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::65 earth.google.com</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::65 </span></span><span style="color: #ff0000;">www3.l.google.com</span><br />
</span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;">#Google Mars       Google火星地图 </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::65 mars.google.com </span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">#2404:6800:8005::65 </span></span><span style="color: #ff0000;">www3.l.google.com</span><br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#Google Store      Google商店（里面有很多谷歌自己的东西出售，像谷歌T恤、茶杯、小玩意等等）</span></div>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="text-decoration: line-through;">#2404:6800:8005::62 www.googlestore.com</span></span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">#Download          下载</span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::5b dl.google.com</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::5d dl.l.google.com</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::88 dl-ssl.google.com</span></span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">#Sandbox           沙盒</span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="color: #000000;">2404:6800:8005::51 sandbox.google.com</span></span></span></p>
<p><span style="font-size: x-small;"><strong><br />
</strong></span></p>
<p><span style="font-size: x-small;">#Wave              波浪</span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::76 wave.google.com</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::76 www4.l.google.com</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">2404:6800:8005::76 wave0.google.com</span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">2404:6800:8005::76 wave1.google.com</span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">2404:6800:8005::62 googlewave.com</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">#WiFi              </span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::7b </span></span><span style="color: #ff0000;">wifi.google.com</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>wifi.l.google.com</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">#GTalk             聊天</span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="text-decoration: line-through;">#2404:6800:8005::62 talk.google.com</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="text-decoration: line-through;">2404:6800:8005::62 talk.l.google.com</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="text-decoration: line-through;">2404:6800:8005::62 default.talk.google.com</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">2404:6800:8005::62 talkgadget.google.com</span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="text-decoration: line-through;">2404:6800:8005::62 rtmp0.google.com</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="text-decoration: line-through;">2404:6800:8005::62 users.talk.google.com</span></span></span></p>
<p><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="font-size: x-small;"><br />
</span>#Buzz</span></span></p>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>buzz.google.com<br />
</span><span style="font-size: x-small;"><br />
</span></span></div>
<div><span style="font-size: x-small;">#Answers/Guru/WenDa  问答社区（国际版已停止运营）</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::66 answers.google.com</span></div>
<div><span style="font-size: x-small;"><span style="text-decoration: line-through;">2404:6800:8005::62 guru.google.com</span></span></div>
<div><span style="font-size: x-small;">2404:6800:8005::62 guru.google.co.th          #泰国</span></div>
<div><span style="font-size: x-small;">2404:6800:8005::2e wenda.google.com.hk<br />
</span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">#Fusion            RSS 聚合指南</span></span></div>
<div><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">2404:6800:8005::62 fusion.google.com</span></span></div>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><br />
</span>#iGoogle Modules   iGoogle 小工具</span> </p>
<p><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 www.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">www.ig.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">ig.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62</span> <span style="font-size: x-small;">ads.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 p.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 1.ig.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 2.ig.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 3.ig.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 4.ig.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 5.ig.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 6.ig.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 maps.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 img0.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 img1.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 img2.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 img3.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 skins.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 friendconnect.gmodules.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mc8tdi0ripmbpds25eboaupdulritrp6.friendconnect.gmodules.com</span></p>
<p><span style="font-size: x-small;"><span style="font-family: SimSun, 宋体, 'MS Song', serif;">2404:6800:8005::62 r1rk9np7bpcsfoeekl0khkd2juj27q3o.friendconnect.gmodules.com</span></span></p>
<p><span style="font-size: x-small;"><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">2404:6800:8005::62 </span>r1rk9np7bpcsfoeekl0khkd2juj27q3o.a.friendconnect.gmodules.com</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#GStatic           Google 静态文件存储</span></div>
<p><span style="font-size: x-small;">2404:6800:8005::62 www.gstatic.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 csi.gstatic.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 maps.gstatic.com</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::78 ssl.gstatic.com</span></span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 t0.gstatic.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 t1.gstatic.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 t2.gstatic.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 t3.gstatic.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 t4.gstatic.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 mt0.gstatic.com</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">##Google其他服务</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#YouTube </span></p>
<div><span style="color: #ff0000;">2404:6800:8005::65 www.youtube.com</span></div>
<div><span style="color: #ff0000;">#2404:6800:8005::65 youtube-ui.l.google.com</span></div>
<div>2404:6800:8005::64 youtube-ui-china.l.google.com</div>
<div>2404:6800:8005::64 m.youtube.com</div>
<div><span style="color: #ff0000;">2404:6800:8005::64 tw.youtube.com</span></div>
<div><span style="color: #ff0000;">#2404:6800:8005::64 youtube-ui.l.google.com</span></div>
<div><span style="color: #ff0000;">2404:6800:8005::65 youtu.be</span></div>
<div>2404:6800:8005::64 gdata.youtube.com</div>
<div>2404:6800:8005::64 help.youtube.com</div>
<div>2404:6800:8005::64 upload.youtube.com</div>
<div>2404:6800:8005::64 insight.youtube.com</div>
<div>2404:6800:8005::64 img.youtube.com</div>
<div>2404:6800:8005::64 s2.youtube.com</div>
<div>2404:6800:8005::64 youtube.com</div>
<div>2404:6800:8003::79 apiblog.youtube.com            #YouTube API 开发博客</div>
<div><span style="font-size: x-small;">2404:6800:8005::64 clients1.youtube.com</span></div>
<div><span style="font-size: x-small;">2001:4860:4001:402::15 </span>static.cache.l.google.com</div>
<div>2404:6800:8005::76 ytimg.l.google.com</div>
<div>2404:6800:8005::76 i.ytimg.com</div>
<div>2404:6800:8005::76 i1.ytimg.com</div>
<div>2404:6800:8005::76 i2.ytimg.com</div>
<div>2404:6800:8005::76 i3.ytimg.com</div>
<div>2404:6800:8005::76 i4.ytimg.com</div>
<div>2404:6800:8005::76 d.yimg.com</div>
<div>2404:6800:8005::76 s.ytimg.com</div>
<p> </p>
<p>2404:6800:4001::10 v1.lscache1.c.youtube.com<br />
2404:6800:4001::10 v1.lscache2.c.youtube.com<br />
2404:6800:4001::10 v1.lscache3.c.youtube.com<br />
2404:6800:4001::10 v1.lscache4.c.youtube.com<br />
2404:6800:4001:1::10 v1.lscache5.c.youtube.com<br />
2404:6800:4001::10 v1.lscache6.c.youtube.com<br />
2404:6800:4001::10 v1.lscache7.c.youtube.com<br />
2404:6800:4001::10 v1.lscache8.c.youtube.com<br />
2404:6800:4001:1::13 v2.lscache1.c.youtube.com<br />
2404:6800:4001:1::13 v2.lscache2.c.youtube.com<br />
2404:6800:4001::13 v2.lscache3.c.youtube.com<br />
2404:6800:4001:1::13 v2.lscache4.c.youtube.com<br />
2404:6800:4001::13 v2.lscache5.c.youtube.com<br />
2404:6800:4001::13 v2.lscache6.c.youtube.com<br />
2404:6800:4001::13 v2.lscache7.c.youtube.com<br />
2404:6800:4001::13 v2.lscache8.c.youtube.com<br />
2404:6800:4001::16 v3.lscache1.c.youtube.com<br />
2404:6800:4001::16 v3.lscache2.c.youtube.com<br />
2404:6800:4001::16 v3.lscache3.c.youtube.com<br />
2404:6800:4001::16 v3.lscache4.c.youtube.com<br />
2404:6800:4001::16 v3.lscache5.c.youtube.com<br />
2404:6800:4001::16 v3.lscache6.c.youtube.com<br />
2404:6800:4001:1::16 v3.lscache7.c.youtube.com<br />
2404:6800:4001::16 v3.lscache8.c.youtube.com<br />
2404:6800:4001::19 v4.lscache1.c.youtube.com<br />
2404:6800:4001:1::19 v4.lscache2.c.youtube.com<br />
2404:6800:4001::19 v4.lscache3.c.youtube.com<br />
2404:6800:4001::19 v4.lscache4.c.youtube.com<br />
2404:6800:4001::19 v4.lscache5.c.youtube.com<br />
2404:6800:4001::19 v4.lscache6.c.youtube.com<br />
2404:6800:4001::19 v4.lscache7.c.youtube.com<br />
2404:6800:4001::19 v4.lscache8.c.youtube.com<br />
2404:6800:4001::1c v5.lscache1.c.youtube.com<br />
2404:6800:4001:1::1c v5.lscache2.c.youtube.com<br />
2404:6800:4001::1c v5.lscache3.c.youtube.com<br />
2404:6800:4001:1::1c v5.lscache4.c.youtube.com<br />
2404:6800:4001::1c v5.lscache5.c.youtube.com<br />
2404:6800:4001::1c v5.lscache6.c.youtube.com<br />
2404:6800:4001::1c v5.lscache7.c.youtube.com<br />
2404:6800:4001::1c v5.lscache8.c.youtube.com<br />
2404:6800:4001::1f v6.lscache1.c.youtube.com<br />
2404:6800:4001::1f v6.lscache2.c.youtube.com<br />
2404:6800:4001::1f v6.lscache3.c.youtube.com<br />
2404:6800:4001::1f v6.lscache4.c.youtube.com<br />
2404:6800:4001::1f v6.lscache5.c.youtube.com<br />
2404:6800:4001::1f v6.lscache6.c.youtube.com<br />
2404:6800:4001::1f v6.lscache7.c.youtube.com<br />
2404:6800:4001:1::1f v6.lscache8.c.youtube.com<br />
2404:6800:4001::22 v7.lscache1.c.youtube.com<br />
2404:6800:4001::22 v7.lscache2.c.youtube.com<br />
2404:6800:4001::22 v7.lscache3.c.youtube.com<br />
2404:6800:4001:1::22 v7.lscache4.c.youtube.com<br />
2404:6800:4001::22 v7.lscache5.c.youtube.com<br />
2404:6800:4001:1::22 v7.lscache6.c.youtube.com<br />
2404:6800:4001::22 v7.lscache7.c.youtube.com<br />
2404:6800:4001::22 v7.lscache8.c.youtube.com<br />
2404:6800:4001::25 v8.lscache1.c.youtube.com<br />
2404:6800:4001::25 v8.lscache2.c.youtube.com<br />
2404:6800:4001:1::25 v8.lscache3.c.youtube.com<br />
2404:6800:4001::25 v8.lscache4.c.youtube.com<br />
2404:6800:4001:1::25 v8.lscache5.c.youtube.com<br />
2404:6800:4001::25 v8.lscache6.c.youtube.com<br />
2404:6800:4001::25 v8.lscache7.c.youtube.com<br />
2404:6800:4001:1::25 v8.lscache8.c.youtube.com<br />
2404:6800:4001::11 v9.lscache1.c.youtube.com<br />
2404:6800:4001::11 v9.lscache2.c.youtube.com<br />
2404:6800:4001::11 v9.lscache3.c.youtube.com<br />
2404:6800:4001:1::11 v9.lscache4.c.youtube.com<br />
2404:6800:4001:1::11 v9.lscache5.c.youtube.com<br />
2404:6800:4001::11 v9.lscache6.c.youtube.com<br />
2404:6800:4001::11 v9.lscache7.c.youtube.com<br />
2404:6800:4001::11 v9.lscache8.c.youtube.com<br />
2404:6800:4001::14 v10.lscache1.c.youtube.com<br />
2404:6800:4001::14 v10.lscache2.c.youtube.com<br />
2404:6800:4001::14 v10.lscache3.c.youtube.com<br />
2404:6800:4001::14 v10.lscache4.c.youtube.com<br />
2404:6800:4001::14 v10.lscache5.c.youtube.com<br />
2404:6800:4001::14 v10.lscache6.c.youtube.com<br />
2404:6800:4001:1::14 v10.lscache7.c.youtube.com<br />
2404:6800:4001::14 v10.lscache8.c.youtube.com<br />
2404:6800:4001::17 v11.lscache1.c.youtube.com<br />
2404:6800:4001::17 v11.lscache2.c.youtube.com<br />
2404:6800:4001::17 v11.lscache3.c.youtube.com<br />
2404:6800:4001::17 v11.lscache4.c.youtube.com<br />
2404:6800:4001::17 v11.lscache5.c.youtube.com<br />
2404:6800:4001::17 v11.lscache6.c.youtube.com<br />
2404:6800:4001::17 v11.lscache7.c.youtube.com<br />
2404:6800:4001::17 v11.lscache8.c.youtube.com<br />
2404:6800:4001::1a v12.lscache1.c.youtube.com<br />
2404:6800:4001:1::1a v12.lscache2.c.youtube.com<br />
2404:6800:4001::1a v12.lscache3.c.youtube.com<br />
2404:6800:4001::1a v12.lscache4.c.youtube.com<br />
2404:6800:4001::1a v12.lscache5.c.youtube.com<br />
2404:6800:4001::1a v12.lscache6.c.youtube.com<br />
2404:6800:4001::1a v12.lscache7.c.youtube.com<br />
2404:6800:4001::1a v12.lscache8.c.youtube.com<br />
2404:6800:4001::1d v13.lscache1.c.youtube.com<br />
2404:6800:4001::1d v13.lscache2.c.youtube.com<br />
2404:6800:4001::1d v13.lscache3.c.youtube.com<br />
2404:6800:4001::1d v13.lscache4.c.youtube.com<br />
2404:6800:4001:1::1d v13.lscache5.c.youtube.com<br />
2404:6800:4001::1d v13.lscache6.c.youtube.com<br />
2404:6800:4001::1d v13.lscache7.c.youtube.com<br />
2404:6800:4001::1d v13.lscache8.c.youtube.com<br />
2404:6800:4001::20 v14.lscache1.c.youtube.com<br />
2404:6800:4001::20 v14.lscache2.c.youtube.com<br />
2404:6800:4001::20 v14.lscache3.c.youtube.com<br />
2404:6800:4001::20 v14.lscache4.c.youtube.com<br />
2404:6800:4001::20 v14.lscache5.c.youtube.com<br />
2404:6800:4001::20 v14.lscache6.c.youtube.com<br />
2404:6800:4001::20 v14.lscache7.c.youtube.com<br />
2404:6800:4001:1::20 v14.lscache8.c.youtube.com<br />
2404:6800:4001::23 v15.lscache1.c.youtube.com<br />
2404:6800:4001::23 v15.lscache2.c.youtube.com<br />
2404:6800:4001::23 v15.lscache3.c.youtube.com<br />
2404:6800:4001:1::23 v15.lscache4.c.youtube.com<br />
2404:6800:4001::23 v15.lscache5.c.youtube.com<br />
2404:6800:4001:1::23 v15.lscache6.c.youtube.com<br />
2404:6800:4001::23 v15.lscache7.c.youtube.com<br />
2404:6800:4001::23 v15.lscache8.c.youtube.com<br />
2404:6800:4001::26 v16.lscache1.c.youtube.com<br />
2404:6800:4001::26 v16.lscache2.c.youtube.com<br />
2404:6800:4001:1::26 v16.lscache3.c.youtube.com<br />
2404:6800:4001::26 v16.lscache4.c.youtube.com<br />
2404:6800:4001::26 v16.lscache5.c.youtube.com<br />
2404:6800:4001::26 v16.lscache6.c.youtube.com<br />
2404:6800:4001::26 v16.lscache7.c.youtube.com<br />
2404:6800:4001::26 v16.lscache8.c.youtube.com<br />
2404:6800:4001::12 v17.lscache1.c.youtube.com<br />
2404:6800:4001::12 v17.lscache2.c.youtube.com<br />
2404:6800:4001::12 v17.lscache3.c.youtube.com<br />
2404:6800:4001::12 v17.lscache4.c.youtube.com<br />
2404:6800:4001::12 v17.lscache5.c.youtube.com<br />
2404:6800:4001::12 v17.lscache6.c.youtube.com<br />
2404:6800:4001::12 v17.lscache7.c.youtube.com<br />
2404:6800:4001::12 v17.lscache8.c.youtube.com<br />
2404:6800:4001:1::15 v18.lscache1.c.youtube.com<br />
2404:6800:4001:1::15 v18.lscache2.c.youtube.com<br />
2404:6800:4001::15 v18.lscache3.c.youtube.com<br />
2404:6800:4001::15 v18.lscache4.c.youtube.com<br />
2404:6800:4001::15 v18.lscache5.c.youtube.com<br />
2404:6800:4001::15 v18.lscache6.c.youtube.com<br />
2404:6800:4001:1::15 v18.lscache7.c.youtube.com<br />
2404:6800:4001::15 v18.lscache8.c.youtube.com<br />
2404:6800:4001:1::18 v19.lscache1.c.youtube.com<br />
2404:6800:4001::18 v19.lscache2.c.youtube.com<br />
2404:6800:4001:1::18 v19.lscache3.c.youtube.com<br />
2404:6800:4001:1::18 v19.lscache4.c.youtube.com<br />
2404:6800:4001::18 v19.lscache5.c.youtube.com<br />
2404:6800:4001::18 v19.lscache6.c.youtube.com<br />
2404:6800:4001::18 v19.lscache7.c.youtube.com<br />
2404:6800:4001::18 v19.lscache8.c.youtube.com<br />
2404:6800:4001::1b v20.lscache1.c.youtube.com<br />
2404:6800:4001::1b v20.lscache2.c.youtube.com<br />
2404:6800:4001::1b v20.lscache3.c.youtube.com<br />
2404:6800:4001::1b v20.lscache4.c.youtube.com<br />
2404:6800:4001:1::1b v20.lscache5.c.youtube.com<br />
2404:6800:4001::1b v20.lscache6.c.youtube.com<br />
2404:6800:4001::1b v20.lscache7.c.youtube.com<br />
2404:6800:4001::1b v20.lscache8.c.youtube.com<br />
2404:6800:4001::1e v21.lscache1.c.youtube.com<br />
2404:6800:4001::1e v21.lscache2.c.youtube.com<br />
2404:6800:4001:1::1e v21.lscache3.c.youtube.com<br />
2404:6800:4001::1e v21.lscache4.c.youtube.com<br />
2404:6800:4001::1e v21.lscache5.c.youtube.com<br />
2404:6800:4001:1::1e v21.lscache6.c.youtube.com<br />
2404:6800:4001::1e v21.lscache7.c.youtube.com<br />
2404:6800:4001::1e v21.lscache8.c.youtube.com<br />
2404:6800:4001::21 v22.lscache1.c.youtube.com<br />
2404:6800:4001::21 v22.lscache2.c.youtube.com<br />
2404:6800:4001::21 v22.lscache3.c.youtube.com<br />
2404:6800:4001::21 v22.lscache4.c.youtube.com<br />
2404:6800:4001:1::21 v22.lscache5.c.youtube.com<br />
2404:6800:4001::21 v22.lscache6.c.youtube.com<br />
2404:6800:4001::21 v22.lscache7.c.youtube.com<br />
2404:6800:4001::21 v22.lscache8.c.youtube.com<br />
2404:6800:4001:1::24 v23.lscache1.c.youtube.com<br />
2404:6800:4001::24 v23.lscache2.c.youtube.com<br />
2404:6800:4001::24 v23.lscache3.c.youtube.com<br />
2404:6800:4001::24 v23.lscache4.c.youtube.com<br />
2404:6800:4001::24 v23.lscache5.c.youtube.com<br />
2404:6800:4001::24 v23.lscache6.c.youtube.com<br />
2404:6800:4001::24 v23.lscache7.c.youtube.com<br />
2404:6800:4001::24 v23.lscache8.c.youtube.com<br />
2404:6800:4001::27 v24.lscache1.c.youtube.com<br />
2404:6800:4001::27 v24.lscache2.c.youtube.com<br />
2404:6800:4001::27 v24.lscache3.c.youtube.com<br />
2404:6800:4001::27 v24.lscache4.c.youtube.com<br />
2404:6800:4001:1::27 v24.lscache5.c.youtube.com<br />
2404:6800:4001::27 v24.lscache6.c.youtube.com<br />
2404:6800:4001::27 v24.lscache7.c.youtube.com<br />
2404:6800:4001:1::27 v24.lscache8.c.youtube.com</p>
<div><span style="font-size: x-small;"><br />
</span> </div>
<p><span style="font-size: x-small;">#Android           Google手机操作系统 </span></p>
<div>2404:6800:8005::62 www.android.com</div>
<div>2404:6800:8005::62 android.com</div>
<p> </p>
<p><span style="font-size: x-small;">2404:6800:8003::79 developer.android.com</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 source.android.com<br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#The Go Programming Language   Go 编程语言</span></p>
<div><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">golang.org</span></div>
<p> </p>
<div><span style="font-size: x-small;">2404:6800:8005::62 www.</span><span style="font-size: x-small;">golang.org</span></div>
<p><span style="font-size: x-small;">2404:6800:8003::79 blog.golang.org<br />
</span> </p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Analytics         分析（Google所提供的网站流量统计服务） </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::61 www.google-analytics.com </span></span></p>
<p><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::61 *.google-analytics.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::61 ssl.google-analytics.com </span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#DoubleClick       曾经世界最大的网络广告服务商，06年底被Google并购，现AdSense服务指向域名</span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2001:4860:b006::94</span></span><span style="color: #ff0000;"> ad.doubleclick.net</span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2001:4860:b006::95</span></span><span style="color: #ff0000;"> ad-g.doubleclick.net </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2001:4860:b006::95</span></span> <span style="font-size: x-small;"><span style="color: #ff0000;">ad-apac.doubleclick.net</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::9a googleads.g.doubleclick.net </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::9b </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">feedads.g.doubleclick.net</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::90 </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">fls.uk.doubleclick.net</span></span></p>
<p><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::8e *.au.doubleclick.net</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::8f *.de.doubleclick.net</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::90 </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">*.uk.doubleclick.net</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::90 </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">*.fr.doubleclick.net</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::92 *</span></span><span style="font-size: x-small;"><span style="color: #ff0000;">.jp.doubleclick.net</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#FeedBurner</span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>feedburner.google.com<br />
</span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">#2404:6800:8005::62 </span>www3-china.l.google.com<br />
</span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 www.feedburner.com</span><br />
</span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">2404:6800:8005::62 </span>feeds.feedburner.com<br />
</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 <span style="font-size: x-small;">feeds2.feedburner.com</span></span></p>
<div><span style="color: #ff0000;"><span style="font-size: x-small;">2404:6800:8005::76 feedproxy.google.com               #Feed 跳转代理</span></span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#GoogleSyndication Google广告服务 AdWord(Google广告词，对关键字进行右侧付费推广)，原AdSense服务指向域名</span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 www.googlesyndication.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 pagead2.googlesyndication.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 buttons.googlesyndication.com </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 domains.googlesyndication.com </span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::98 tpc.googlesyndication.com</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#GoogleSyndication Google广告服务 AdWord</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::70 </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">adwords.google.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::41 adwords.google.sk</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#GoogleADServices  Google广告服务 AdSense </span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::60</span></span><span style="color: #ff0000;"> www.googleadservices.com </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::a4 pagead2.googleadservices.com </span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::a7 </span></span><span style="font-size: x-small;"><span style="color: #ff0000;">partner.googleadservices.com</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#<span style="font-size: x-small;">Panoramio</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2001:4860:8010::8d www.panoramio.com</span><br />
</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;"><span style="color: #ff0000;"><span style="font-size: x-small;">#2001:4860:8010::8d </span></span>appspot.l.google.com<br />
</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #000000;"><span style="font-size: x-small;">2001:4860:8010::8d </span>static.panoramio.com</span><br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Keyhole           地理查询软件</span></p>
<p><span style="font-size: x-small;"><span style="text-decoration: line-through;">#2404:6800:8005::62 www.keyhole.com</span></span></p>
<p><span style="font-size: x-small;"><span style="text-decoration: line-through;">#2404:6800:8005::62 geo.keyhole.com</span></span></p>
<p><span style="font-size: x-small;"><span style="text-decoration: line-through;">#2404:6800:8005::62 dev.keyhole.com</span></span></p>
<p><span style="font-size: x-small;"><span style="text-decoration: line-through;">#2404:6800:8005::62 auth.keyhole.com</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#</span> </p>
<p><span style="font-size: x-small;">2404:6800:8005::62 pagead.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">pagead.l.google.com<br />
</span><span style="font-size: x-small;">2404:6800:8005::62 </span><span style="font-size: x-small;">pagead2.google.com </span></p>
<p><span style="font-size: small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Goo.gl            Google短网址服务 </span></p>
<p><span style="font-size: x-small;">2404:6800:8005::62 goo.gl </span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Urchin            <span style="font-size: x-small;">http://www.google.com/urchin/zh-CN/index.html</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #ff0000;">2404:6800:8005::b8 service.urchin.com</span></span></p>
<p><span style="font-size: x-small;"><span style="color: #000000;">#Google.org        Google 公益</span></span></p>
<div><span style="color: #000000;">2404:6800:8003::79 blog.google.org</span></div>
<p> </p>
<p>#html5rocks        HTML5 推广专题网站</p>
<div>2404:6800:8003::79 www.html5rocks.com</div>
<div>2404:6800:8003::79 slides.html5rocks.com</div>
<div>2404:6800:8003::79 playground.html5rocks.com</div>
<p> </p>
<hr /> </p>
<h1><a id="_IPV6_8838394647464156_8407000-p" name="_IPV6_8838394647464156_8407000"></a><span style="font-size: x-small;">#</span>##IPV6代理翻墙</h1>
<p><span style="font-size: x-small;">##来源;</span><span style="font-size: x-small;">http://docs.google.com/ViewDoc?docid=0AahDRK_oy3_TZGdqeHN4d3NfMTQ4ZnZwejZ3ZGc</span></p>
<p><span style="font-size: x-small;">##</span><a id="g.do-p" title="http://aa.cx/ipv6-reverse-proxy" href="http://aa.cx/ipv6-reverse-proxy"><span style="font-size: x-small;">http://aa.cx/ipv6-reverse-proxy</span></a></p>
<hr /> </p>
<hr />
<h1><a id="_IPv6_3997388407588005_9396656-p" name="_IPv6_3997388407588005_9396656"></a><span style="font-size: x-small;">#</span><strong><span style="font-size: large;">##其他IPv6网站</span></strong></h1>
<p> </p>
<hr /> </p>
<p><span style="font-size: x-small;">##People Republic of China                             <img src="https://docs.google.com/File?id=dfkdmxnt_85c2d7b3d4_b" alt="" /><strong>中华人民共和国</strong></span></p>
<p><span style="font-size: x-small;">#</span></p>
<p><span style="font-size: x-small;">2001:252:0:2::2000 6rank.edu.cn                        #CNGI高校驻地网IPv6用户数量测试</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#kenengba.com                                          可能吧</span></p>
<p><span style="font-size: x-small;"><span style="color: #ff6600;"><strong>2001:470:1f04:8c1::2 www.kenengba.com           #可能吧</strong></span><br />
</span></p>
<p><span style="font-size: x-small;"><br />
#IPv6 Forum<br />
2001:a18:1:20::42 www.ipv6forum.com<br />
</span> </p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#<span style="color: #333333;">LAMOST                                                <span style="color: #000000;">大天区面积多目标光纤光谱天文望远镜</span></span></span></p>
<p><span style="font-size: x-small;">2001:cc0:202c:99:225:b3ff:fe82:7b35<br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;"><span>#China Academy of Telecommunication Research of MIIT   工业和信息化部</span><span>电信研究院</span></span></p>
<p><span style="font-size: x-small;"><span>2001:cc0:2426:101::2f www.catr.cn                      #泰尔网</span></span></p>
<p><span style="font-size: x-small;"><span>2001:cc0:2426:101::2f </span><span>main.catr.cn                     #</span><span>工业和信息化部</span><span>电信研究院主页</span></span></p>
<p><span style="font-size: x-small;"><span>2001:cc0:2426:101::2f navigator6.catr.cn               #</span><span>CNGI中主要资源链接导航</span></span></p>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;"><span>#CERNET 2                                              第二代中国教育与科研计算机网</span></span></p>
<p><span style="font-size: x-small;"><span>2001:da8:1:100::80 www.cernet2.edu.cn                  #主页</span></span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;"><span>#Tsinghua University                                   清华大学</span></span></p>
<p><span style="font-size: x-small;"><span>2001:da8:200:200::4:100 www.tsinghua.edu.cn            #清华大学主页</span></span></p>
<div><span style="color: #362b36;"><span style="font-size: x-small;">2001:da8:217:1::222 iptv.tsinghua.edu.cn</span></span></div>
<p> </p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#北京大学</span></p>
<p><span style="font-size: x-small;">2001:da8:201:1129:162:105:129:14 search.pku.edu.cn     #北京大学天网中英文搜索引擎</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#Shooter                                               射手网</span></div>
<div><span style="font-size: x-small;">2001:da8:205::6 shooter.cn</span></div>
<div><span style="font-size: x-small;">2001:da8:205::6 edu.shooter.cn</span></div>
<div><span style="font-size: x-small;">2001:da8:205::6 edufile0.shooter.cn</span></div>
<p><span style="font-size: x-small;"><br />
</span> </p>
<p><span style="font-size: x-small;">#Beijing Normal University                             北京师范大学</span></p>
<p><span style="font-size: x-small;">2001:da8:207:3:21a:64ff:fe6d:d1eb ipv6.bnu.edu.cn      #北京师范大学IPv6实验站</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#University of Science and Technology Beijing          北京科技大学</span></p>
<p><span style="font-size: x-small;">2001:da8:208:10::14 ipv6.ustb.edu.cn                   #北京科技大学IPv6实验站</span></p>
<p><span style="font-size: x-small;">2001:da8:208:10::19 www.ustb.edu.cn                    #北京科技大学主页</span></p>
<p><span style="font-size: x-small;">2001:da8:208:10::19 2009.ustb.edu.cn                   #北京科技大学新版首页</span></p>
<p><span style="font-size: x-small;">2001:da8:208:10::19 alumni.ustb.edu.cn                 #北京科技大学校友网</span></p>
<p><span style="font-size: x-small;">2001:da8:208:10::19 gonghui.ustb.edu.cn                #北京科技大学工会</span></p>
<p><span style="font-size: x-small;">2001:da8:208:10::19 student.ustb.edu.cn                #北京科技大学学子在线</span></p>
<p><span style="font-size: x-small;">2001:da8:208:10::19 graduate.ustb.edu.cn               #北京科技大学研究生院</span></p>
<p><span style="font-size: x-small;">2001:da8:208:10::19 ltx.ustb.edu.cn                    #北京科技大学离退休老干部处</span></p>
<p><span style="font-size: x-small;">2001:da8:208:10::19 bbs.ustb.edu.cn                    #幻想空间BBS</span></p>
<p><span style="font-size: x-small;">2001:da8:208:100::121 www.52v6.com                     #52v6 我爱威六 USTB</span></p>
<p><span style="font-size: x-small;">2001:da8:208:100::122 tracker.52v6.com                 #52v6 PT flicker</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#北京邮电大学</span></p>
<div><span style="font-size: x-small;"><span style="font-family: SimSun, 宋体, 'MS Song', serif;">2001:da8:215:4010:250:56ff:fe87:61ec </span><span style="font-family: SimSun, 宋体, 'MS Song', serif;">iptv.bupt.edu.cn</span></span></div>
<div><span style="font-size: x-small;"><span style="font-family: SimSun, 宋体, 'MS Song', serif;">2001:da8:215:4030:7412:52d:60a0:2927 </span><span style="font-family: SimSun, 宋体, 'MS Song', serif;">officetv.bupt.edu.cn</span></span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#University of Jinan                                   济南大学</span></p>
<p><span style="font-size: x-small;">2001:da8:7005:1::1 www.ujn.edu.cn                      #<br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Shanghai Jiao Tong University                         上海交通大学</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:1::80 ipv6.sjtu.edu.cn                   #上海交通大学IPv6实验站</span></p>
<p><span style="font-size: x-small;">2001:da8:a4:ff::84 video6.sjtu.edu.cn<br />
</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:1::81 www.sjtu.edu.cn                    #上海交通大学主页</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:1::82 alumni.sjtu.edu.cn                 #上海交通大学校友网</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:1::83 shipmuseum.sjtu.edu.cn             #船舶数字博物馆</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:1::84 net.sjtu.edu.cn                    #上海交通大学网络中心</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:1::85 icae.sjtu.edu.cn                   #</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:1::86 foundation.sjtu.edu.cn             #上海交通大学教育发展基金会</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:1::87 wlan.sjtu.edu.cn                   #上海交通大学网络中心无线网首页</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:1::88 ed.sjtu.edu.cn                     #上海交通大学 高等教育研究院</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:1::89 smd.sjtu.edu.cn                    #</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:5::239 search.sjtu.edu.cn                #</span></p>
<p><span style="font-size: x-small;">2001:da8:8000:6003::161 bbs.sjtu.edu.cn                #饮水思源BBS站</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Northeastern University                               东北大学</span></p>
<p><span style="font-size: x-small;">2001:da8:9000::232 bt.neu.edu.cn                       #六维空间</span></p>
<p><span style="font-size: x-small;">2001:da8:9000:a191:20d:60ff:fe1b:7514 ftp.ngi.neu.edu.cn #NEU NGI FTP Server</span></p>
<p><span style="font-size: x-small;">2001:da8:9000:b255:210:5cff:fef5:ac49 www.neu.edu.cn     #主页</span></p>
<p><span style="font-size: x-small;">2001:da8:9000:b255:223:aeff:fe71:efcb radio.neu.edu.cn   #东北大学在线电台</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Tongji University                                     同济大学</span></p>
<p><span style="font-size: x-small;">2001:da8:b8:190::12 mail.tongji.edu.cn                 #同济大学电子邮件系统<br />
</span></p>
<p><span style="font-size: x-small;">2001:da8:b8:205::2 www.tongji.edu.cn                   #同济大学主页<br />
</span></p>
<p><span style="font-size: x-small;">2001:da8:b8:205::3 news.tongji.edu.cn                  #同济大学新闻网<br />
</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#University of Science and Technology of China         中国科学技术大学</span></p>
<p><span style="font-size: x-small;">2001:da8:d800::2 www.ustc.edu.cn                       #中国科学技术大学主页</span></p>
<p><span style="font-size: x-small;">2001:da8:d800::3 bbs.ustc.edu.cn                       #瀚海星云BBS站</span></p>
<div><span style="font-size: x-small;">2001:da8:d800::88 tv6.ustc.edu.cn                      #</span></div>
<p> </p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Zhe Jiang University                                  浙江大学</span></p>
<p><span style="font-size: x-small;">2001:da8:e000:88::11 www.zju.edu.cn                    #浙江大学主页</span></p>
<p><span style="font-size: x-small;">2001:da8:e000:89::99 media.zju.edu.cn                  #浙江大学校网中心&#8211;多媒体中心</span></p>
<p><span style="font-size: x-small;">2001:da8:e000:92::29 ipv6.zju.edu.cn                   #浙江大学IPV6试验网</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<p><span style="font-size: x-small;">#Zhe Jiang University of Technology                    浙江工业大学</span></p>
<p><span style="font-size: x-small;">2001:da8:e000:88::11 www.zjut.edu.cn                   #浙江工业大学首页</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<div>
<div><span style="font-size: x-small;">#Nanjing Normal University                             南京师范大学</span></div>
<div><span style="font-size: x-small;">2001:da8:1003:1::10 www.njnu.edu.cn                    #南京师范大学主页</span></div>
<div><span style="font-size: x-small;">2001:da8:1003:1:20b:dbff:fead:4c60 www.innu.cn         #南京师范大学网络协会</span></div>
<div><span style="font-size: x-small;">2001:da8:1003:1:20b:dbff:fead:4c60 bbs.njnu.edu.cn     #扬帆 &#8211; 南京师范大学|校园论坛</span></div>
<div><span style="font-size: x-small;">2001:da8:1003:1:20b:dbff:fead:4c60 v6.innu.cn          #扬帆 &#8211; 南京师范大学|校园论坛</span></div>
<div><span style="font-size: x-small;">2001:da8:1003:1:20b:dbff:fead:4c60 download.innu.cn    #</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#Dalian University of Technology                       大连理工大学</span></div>
<div><span style="font-size: x-small;">2001:da8:a800:0:2d0:b7ff:feb8:4557 ipv6.dlut.edu.cn    #大连理工大学 IPv6 网站</span></div>
<div><span style="font-size: x-small;">2001:da8:a800:3::5 bbs.dlut.edu.cn                     #BBS 碧海青天</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#GuangDong Polytechnic Normal University               广东技术师范学院</span></div>
<div><span style="font-size: x-small;">2001:da8:2006::2 ipv6.gdin.edu.cn                      #广东技术师范学院IPv6实验网</span></div>
<div><span style="font-size: x-small;">2001:da8:2006::6 tv1.gdin.edu.cn</span></div>
</div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#IPv6home                                              IPv6之家</span></div>
<div><span style="font-size: x-small;">240c:f::ffff:0:0:0:155 ipv6.ipv6home.cn                #论坛</span></div>
<p><span style="text-decoration: underline;"><span style="font-size: small;"><br />
</span><br />
</span></p>
<div><span style="font-size: x-small;">##Hong Kong                                            <img src="https://docs.google.com/File?id=dfkdmxnt_84c9ss8jfp_b" alt="" /></span><strong><span style="font-size: x-small;">香港</span></strong></div>
<div><span style="font-size: x-small;">#The Chinese University of Hong Kon</span><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">g                   </span></span><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">香港中文大学</span></span></div>
<div><span style="font-size: x-small;">2405:3000:3:c02:137:189:192:35 www.ipv6.cuhk.net       #CUHK IPv6 Homepage</span></div>
<div><span style="font-size: x-small;">#City University of Hong Kong                          香港城市大学</span></div>
<div><span style="font-size: x-small;">2001:ce0:5:1:206:5bff:fe1d:64cf www.ipv6.cityu.edu.hk  #CSC home page</span></div>
<p>##Republic of China                                    <img src="https://docs.google.com/File?id=dfkdmxnt_90dj7nvmd3_b" alt="" /><strong>中华民国</strong></p>
<div><span style="font-size: x-small;">#National Central University                           國立中央大學</span></div>
<div><span style="font-size: x-small;">2001:288:3001:17:21a:64ff:fec6:853c                    #歡迎光臨中央大學</span></div>
<div>#Education Network Center of Taichung Country          台中县教育网络<br />
2001:288:5400::11 www.tcc.edu.tw                       #台中縣教育網路中心</div>
<div>#National Ilan University                              國立宜蘭大學</div>
<p>2001:288:a001:805:21c:c4ff:fec2:9cca www.niu.edu.tw    #</p>
<div>
<div><span style="font-size: x-small;">#HiNet</span></div>
<div><span style="font-size: x-small;">2001:b000::2 www.ipv6.hinet.net                        HiNet IPv6服務<br />
</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#<span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">National Chi Nan Universit</span></span><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">y                           </span></span><span style="font-family: SimSun, 宋体, 'MS Song', serif;"><span style="font-size: x-small;">國立暨南國際大學</span></span></span></div>
<div><span style="font-size: x-small;">2001:e10:6840:12::52 ftp.ncnu.edu.tw</span><span style="font-size: x-small;">                   #</span><span style="font-size: x-small;">國立暨南國際大學檔案伺服器</span></div>
<div><span style="font-size: x-small;">2001:e10:6840:67:b9b3:1928:3bd2:cd7 www.ncnu.edu.tw    #國立暨南國際大學-首頁<br />
</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#APOL asia pacific online service                      APOL亞太線上</span></div>
<p><span style="font-size: x-small;">2404::2 www.apol.com.tw                                #<span style="font-size: x-small;">IPv6首頁</span></span></p>
<div><span style="font-size: x-small;"><br />
</span></div>
<div><span style="font-size: x-small;">##America                                              <img src="https://docs.google.com/File?id=dfkdmxnt_96f3pfjhhd_b" alt="" /><strong>美国</strong></span></div>
<div><span style="font-size: x-small;">#AnimeNfo.Com</span></div>
<div><span style="font-size: x-small;">2001:470:1c:229::2 animenfo.com<br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2001:470:1c:229::2 www.</span>animenfo.com<br />
</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#.天空</span></div>
<div><span style="font-size: x-small;">2001:470:1f04:836::2 tix.io                            #主页<br />
</span></div>
<p><span style="font-size: x-small;">2001:470:1f04:836::2 </span>blog.tix.io<span style="font-size: x-small;">                       #Bolg</span><br />
<span style="font-size: x-small;"><strong><br />
</strong></span></p>
<div><span style="font-size: x-small;">#What is my IP?<br />
</span></div>
<p>2001:470:8051:1:80::1 <span style="font-size: x-small;">whatismyip.tv                    #主页</span></p>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#Free IPv6 Live Streaming TV</span></div>
<div><span style="font-size: x-small;">2001:470:f057::7 www.freeipv6.info<br />
</span></div>
<p>#Lucien@Lost</p>
<div>2001:470:1f06:794::2 www.lostriver.net</div>
<p> </p>
<div><span style="font-size: x-small;">#Microsoft                                             微软</span></div>
<div><span style="font-size: x-small;">2002:836b:9820::836b:9886 </span><span style="font-size: x-small;">www.</span><span style="color: #000000;"><span style="font-size: x-small;"><span>ipv6</span></span></span><span style="font-size: x-small;">.microsoft.com       #IPv6主页</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#WikiMedia                                             维基媒体</span></div>
<div><span style="font-size: x-small;">2620:0:860:2:21d:9ff:fe33:f235 static.wikipedia.org    #Wikipedia Static HTML Dumps</span></div>
<div><span style="font-size: x-small;">2620:0:860:2:21d:9ff:fe33:f235 hume.wikimedia.org      #Wikipedia Static HTML Dumps</span></div>
<div><span style="font-size: x-small;">2620:0:860:2:230:48ff:fe5a:eb1e download.wikimedia.org #Wikimedia Downloads</span></div>
<div><span style="font-size: x-small;">2620:0:860:2:230:48ff:fe5a:eb1e download.wikipedia.org #Wikimedia Downloads</span></div>
<div><span style="font-size: x-small;">2620:0:860:2:230:48ff:fe5a:eb1e dumps.wikimedia.org    #Wikimedia Downloads</span></div>
<div><span style="font-size: x-small;">2620:0:860:2:230:48ff:fe5a:eb1e storage2.wikimedia.org #Wikimedia Downloads</span></div>
<div><span style="font-size: x-small;">2620:0:862:1::25:1 lists.wikimedia.org                 #</span></div>
<div><span style="font-size: x-small;">2620:0:862:1:209:3dff:fe10:d5d2 svn.wikimedia.org      #Wikimedia Subversion</span></div>
<div><span style="font-size: x-small;">2620:0:862:1:209:3dff:fe10:d5d2 mayflower.esams.wikimedia.org</span></div>
<div><span style="font-size: x-small;">2620:0:862:1:6666:6666:6666:6666 ipv6and4.labs.wikimedia.org #Wikimedia IPv6 AAAA record testing</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;"><strong>#Facebook                                       脸谱网（尚未完全部署）</strong></span></div>
<div><span style="font-size: x-small;"><strong><span style="color: #ff9900;">2620:0:1cfe:face:b00c::3 www.v6.facebook.com    #Facebook</span></strong><span style="font-size: x-small;"><strong><span style="color: #ff9900;">（官方指定主机名）</span></strong></span></span></div>
<div><span style="font-size: x-small;"><span style="color: #333333;"><span style="color: #362b36;">2620:0:1cfe:face:b00c::3 apps.facebook.com</span>             #网页应用</span><br />
</span></div>
<div><span style="font-size: x-small;"><strong><span style="color: #ff9900;">2620:0:1cfe:face:b00c::4 login.v6.facebook.com  #登陆</span></strong><span style="font-size: x-small;"><strong><span style="color: #ff9900;">（官方指定主机名）</span></strong></span></span></div>
<div><span style="font-size: x-small;">#2620:0:1cfe:face:b00c::3 www.facebook.com<span style="font-size: x-small;">             #Facebook<span style="font-size: x-small;">（非官方指定但可用，不推荐）</span></span></span></div>
<div><span style="font-size: x-small;">#2620:0:1cfe:face:b00c::3 facebook.com<span style="font-size: x-small;">                 #Facebook<span style="font-size: x-small;">（非官方指定但<span style="font-size: x-small;">可用，不推荐</span>）</span></span></span></div>
<div><span style="font-size: x-small;">#2620:0:1cfe:face:b00c::4 login.facebook.com           #登陆<span style="font-size: x-small;">（非官方指定但<span style="font-size: x-small;">可用，不推荐，会有证书警告</span>）</span></span></div>
<div><span style="font-size: x-small;"><span style="color: #333333;">2620:0:1cfe:face:b00c::7  m.v6.facebook.com            #移动版</span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="color: #333333;"><span style="font-family: SimSun, 宋体, 'MS Song', serif;">2610:d0:face::9 www.lisp6.facebook.com</span></span></span></div>
<div><span style="font-size: x-small;"><span style="color: #333333;"><span style="font-family: SimSun, 宋体, 'MS Song', serif;">2610:d0:face::9 m.lisp6.facebook.com</span></span></span></div>
<div><span style="font-size: x-small;">#Facebook CDN</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><strong><span style="color: #ff9900;">2620:0:1cfe:face:b00c::3</span></strong></span><strong><span style="color: #ff9900;"> static.ak.fbcdn.net    #网站资源（图像、脚本等）</span></strong><span style="text-decoration: line-through;">新机制尚未部署至 ipv6</span><br />
</span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"><strong><span style="color: #ff9900;">2620:0:1cfe:face:b00c::4</span></strong></span><span style="color: #ff9900;"><strong> s-static.ak.facebook.com</strong> <strong>#https 连接用</strong></span></span><span style="font-size: x-small;"><strong><span style="color: #ff9900;">网站资源</span></strong></span></div>
</div>
<div>
<div><span style="font-size: x-small;">#140.174.24.192 profile.ak.fbcdn.net                   #用户资源（头像等）</span><span style="font-size: x-small;">，暂无 ipv6 入口</span></div>
<p><span style="font-size: x-small;">#194.209.253.57 creative.ak.fbcdn.net<span style="font-size: x-small;">                  #活动</span><span style="font-size: x-small;">资源<span style="font-size: x-small;">，暂无 ipv6 入口</span></span></span></p>
<p><span style="font-size: x-small;"><span style="font-size: x-small;">#88.221.84.18 static.ak.fbcdn.net                      #网站资源（图像、脚本等）<span style="text-decoration: line-through;">，新机制暂无 ipv6 入口</span></span><br />
</span><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">##France                                               <img src="https://docs.google.com/File?id=dfkdmxnt_89hjxcjwg6_b" alt="" /><strong>法国</strong></span></div>
<div><span style="font-size: x-small;">#alwaysData                                           </span></div>
<div><span style="font-size: x-small;">2001:41d0:1:8f78::1 www.alwaysdata.com                 #主页</span></div>
<div><span style="font-size: x-small;">2001:41d0:2:4139::1 fanfou.alwaysdata.net              #饭否</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">##the Federal Republic of Germany                      <img src="https://docs.google.com/File?id=dfkdmxnt_93cr7sbccg_b" alt="" /><strong>德国</strong></span></div>
<div><span style="font-size: x-small;">2001:638:902:1::11 6bone.informatik.uni-leipzig.de     #IPv6 technology center Leipzig</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">##Norway                                               <img src="https://docs.google.com/File?id=dfkdmxnt_91dpcjz7dc_b" alt="" /><strong>挪威</strong></span></div>
<div><span style="font-size: x-small;">#Opera</span></div>
<div><span style="font-size: x-small;">2001:840:4073:1::1:100 www.opera.com                   #主页</span></div>
<div><span style="font-size: x-small;">2001:840:4073:1::1:101 www.opera.com                   #主页</span></div>
<div><span style="font-size: x-small;">2001:840:4073:1::1:102 www.opera.com                   #主页</span></div>
<div><span style="font-size: x-small;">2001:840:4073:1::1:103 www.opera.com                   #主页</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">##Sweden                                               <img src="https://docs.google.com/File?id=dfkdmxnt_92gwqzcxhk_b" alt="" /><strong>瑞典</strong></span></div>
<div><span style="font-size: x-small;">#</span><span style="color: #000000;"><span style="font-size: x-small;">IPv6.org</span></span></div>
<div><span style="font-size: x-small;">2001:6b0:1:ea:202:a5ff:fecd:13a6 www.ipv6.org          #主页<br />
2001:6b0:1:ea:202:a5ff:fecd:13a6 www.stacken.kth.se    #</span></div>
<div><span style="font-size: x-small;">2001:6b0:1:ea:202:a5ff:fecd:13a6 shake.stacken.kth.se  #</span></div>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">thepiratebay.org                                      海盗湾</span></span></div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2a01:298:3:1::2 tracker.thepiratebay.org               #tracker</span><br />
</span></div>
<div><span style="font-size: x-small;">2a01:298:3:1::abcd ipv6.thepiratebay.org               #主页<br />
</span></div>
<p><span style="font-size: x-small;">2a01:298:3:1::b000 <span style="font-size: x-small;">static.thepiratebay.org             #</span></span></p>
<div><span style="font-size: x-small;"><span style="font-size: x-small;">2a01:298:3:1::bee <span style="font-size: x-small;">torrents.thepiratebay.org            #</span></span><br />
</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">##Japan                                                <img src="https://docs.google.com/File?id=dfkdmxnt_97htnj2xq3_b" alt="" /><strong>日本</strong></span></div>
<div><span style="font-size: x-small;">#Casio                                                 カシオ計算機 企業情報</span></div>
<div><span style="font-size: x-small;">2001:2c0:800:200::2:80 www.casio.co.jp                 #主页<br />
</span></div>
<p><span style="font-size: x-small;"><br />
</span></p>
<div><span style="font-size: x-small;">#<span style="font-size: x-small;">Hitachi                                               日立製作所</span></span></div>
<div><span style="font-size: x-small;">2001:240:400::8591:e013 www.hitachi.co.jp              #主页<br />
</span></div>
<hr /><a href="http://docs.google.com/Doc?docid=0ARhAbsvps1PlZGZrZG14bnRfNjFkOWNrOWZmcQ&amp;hl=zh_CN">http://docs.google.com/Doc?docid=0ARhAbsvps1PlZGZrZG14bnRfNjFkOWNrOWZmcQ&amp;hl=zh_CN</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.xiaoyu.net/133.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using IPv6 with IIS7</title>
		<link>http://www.xiaoyu.net/81.html</link>
		<comments>http://www.xiaoyu.net/81.html#comments</comments>
		<pubDate>Wed, 18 Nov 2009 05:19:34 +0000</pubDate>
		<dc:creator>xiaoyu</dc:creator>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.xiaoyu.net/?p=81</guid>
		<description><![CDATA[Using IPv6 with IIS7 Besides the US government and certain Asian countries, IPv6 has not really caught on yet, especially here in the US. So how does IIS7 stack up as far as IPv6 support is concerned? Let&#8217;s walk through the IIS7 feature set to evaluate this. For comparison against IIS 6 you can check [...]]]></description>
			<content:encoded><![CDATA[<p>Using IPv6 with IIS7</p>
<p>Besides the US government and certain Asian countries, IPv6 has not really caught on yet, especially here in the US. So how does IIS7 stack up as far as IPv6 support is concerned? Let&#8217;s walk through the IIS7 feature set to evaluate this. For comparison against IIS 6 you can check out the TechNet article here.</p>
<p>IPv6 Bindings in IIS7</p>
<p>The default binding is a &#8216;*&#8217; binding and does not have an IP address, so IPv6 does not come into the picture. However if you were to create a binding for your site from &#8216;inetmgr&#8217; (IIS 7 configuration tool), the drop down list for IP Address would pre-populate with your server&#8217;s IP addresses, including IPv6 address. Here&#8217;s a screen shot of what this looks like.</p>
<p><span id="more-81"></span></p>
<p> </p>
<p> </p>
<p><img class="alignnone size-full wp-image-83" title="Screen7_thumb_1" src="wp-content/uploads/2009/11/Screen7_thumb_1.jpg" alt="Screen7_thumb_1" width="689" height="449" /></p>
<p>When you are selecting an IPv6 address from the list, make sure you don&#8217;t accidentally bind to the &#8216;Temporary IPv6 Address&#8217;. Temporary addresses are IPv6 interface identifiers that provide a level of anonymity for outbound traffic. If your machine is domain joined, it is possible for the DC to assign a temporary address (with the same global prefix) to your machine and this address may change frequently, say every day. In that case your binding will be broken every time such a change occurs.</p>
<p>Sounds good so far, but can I manually enter an IP address? And if I do, will it check the validity of the address? Yes and yes. Here&#8217;s what I get when I enter an invalid IP address.</p>
<p><img class="alignnone size-full wp-image-85" title="Screen8_thumb_1" src="wp-content/uploads/2009/11/Screen8_thumb_1.jpg" alt="Screen8_thumb_1" width="489" height="402" /></p>
<p>Site Limits</p>
<p>Back in IIS 6 site/server limits like MaxBandwidth and MaxGlobalBandwidth metabase properties did not apply to responses sent over IPv6 addresses. IIS 7 has equivalents to these limits as well that reside under system.applicationHost/sites/Limits. These settings apply to responses sent over both IPv4 and IPv6 for IIS 7.</p>
<p>IP Address and Domain Restrictions</p>
<p>If you have brought up the configuration manager for IIS 7 (inetmgr) you probably noticed that the restriction list is preceded by “IPv4&#8243;.</p>
<p><img class="alignnone size-full wp-image-86" title="Screen9_thumb_1" src="wp-content/uploads/2009/11/Screen9_thumb_1.jpg" alt="Screen9_thumb_1" width="290" height="270" /></p>
<p>And drilling down further to add a deny rule list shows IPv4 specific entries only.</p>
<p><img class="alignnone size-full wp-image-87" title="Screen10_thumb_1" src="wp-content/uploads/2009/11/Screen10_thumb_1.jpg" alt="Screen10_thumb_1" width="428" height="319" /></p>
<p>So does this mean that there is no support for IPv6 in the IP restrictions list? Well, note really. The way the restriction list currently works is that it applies a specified mask to an incoming requests address to figure out if an address is on the restriction list. In the case of IPv6 masks are specified as a bit offset like 2001:8989::/16. But there is no reason why you could not specify a subnet style mask for IPV6 like ffff::. The inetmgr UI has an artificial restriction for allowing only IPv4 addresses and this is mostly because of test constraints on our part. However, you can easily configure this in our configuration file (applicationHost.config), and here are what entries look like for both a specific address and an address range for both IPv4 and IPV6 .</p>
<p>All we had to do to specify an IPV6 address is to use a subnet mask style filter for ranges and it should just work. The bonus here is that once you do this in the configuration file, you will see the entry appear accurately in the inetmgr UI as shown below.</p>
<p><img class="alignnone size-full wp-image-88" title="ipv6restr_thumb" src="wp-content/uploads/2009/11/ipv6restr_thumb.jpg" alt="ipv6restr_thumb" width="555" height="250" /></p>
<p>There are some additional details that are worth mentioning here.</p>
<p>Grant/Deny rules using 127.0.0.1 will automatically apply to both IPv4 and IPv6 address.</p>
<p>Also, 127.0.0.1 and ::1 can be used interchangeably and is protocol version agnostic.</p>
<p>Another important fact to remember here is that adding an IP restriction rule is evaluated against that specific IP address and not a client. So if a client has both an IPV4 address and an IPV6 address, and you add a deny rule for the IPV4 address, it can still connect via its IPV6 address.</p>
<p>FTP Publishing Service for IIS 7.0</p>
<p>The new version of FTP (7.0) fully supports IPv6 besides supporting other marked improvements like SSL. Both IPv4 and IPv6 clients can connect to a server that could have either an IPv4 or IPv6 address.</p>
<p>Note:</p>
<p>One major point of confusion that I should clarify here is that the version of FTP on the box with Windows Server 2008 is NOT FTP 7. It is in fact the older version. The new version of FTP shipped out of band and can be downloaded here for x86 version or here for x64 version.</p>
<p>FTP has its own IP restriction list and even its configuration UI (which is integrated with IIS configuration) does not let you specify IPv6 addresses. Here is what you will see when you enter an IPv6 address.</p>
<p><img class="alignnone size-full wp-image-89" title="Screen12_thumb" src="wp-content/uploads/2009/11/Screen12_thumb.jpg" alt="Screen12_thumb" width="457" height="423" /></p>
<p>In case you were wondering if IP restrictions is any different for FTP than for IIS, it&#8217;s not. In fact, if you open up the same applicationHost.config file you will see a section like the one below.</p>
<pre><span>&lt;</span><span>system.ftpServer</span><span>&gt;</span>
    ...
    <span>&lt;</span><span>security</span><span>&gt;</span>
        ...
        <span>&lt;</span><span>ipSecurity</span><span>&gt;</span>
            <span>&lt;</span><span>add</span> <span>ipAddress</span><span>="5.4.3.2"</span> <span>allowed</span><span>="false"</span> <span>/&gt;</span>
            <span>&lt;</span><span>add</span> <span>ipAddress</span><span>="234.123.10.1"</span> <span>subnetMask</span><span>="255.255.0.0"</span> <span>allowed</span><span>="false"</span> <span>/&gt;</span>
        <span>&lt;/</span><span>ipSecurity</span><span>&gt;</span>
    <span>&lt;/</span><span>security</span><span>&gt;</span>
<span>&lt;/</span><span>system.ftpServer</span><span>&gt;</span></pre>
<p>And this is exactly the same schema as the one for IIS. So everything I mentioned above applies here as well.</p>
<p>Miscellaneous</p>
<p>IIS 7.0&#8242;s tracing and logging mechanisms are fully IPv6 aware as well. So whether you are generating Failed Request Traces or looking at the HTTP error logs, you will see IPv6 addresses. Even at an OS and programmability level there is much greater support for IPv6, which makes it easier to work with even from a developer&#8217;s perspective.</p>
<p>http://blogs.iis.net/nazim/archive/2008/05/03/using-ipv6-with-iis7.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiaoyu.net/81.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

