Matar sessão SSH desconectada em execução na 'tela'

5

Estou sempre esquecendo de fazer logoff quando ssh -ing em algum lugar. Depois que eu reabrir meu bloco de anotações, uma janela screen com esse ssh em execução não responde. Eu tenho que criar outra janela, $ killall ssh , e só então eu posso voltar assh de volta.

Existe uma maneira de matar este ssh usando algum atalho?

Ou existe uma maneira de fazer com que ssh tente reconectar automaticamente? Ou apenas retornar o prompt local para mim mais rápido?

    
por Michal Rus 09.12.2013 / 17:42

2 respostas

6

Tente o seguinte,

 ~.      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).
    
por 09.12.2013 / 18:23
2

Existem algumas coisas que você pode tentar:

  1. Mate a janela do emulador de terminal em que as sessões screen e ssh estão sendo executadas. Você pode usar xkill e, em seguida, clicar na janela suspensa para eliminá-la .

  2. Faça com que o tempo de sessões de ssh seja encerrado automaticamente. Supondo que o servidor ao qual você está conectado não esteja configurado para manter a conexão ativa, você será desconectado automaticamente, a menos que tenha configurado seu cliente para manter a sessão ativa. Se você tiver uma opção ServerAliveInterval definida no seu /etc/ssh/ssh_config , comente essa linha.

Referências úteis:

Quais opções 'ServerAliveInterval' e ' ClientAliveInterval 'em sshd_config faz exatamente?

link

    
por 09.12.2013 / 18:29