11011110110011011001100110011001000110011001100111010001011

August 19, 2007

什么是GFW

Filed under: Programming

最近google pages访问不了,我的东西也没法上传,就顺便详细了解了一下中国大陆的这个GFW
传说中的 Great Fire Wall of China ,我们好多东西都看不了啊~~~,真可怜~~

现在用代理凑合着先用着了。。。

function FindProxyForURL(url,host)
{
if(dnsDomainIs(host, ".blogspot.com"))
return "PROXY 72.14.219.190:80";
if(dnsDomainIs(host, ".googlepages.com"))
return "PROXY 72.14.219.190:80";
if(dnsDomainIs(host, "pages.google.com"))
return "PROXY 72.14.219.190:80";
else
return "DIRECT";
}