菜单

Administrator
发布于 2024-06-14 / 28 阅读
0
0

Ubuntu 配置SSH

配置文件在: /etc/ssh/sshd_config

允许Root登录

PermitRootLogin yes
PasswordAuthentication yes

保持登录

# 每隔n秒发送信号
ClientAliveInterval 60
# 网络异常, 最大发送次数
ClientAliveCountMax 2


评论