এটি সম্ভব যে আপনার সার্ভারটি দীর্ঘ সময় অলস থাকা সংযোগগুলি বন্ধ করে দেয়। আপনি আপনার ক্লায়েন্ট ( ServerAliveInterval
) বা আপনার সার্ভার ( ClientAliveInterval
) আপডেট করতে পারেন
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.
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.
আপনার সার্ভার আপডেট করতে (এবং আপনার পুনরায় চালু করুন sshd
)
echo "ClientAliveInterval 60" | sudo tee -a /etc/ssh/sshd_config
বা ক্লায়েন্ট-পক্ষ:
echo "ServerAliveInterval 60" >> ~/.ssh/config