从putty / plink连接多个unix服务器

时间:2015-06-08 10:20:56

标签: unix ssh cmd putty plink

问题陈述:

Step1: Connect to unix server1 from windows cmd.exe

Step2: Connect to the unix server2 in the same putty/plink session.

使用的代码:

D:\ Putty \ putty.exe -ssh -l xxx -pw xxx> D:\ Putty \ log44.txt

D:\ Putty \ putty.exe -ssh -l xxx -pw xxx> D:\ Putty \ log45.txt

它正在创建两个putty会话(两个窗口正在显示)

我希望命令启动server1和server2,传递给同一个putty会话(窗口)。

1 个答案:

答案 0 :(得分:0)

您可以使用名为screen的GNU实用程序来完成此操作。

http://www.gnu.org/software/screen/

登录第一个终端并执行:

$ screen

然后登录第二个连接并执行:

$ screen -ls 

然后你会看到一个会话PID列表然后执行:

$ screen -x PID 

并且您将连接到同一会话。