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+ `कुंजियाँ एक साथ), तो इसे जारी करें और दबाएं .। वैकल्पिक रूप से, यदि आप एक अस्थिर कनेक्शन के साथ काम करते हैं या दूरस्थ सर्वर से हर समय कनेक्ट होने की आवश्यकता होती है, तो आप खोए हुए कनेक्शन को स्वचालित रूप से नवीनीकृत करने के लिए ऑटोस का उपयोग कर सकते हैं , यह बहुत सुविधाजनक है।
संपादित करें :
हालाँकि, यदि दोनों ClientAliveInterval
और ServerAliveInterval
स्पष्ट रूप से 0 पर सेट हैं या स्पष्ट रूप से सेट नहीं हैं और फिर डिफ़ॉल्ट रूप से sshd_config
और ssh_config
मैनपावर के अनुसार 0 पर सेट हैं , टाइमआउट सेटिंग्स निम्न फ़ाइलों ( http://tldp.org/HOWTO/TCP- से) में सेट की गई हैं रखवाले- 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 सत्र को डिस्कनेक्ट किया गया है।
Enter
~
.
कनेक्शन को समाप्त करने वाले अनुक्रम के रूप में उपयोग करने के लिए बेहतर है ।