欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Linux下SSH Session复制功能实现方法

程序员文章站 2023-11-25 18:47:46
羡慕Windows下secureCRT的Session Copy功能,一直在寻找Linux下类似的软件,殊不知SSH本身就支持此功能... 13-08-11...

特别感谢阿干同学的邮件分享。

详细方法


复制代码
代码如下:

linux/mac下,在$home/.ssh/config中加入
host *
controlmaster auto
controlpath <a>/tmp/ssh-%r@%h</a>

至此只要第一次ssh登录输入密码,之后同个hosts则免登。

配置文件分析

man ssh_config 5


复制代码
代码如下:

controlpath
specify the path to the control socket used for connection sharing as described in the controlmaster section
above or the string “none” to disable connection sharing. in the path, ‘%l’ will be substituted by the
local host name, ‘%h’ will be substituted by the target host name, ‘%p’ the port, and ‘%r’ by the remote
login username. it is recommended that any controlpath used for opportunistic connection sharing include at
least %h, %p, and %r. this ensures that shared connections are uniquely identified.

%r 为远程机器的登录名
%h 为远程机器名

原理分析

严格地讲,它并不是真正意义上的session copy,而只能说是共享socket。
第一次登录的时候,将socket以文件的形式保存到:/tmp/ssh-%r@%h这个路径
之后登录的时候,一旦发现是同个主机,则复用这个socket
故,一旦主进程强制退出(ctrl+c),则其他ssh则*退出。

可以通过ssh -v参数,看debug信息验证以上过程

备注

有同学说在linux上通过证书的形式,可以实现免登录,没错。
对于静态密码,完全可以这么干;对于动态密码(口令的方式),则上述手段可以方便很多。