gpt4 book ai didi

ssh - 连接到/从 Ubuntu 18.04 时禁用 SSH 超时

转载 作者:行者123 更新时间:2023-12-05 00:47:02 32 4
gpt4 key购买 nike

我在 windows 上使用 putty 将 ssh 连接到我的 Digitalocean 液滴,但 ssh session 将在短暂不活动后过期。延长 session 超时需要什么配置?

最佳答案

您需要在 2 个地方设置配置:TESTED WORKING

客户端配置:

-打开文件/etc/ssh/ssh_config 并将指令 ServerAliveInterval 设置为类似 100 的值,例如:

# other configs
ServerAliveInterval 100

这会导致您的 SSH 客户端每 100 秒发送一次保持事件消息,这样服务器就不会断开您的连接。

服务器配置

-打开文件/etc/ssh/sshd_config 并在文件末尾添加这些配置以确保它们不会被后面的行覆盖:

# other configs
ClientAliveInterval 600
TCPKeepAlive yes
ClientAliveCountMax 10

这些是保守的设置,会使您的 SSH 服务器仅在 (600 * 10 = 6000) 秒的用户不活动后断开连接。如果您需要更多,请自定义这些。

重启 ssh 服务器以使更改生效:

$ sudo /etc/init.d/ssh restart

来源:http://queirozf.com/entries/disabling-ssh-timeout-when-connecting-to-from-ubuntu

关于ssh - 连接到/从 Ubuntu 18.04 时禁用 SSH 超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59019988/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com