微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

linux – 在一个命令中退出所有SSH连接并关闭PuTTY

有没有办法退出所有SSH连接并以“一次性”关闭PuTTY?我在Windows 7中工作并使用PuTTY连接到各种Linux主机.

我发现自己工作方式的一个例子:

SSH to host1 with PuTTY...
banjer@host1:~> #...doin some work...ooh! need to go check something on host8...
banjer@host1:~> ssh host8
banjer@host8:~> #...doin some work...OK time for lunch. lets close putty...
banjer@host8:~> exit
banjer@host1:~> exit
Putty closes.

按上述方法,一次从host8到关闭PuTTY的任何方式?有时我发现自己最多有5到10个主机.我意识到我可以单击X来关闭PuTTY窗口,但我想确保使用exit命令正确关闭我的SSH连接.我也意识到我正在寻求如何增加懒惰的技巧.我会把它写成“我怎样才能更有效率”.

解决方法:

尝试使用ssh连接终止转义序列.

在ssh会话中,输入〜. (波浪点).键入时不会看到字符,但会话将立即终止.

$~.
$Connection to me.myhost.com closed.  

从男人1 ssh

The supported escapes (assuming the default ‘~’) are:
 ~.      disconnect.
 ~^Z     Background ssh.
 ~#      List forwarded connections.
 ~&      Background ssh at logout when waiting for forwarded 
         connection / X11 sessions to terminate.
 ~?      display a list of escape characters.
 ~B      Send a BREAK to the remote system (only useful for SSH protocol
         version 2 and if the peer supports it).
 ~C      Open command line.  Currently this allows the addition of port 
         forwardings using the -L, -R and -D options (see above). It also
         allows the cancellation of existing remote port-forwardings using 
         -KR[bind_address:]port.  !command allows the user to execute a 
         local command if the PermitLocalCommand option is enabled in
         ssh_config(5).  Basic help is available, using the -h option.
 ~R      Request rekeying of the connection (only useful for SSH protocol 
         version 2 and if the peer supports it).

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐