本帖最后由 camac 于 2014-1-5 12:40 编辑  
 
有远程的ssh账号  能否让MBL 通过ssh连接VPS 然后通过MBL 做服务器上网 
 
试了下 ssh -qTfnN -D 7070 xxx@yyy.com  这个命令 连不上 
 
 
 
-q :- be very quite, we are acting only as a tunnel. 使用安静模式 
-T :- Do not allocate a pseudo tty, we are only acting a tunnel.不要分配tty 
-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.从定向输出到/dev/null 
 |   
 
 
 
 |