2006年11月6日

访问blogger的几个方法

多日不能上blogger,倒也整理出一些办法,下面罗列一下:

1. 代理法:
找代理服务器,这个就不多说了。推荐一个网站:http://www.proxycn.com/

2. 改hosts:
修改hosts文件(windows在 system32\drivers\etc\host,linux在 /etc/hosts),添加一行

72.14.219.190 xxx.blogspot.com

3. 搭跳板
有一些网站,比如:
www.pkblogs.com
www.inblogs.net
anonymouse.org

4. t+p:
即tor+privoxy,由于t+p有些慢,通过IE自动脚本可以实现只对某些网站实现tor,一般网站直接连接。
将下面这段保存为 proxy.pac


function FindProxyForURL(url, host)
{
host=host.toLowerCase();
url = url.toLowerCase();
if(dnsDomainIs(host,"wikipedia.org")
||dnsDomainIs(host,"wikisource.org")
||dnsDomainIs(host,"wikibooks.org")
||dnsDomainIs(host,"wikimedia.org")
||dnsDomainIs(host,"wiktionary.org")
||dnsDomainIs(host,"wikinews.org")
||dnsDomainIs(host,"wikimediafoundation.org")
||dnsDomainIs(host,"mediawiki.org")
||dnsDomainIs(host,"wikiquote.org")
||dnsDomainIs(host,"blogger.com")
||dnsDomainIs(host,"blogspot.com")
||dnsDomainIs(host,"wordpress.com")
||shExpMatch(url,"q=cache:")
)
return "PROXY 127.0.0.1:8118";
else return "DIRECT";
}
然后在浏览器的代理设置中,选择自动代理脚本。输入类似 file://C:\proxy.pac 这样的路径即可。

补充:这里提一下自动配置脚本的配置写法

1. 网络写法
兼容性最好,如:
http://proxy.ipcn.org/ipcn.pac

2. 本地文件写法
file:// :
file:///c:/proxy/ipcn.pac (firefox需要注意路径的表示方法)
file://c:\proxy\ipcn.pac (IE用\就行,但我试了/也可以,而且IE是file后面两个/)
如果遇到不行的情况 可以在自动配置脚本ipcn.pac里面加入 alert("test"); 便于测试。

没有评论: