如何在公司上網,用SSH隧道來避過IT嘅監視
此tutorial由http://www.spreada.com 提供。
我的mysetting.pac file
===============================
function FindProxyForURL(url, host) {
if (isInNet(host, "172.14.0.0", "255.255.0.0") || dnsDomainIs(host,".google.com") ||
dnsDomainIs(host,".msn.com") ||
dnsDomainIs(host,".sun.com") ||
dnsDomainIs(host,".adobe.com") ||
dnsDomainIs(host,".w3.org") ||
dnsDomainIs(host,".firstgov.gov") ||
dnsDomainIs(host,".apple.com") ||
dnsDomainIs(host,".php.net") ||
dnsDomainIs(host,".intel.com") ||
dnsDomainIs(host,".altavista.com") ||
dnsDomainIs(host,".wikipedia.com") ||
dnsDomainIs(host,".ibm.com") ||
dnsDomainIs(host,".yahoo.com") ||
dnsDomainIs(host,".macrovision.com"))
return "DIRECT"; return "SOCKS localhost:10000";
}
===============================
Link to this comment:
All Comments (0)