如何解决南电信北网通跨网访问web速度问题?看了一下新浪

这是我贴到别人的blog里的回复:

分别使用两个dns server,测试了www.sina.com.cn的域名。
一个是202.99.8.1,用这个页面(http://www.123cha.com/index.php)查出是北京飞华的,猜测是网通的??
一个是202.96.209.5,这个是上海热线,电信的。

这个页面(http://www.123cha.com/index.php)只能查IP地域归属。

两个dns server nslookup www.sian.com.cn得到的IP是不同的。


nslookup
Default Server: ns.fhnet.cn.net
Address: 202.99.8.1

>; server 202.96.209.5
Default Server: ns-px.online.sh.cn
Address: 202.96.209.5

>; www.sina.com.cn
Server: ns-px.online.sh.cn
Address: 202.96.209.5

Non-authoritative answer:
Name: taurus.sina.com.cn
Addresses: 61.172.201.225, 61.172.201.226, 61.172.201.10, 61.172.201.11
61.172.201.12, 61.172.201.13, 61.172.201.14, 61.172.201.15, 61.172.201
.16
61.172.201.17, 61.172.201.18, 61.172.201.19, 61.172.201.221, 61.172.20
1.222
61.172.201.223, 61.172.201.224
Aliases: www.sina.com.cn, jupiter.sina.com.cn

>; server 202.99.8.1
DNS request timed out.
timeout was 2 seconds.
Default Server: [202.99.8.1]
Address: 202.99.8.1

>; www.sina.com.cn
Server: [202.99.8.1]
Address: 202.99.8.1

Non-authoritative answer:
Name: libra.sina.com.cn
Addresses: 61.135.152.71, 61.135.152.72, 61.135.152.73, 61.135.152.74
61.135.152.75, 61.135.152.76, 61.135.152.77, 61.135.152.78, 61.135.152
.79
61.135.152.80, 61.135.152.81, 61.135.152.82, 61.135.153.175, 61.135.15
3.176
61.135.153.177, 61.135.153.178
Aliases: www.sina.com.cn, jupiter.sina.com.cn

>;

再查,当使用202.99.8.1,得到其中的一个 IP 61.135.152.71 是 北京市 网通
使用202.96.209.5,得到的一个61.172.201.225 是上海市 电信

sina还是在DNS服务器上做了设置。不同网络的用户使用不同的Server来访问(这应该算是gslb???),这些Server可能是如同你所说的,使用的是squid来做内容cache。
怎么解析也不能一个域名解析到两个ip阿??
这样就违背了dns原理了!
-bash-2.05b$ ping www.sina.com.cnPING jupiter.sina.com.cn (202.205.3.130) 56(84) bytes of data.
From 210.31.200.250 icmp_seq=1 Destination Host Unreachable
From 210.31.200.250 icmp_seq=2 Destination Host Unreachable
From 210.31.200.250 icmp_seq=3 Destination Host Unreachable
From 210.31.200.250 icmp_seq=4 Destination Host Unreachable
From 210.31.200.250 icmp_seq=5 Destination Host Unreachable
From 210.31.200.250 icmp_seq=6 Destination Host Unreachable
From 210.31.200.250 icmp_seq=7 Destination Host Unreachable
From 210.31.200.250 icmp_seq=8 Destination Host Unreachable
From 210.31.200.250 icmp_seq=9 Destination Host Unreachable
From 210.31.200.250 icmp_seq=10 Destination Host Unreachable

--- jupiter.sina.com.cn ping statistics ---
10 packets transmitted, 0 received, +10 errors, 100% packet loss, time 9008ms
www.chinacache.com
南北互通的问题确实是一个大问题,是南北互相限制的问题
bind9 可以根据不同来源解析不同的结果
据我了解这种网站都是有不同的服务器在不同的网络
根据连接主机的源ip地址判断在那个网络,dns解析不同的服务器地址

具体实现就是bind 起多个进程  监听不同端口

使用iptables 根据源ip的不同,重定向到相应进程的端口
这样就达到了不同网络访问,解析出不同的 ip
没有楼上说的这么麻烦。
在bind9中可以使用view功能
根据什么来源地址给出什么IP。
不过一个域名对应多个ip我也想不出了。
view 功能示范:
view view_name [class] {
match-clients { address_match_list } ;
match-destinations { address_match_list } ;
match-recursive-only { yes_or_no } ;
[ view_option; ...]
[ zone-statistics yes_or_no ; ]
[ zone_statement; ...]
};
可以用很多方式啊。。。

上边那个公司说得也是可以实现的,拉不同运营商的idc。北京的2911就是这样干的。。

拉了网通和电信的线路到自己的公司,自己的router上做ip list,根据不同的ip来决定走不同的访问线路。

第二个就是通过dns的match list,根据不同的用户的ip,来解析出不同的ip地址,在不同的城市放网站的镜像(chinacache就是用的类似的东西)。
很多镜像服务器