关于ssh登录超时断开连接的设置有两个方面可以设置

1、修改sshd服务的配置文件sshd_config的内容

 #ClientAliveInterval 0   指定了服务器向客户端请求消息的时间间隔

 #ClientAliveCountMax 3   连接用户最大值


2、ssh -o ConnectTimeout=Time IP

    ssh -o ConnectTimeout=3 192.168.0.10

3、修改环境变量配置文件(.bash_profile /etc/bash_profile /etc/profile) 只有TMOUT可以控制ssh连接在空闲时间超时,自动断开连接的时间,数字单位为秒

 配置文件中添加 export TMOUT=TIME (以秒为单位)

export TMOUT=600