admin管理员组文章数量:1346203
In my ~/.ssh/config
, I use ControlMaster
in order to reuse SSH connections. Can Ruby's Net::SSH
make use of ControlMaster
or at least make use of a similar connection-reuse mechanism?
I re-use SSH connections to host.example
because establishing a connection to it requires MFA, which becomes a pain when I have days that require me to revisit host.example
frequently. But this appears to work only when I execute ssh
as a shell command. I'd like a Ruby project that I work in to provide the same functionality.
The Ruby project currently has the following code:
Net::SSH.start("host.example") do |session|
# ...
end
In my ~/.ssh/config
, I use ControlMaster
in order to reuse SSH connections. Can Ruby's Net::SSH
make use of ControlMaster
or at least make use of a similar connection-reuse mechanism?
I re-use SSH connections to host.example
because establishing a connection to it requires MFA, which becomes a pain when I have days that require me to revisit host.example
frequently. But this appears to work only when I execute ssh
as a shell command. I'd like a Ruby project that I work in to provide the same functionality.
The Ruby project currently has the following code:
Net::SSH.start("host.example") do |session|
# ...
end
Share
Improve this question
asked 2 days ago
JellicleJellicle
30.4k25 gold badges117 silver badges179 bronze badges
2
|
1 Answer
Reset to default 0If you are using a single process, you can store the connection and reuse it (you may want to have a look at sshkit connection pooling)
If you want to reuse the same connection in several ruby processes, it is more complex because ControlMaster is not supported : https://net-ssh.github.io/net-ssh/classes/Net/SSH/Config.html.
You can probably manage to use system ssh client with a proxy command : https://net-ssh.github.io/ssh/v2/api/classes/Net/SSH/Proxy/Command.html
本文标签: Can Ruby NetSSH reuse ssh connections the way ControlMaster doesStack Overflow
版权声明:本文标题:Can Ruby Net::SSH reuse ssh connections the way ControlMaster does? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743822143a2544981.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
start
yields aconnection
and maybe utilize that as a jumping off point for a "reusable" connection. – engineersmnky Commented 2 days ago