2009年8月14日星期五

冒个泡

自从这个博客被封。。。。

冒个泡

纪念ssh隧道设置成功
ssh -qTfnN -D 9999 name@machine &

-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.

感谢大奥提供隧道~bow~~