Setting the time link limit for SSH server under Linux

Source: Internet
Author: User
Tags ssh server ssh config ssh config file

OpenSSH for security reasons, if a user is connected to an SSH server for a period of inactivity, SSH server will automatically terminate the SSH connection after a certain amount of time has passed. I am accustomed to long-time connection, need to make the following changes:

1. Open SSH config file: # vim/etc/ssh/sshd_config
Add the following two parameters to save it:

Tcpkeepalive Yes
Clientalivecountmax 360

Note: The previous parameter indicates that you want to keep the TCP connection, and the latter parameter indicates how long the client's SSH line is idle and automatically terminates the value of the connection in minutes.

2. Restart sshd in effect:

/etc/init.d/sshd restart

Note: This method applies to all Linux distributions for OpenSSH.

=============================

For security reasons, if the user is idle after connecting to the SSH server, SSH server will automatically terminate the SSH connection after a certain period of time. Here's how to set the terminating connection time:

1. Open the/etc/ssh/sshd_config file, there is a parameter of Clientalivecountmax, that is, if the client does not have a corresponding, then determine a time-out, this parameter set the number of times allowed to timeout.

2. If the line is preceded by the # number, remove the # number and modify the desired number of times, such as 5.

3. Find the Clientaliveinterval parameter, do not add to themselves, this parameter is to set the user side of the SSH connection idle for a long time after the number of automatic termination, in seconds, can be set 300 seconds, that is, 5 minutes. The two parameters together are 25 minutes to terminate the connection.

4. Save and close the file after modification, restart sshd:

/etc/rc.d/init.d/sshd restart

Setting the time link limit for SSH server under Linux

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.