Como liberar portas no servidor SSH quando um túnel ssh reverso é desconectado abruptamente / sem limpeza?

16

Temos um hardware que instalamos nas localizações de nossos clientes, que o hardware se conecta ao nosso servidor ssh e estabelece um túnel ssh reverso para que possamos obter acesso a vários sistemas clientes para fins de monitoramento.

Tudo funciona bem até que haja uma desconexão impura da sessão SSH.

Quando isso acontece, no nosso servidor SSH as portas que foram usadas pelo túnel reverso ficam presas no modo LISTENING e quando nosso hardware remoto eventualmente tenta se reconectar automaticamente e restabelecer seus túneis ele falha com o erro

Warning: remote port forwarding failed for listen port XXXX

Eu testei se havia algum problema com nosso servidor ou cliente SSH tentando uma desconexão limpa e um curso que libera as portas muito bem. Quando eu simular uma falha de conexão (desconecte a porta Ethernet do hardware do cliente, por exemplo), então temos o mesmo problema que descrevi acima.

Qual é a maneira correta de lidar com essa situação? Tenha em mente que estes são túneis invertidos, então o que quer que aconteça precisa ser feito no servidor SSH. Idealmente, eu preciso que o servidor ssh perceba instantaneamente que a sessão SSH que hospeda os túneis está desativada e libera as portas que estava usando. Eu acho que a solução poderia envolver matar o processo SSH em questão, mas eu preciso ter cuidado com isso porque nós temos vários clientes se conectando ao mesmo servidor ssh e eu não gostaria de chutá-los offline.

Sendo tão maduro, tenho certeza que o SSHD tem algum tipo de recurso embutido para lidar com isso, mas eu não consigo entender.

Por favor avise para que eu não precise voltar a administrar as caixas do Windows ...

FYI: Estou rodando isso em uma distro baseada no Debian.

    
por TCZ 15.04.2014 / 18:21

1 resposta

13

Você precisa usar ClientAliveInterval no seu sshd_config .

ClientAliveInterval 15

Ref: man sshd_config

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

         The default value is 3.  If ClientAliveInterval (see below) is
         set to 15, and ClientAliveCountMax is left at the default,
         unresponsive SSH clients will be disconnected after approximately
         45 seconds.  This option applies to protocol version 2 only.

 ClientAliveInterval
         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.
    
por 15.04.2014 / 20:24