ssh本地tunnel代理
文章目录
【注意】最后更新于 January 18, 2012,文中内容可能已过时,请谨慎使用。
ssh命令用法
ssh -qTfnN -D 7070 用户名@远程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.
plink用法
|
|