利用VPS,ssh通道翻gfw墙,使用dropbox,twitter等

利用VPS,ssh通道翻gfw墙,使用dropbox,twitter等

1. 首先需要一个VPS或者ssh帐号,把公钥复制到VPS上省去每次登陆都需要输入密码:
把本地~/.ssh/id_rsa.pub 或者id_dsa.pub的内容写入到远程服务器所需要登陆的账户的家目录下(如/root)~/.ssh/authorized_keys.

2. 利用ssh通道实现端口转发(详见http://www.ibm.com/developerworks/cn/linux/l-cn-sshforward/ )
ssh -qTfnN -D 7001 root@YOUR_SERVER


3. 此时已经建立了通道,用firefox浏览器的autoproxy插件就可以实现翻gfw墙。

4. 上面的只适用于firefox,要想使每一个软件都能利用ssh通道,可以借助proxychains软件,ubuntu下:
sudo apt-get install proxychains
编辑配置文件/etc/proxychains.conf:
加上我们自己的proxy:
socks5  127.0.0.1 7001


这是用proxychains YOURAPP &就可以让任何软件翻gfw墙了,如使chrome能够访问twitter:
proxychains chromium-browser


5. 设置dropbox:
把下面的源加入到/etc/apt/sources.list:
deb http://linux.dropbox.com/ubuntu oneiric main #Dropbox Official 
Source
更新软件信息:
sudo proxychains apt-get update

安装nautilus-dropbox:
sudo proxychains apt-get install nautilus-dropbox

安装并运行dropbox:
proxychains dropbox start -i


DONE!

已有 0 人发表留言,猛击->> 这里<<-参与讨论


ITeye推荐
  • —软件人才免语言低担保 赴美带薪读研!—



你可能感兴趣的:(ssh,vps,利用)