回答:
SSH接続はClientAliveInterval
、ClientAliveCountMax
パラメータおよびそれらに相当するクライアント側で設定された指定期間後に自動的にダウンします。これらのタイムアウトが非常に大きい場合、シェルがフリーズします。ただし、使用するOpenSSH
場合、タイムアウトを待つ必要はなく、エスケープ文字を使用して接続を強制的に閉じることができます:
ESCAPE CHARACTERS
When a pseudo-terminal has been requested, ssh supports a number
of functions through the use of an escape character. A single
tilde character can be sent as ~~ or by following the tilde by a
character other than those described below. The escape character
must always follow a newline to be interpreted as special. The
escape character can be changed in configuration files using the
EscapeChar configuration directive or on the command line by the
-e option.
The supported escapes (assuming the default ‘~’) are:
~.
Disconnect.
(...)
接続がフリーズしたら~(Shift+ `キーを同時に押す)、接続を解除してを押し.ます。あるいは、不安定な接続で作業している場合、またはautosshを使用して失われた接続を自動的に更新できる場合に常にリモートサーバーに接続する必要がある場合は、非常に便利です。
編集:
ただし、両方ClientAliveInterval
とServerAliveInterval
が明示的に0に設定されているか、明示的に設定されておらずsshd_config
、ssh_config
マンページに従ってデフォルトで0に設定されている場合、タイムアウト設定は次のファイルで設定されます(http://tldp.org/HOWTO/TCP- Keepalive-HOWTO / usingkeepalive.html):
# cat /proc/sys/net/ipv4/tcp_keepalive_time
7200
# cat /proc/sys/net/ipv4/tcp_keepalive_intvl
75
# cat /proc/sys/net/ipv4/tcp_keepalive_probes
9
The first two parameters are expressed in seconds, and the last is
the pure number. This means that the keepalive routines wait for
two hours (7200 secs) before sending the first keepalive probe,
and then resend it every 75 seconds. If no ACK response is
received for nine consecutive times, the connection is marked as
broken.
これらの3つのファイルを使用するだけで、echo
これらの値に従って、凍結されたSSHセッションが切断されることを確認できます。
/proc/sys/net/ipv4/tcp_keepalive*
ファイルやClientAliveInterval
とServerAliveInterval
仕事を一緒に?それらはすべて同じ設定、つまりssh接続を維持するためのものですか?前のファイルは、ssh接続だけでなく、他のTCP接続用でもありますか?
/proc/sys/net/ipv4/tcp_keepalive*
だけでssh(d)
なく、リンク先の文書にあるように:Remember that keepalive support, even if configured in the kernel, is not the default behavior in Linux. Programs must request keepalive control for their sockets using the setsockopt interface. There are relatively few programs implementing keepalive, but you can easily add keepalive support for most of them following the instructions explained later in this document.
sshd
するか、ケーブルを取り外して、フリーズした ssh
セッションがいつ終了するかを確認します。frozen shell
非アクティブであるI平均殻、任意のキーをとらないと、何も印刷されません。
Enter
~
.
、接続を終了するシーケンスとして慣れる方がおそらく良いでしょう。