Linux-ssh keep alive

保持 ssh session 长连接不断开有两种方式

  1. 在服务器端配置 /etc/ssh/sshd_config
    TCPKeepAlive yes
    ClientAliveInterval 120 
    ClientAliveCountMax 30
    
  2. 在客户端配置
    ~/.ssh/config
    Host *
      ServerAliveInterval 120
      ServerAliveCountMax 30