ServerAliveCountMax no SSH

18

O que o ServerAliveCountMax no SSH realmente faz?

Estou tentando garantir que, ao conectar-me ao meu servidor via SSH, a conexão permaneça aberta por um longo período de tempo, em vez de a conexão morrer após um curto período de inatividade. Este é o exemplo

Host *
    ServerAliveInterval 60
    ServerAliveCountMax 2

Eu ouvi de uma fonte que o A configuração acima sempre enviará uma resposta ao servidor a cada 60 segundos, desde que o servidor receba essa resposta. No entanto, se por qualquer motivo a resposta não passar para o servidor, ele tentará enviar outra mensagem. Se essa mensagem falhar também, fechará a conexão. (Eu sinto que isso está errado)

O segundo e terceira fonte no entanto dizer algo diferente. Eles afirmam que uma mensagem será enviada ao servidor a cada 60 segundos se houver um período de inatividade, mas ele só enviará por meio de duas solicitações e, em seguida, fechará a conexão.

Então, o que exatamente o ServerAliveCountMax faz?

    
por John Crawford 14.09.2013 / 11:13

2 respostas

25

Seu sentimento de que "isso está errado" está correto. Veja a página man :

 ServerAliveCountMax
         Sets the number of server alive messages (see below) which may be
         sent without ssh(1) receiving any messages back from the server.
         If this threshold is reached while server alive messages are
         being sent, ssh will disconnect from the server, terminating the
         session.  It is important to note that the use of server alive
         messages is very different from TCPKeepAlive (below).  The server
         alive messages are sent through the encrypted channel and there‐
         fore will not be spoofable.  The TCP keepalive option enabled by
         TCPKeepAlive is spoofable.  The server alive mechanism is valu‐
         able when the client or server depend on knowing when a connec‐
         tion has become inactive.

         The default value is 3.  If, for example, ServerAliveInterval
         (see below) is set to 15 and ServerAliveCountMax is left at the
         default, if the server becomes unresponsive, ssh will disconnect
         after approximately 45 seconds.  This option applies to protocol
         version 2 only.

 ServerAliveInterval
         Sets a timeout interval in seconds after which if no data has
         been received from the server, ssh(1) will send a message through
         the encrypted channel to request a response from the server.  The
         default is 0, indicating that these messages will not be sent to
         the server.  This option applies to protocol version 2 only.
    
por 14.09.2013 / 13:39
1

Mensagens de servidor ativo são úteis quando um servidor SSH foi configurado para fechar conexões após um período de tempo sem tráfego (provedores de hospedagem compartilhada que oferecem acesso SSH quase sempre fazem isso, por exemplo). A definição dessas duas opções envia um pacote a cada ServerAliveInterval segundos, para um máximo de ServerAliveCountMax vezes, mantendo assim a sessão ativa.

Para responder aos comentários sobre a incerteza de definir uma das opções para 0 , li o código-fonte da implementação openssh , e aqui está o que eu vejo ...

  • A configuração ServerAliveInterval to 0 NÃO enviará os pacotes, mas manterá a sessão ativa indefinidamente, supondo que a conexão não seja interrompida devido ao tempo limite do TCP e que o servidor não esteja configurado para eliminar clientes inativos .

  • A configuração de ServerAliveCountMax to 0 tem o mesmo efeito que a configuração de ServerAliveInterval to 0 .

  • Definir um valor como negativo ou algo maior que INT_MAX (ou seja, 2.147.483.647) resultará em um erro "valor inteiro ..." .

  • A definição de ServerAliveCountMax entre INT_MAX/1000+1 (isto é, 2.147.484) para INT_MAX (ou seja, 2.147.483.647) também seria equivalente a definir qualquer valor como 0 .

Portanto, em essência, o maior tempo de espera que você pode obter (enquanto envia os pacotes) é INT_MAX/1000 (ou seja, 2.147.483). Com um tempo limite de 1 e nenhum tráfego nas sessões, isso levaria quase 25 dias.

Obviamente, outras implementações do SSH podem ter resultados diferentes.

    
por 19.08.2018 / 03:45

Tags