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).

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...