ssh a sessão do terminal expira, como isso pode ser alterado [duplicado]

5

Parece que após cerca de 5 minutos uma sessão ssh inativa é encerrada. O servidor é o Ubuntu. Como posso mudar isso?

    
por Chris Muench 17.10.2011 / 20:19

1 resposta

10

No servidor, faça o login como root e edite /etc/ssh/sshd_config e adicione a linha:

ClientAliveInterval 60

man sshd_config:

Sets a timeout interval in seconds after which if no data has been received from the client, sshd(8) will send a message through the encrypted channel to request a response from the client. The default is 0, indicating that these messages will not be sent to the client. This option applies to protocol version 2 only.

Você precisará reiniciar o sshd para entrar em vigor.

Como alternativa, na edição do cliente /etc/ssh/ssh_config (se você tem raiz e deseja para todos os usuários) ou ~/.ssh/config e adicione a linha:

ServerAliveInterval 60
    
por 17.10.2011 / 20:24

Tags