本章要点
简述注册免费ssh帐号并使用之翻墙。
注册帐号
到www.cjb.net注册一个shell帐号,尽量使用gmail以免耽误时间。
在linux下使用
在终端中输入:
$ ssh -qTfnN -D 端口号 用户名@远程ssh主机名
- 以上参数含义为
- -q :- be very quite, we are acting only as a tunnel.
- -T :- Do not allocate a pseudo tty, we are only acting a tunnel.
- -f :- move the ssh process to background, as we don’t want to interact with this ssh session directly.
- -N :- Do not execute remote command.
- -n :- redirect standard input to /dev/null.
使用autoproxy
安装firefox扩展autoproxy,添加。
自动ssh连接
有些ssh连接可能有无操作的时效限制,为了实现断线后的自动连接,可以先实现免密码ssh登录,然后安装autossh用下面的命令连接:
$ autossh -M 2000 -N -D 127.0.0.1:端口号 用户名@远程主机名 &
附录
由于shell.cjb.net被dns污染,使用ip
216.194.70.6
可登录
2012年02月10日 星期五 20时03分21秒