2011年06月25日
⁄ 滴水穿石 
⁄ 共 297字
⁄ 阅读 40,013 views 次
ssh -qTfnN -D 7070 name@XXX
passwd:
-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.
-D:端口
干啥用的,大家心里清楚…… :grin:
ssh阅读全文