Monday, September 27, 2021

Linux: SSHD Configure SSH Timeout on Server Side

https://www.tecmint.com/increase-ssh-connection-timeout/


/etc/ssh/sshd_config  

ClientAliveInterval  1200
ClientAliveCountMax 3









The timeout value is given by the product of the above parameters i.e.

Timeout value = ClientAliveInterval * ClientAliveCountMax

For example, let’s say you have defined your parameters as shown:

ClientAliveInterval  1200
ClientAliveCountMax 3

No comments:

Post a Comment

Azure - Pipeline - Add Approver for Stage

https://learn.microsoft.com/en-us/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass