I see some mention of ChannelTimeout in the man pages, but don't see any mention of it in sshd_config, so don't know where to look.read the manpage for the sshd configuration file...you will find what you need.
Put file ~/.ssh/config in your client (local computer) with:Are there any settings within sshd which set a timeout period?
Host *
ServerAliveInterval 60
I think this setting is the time allowed to get authenticated whilst logging in.There are settings, but they're not necessarily called timeout but rather grace time. I think you're looking for LoginGraceTime (which is mentioned in /etc/ssh/sshd_config by default btw).
Put file ~/.ssh/config in your client (local computer) with:
Then the connection will not interrupt.# cat /root/.ssh/config │
# cat /root/.ssh/config │Host * │
ServerAliveInterval 60
Without "|", just the two lines with "Host *" and "ServerAliveInterval 60" (and without "").Like this?
They are for different kind of personalities.Nevermind previous...I didn't read carefully before going off on a tangent. Either config can work: ServerAliveInterval if you decide to configure the client, or ChannelTimeout if you decide to globally configure it on the server.