D*****r 发帖数: 175 | 1 ubuntu 9.10下ssh到远程服务器,如果一段时间不用(估计十几分钟)就被server踢了
。然后又要重新登录,很麻烦。windows下的ssh client就不会有这个问题,是不是需
要在ssh命令后面加个什么指令?看了ssh的帮助,好像没找到,有经验的请来说说。 |
h***r 发帖数: 726 | 2 your client needs to send some info to the server, saying I am alive.
usually, I will open an emacs, which will do it for me automatically.
【在 D*****r 的大作中提到】 : ubuntu 9.10下ssh到远程服务器,如果一段时间不用(估计十几分钟)就被server踢了 : 。然后又要重新登录,很麻烦。windows下的ssh client就不会有这个问题,是不是需 : 要在ssh命令后面加个什么指令?看了ssh的帮助,好像没找到,有经验的请来说说。
|
z**r 发帖数: 17771 | 3 do you have the root access to the server? if yes, then man sshd, you'll
find it
【在 D*****r 的大作中提到】 : ubuntu 9.10下ssh到远程服务器,如果一段时间不用(估计十几分钟)就被server踢了 : 。然后又要重新登录,很麻烦。windows下的ssh client就不会有这个问题,是不是需 : 要在ssh命令后面加个什么指令?看了ssh的帮助,好像没找到,有经验的请来说说。
|
D*****r 发帖数: 175 | |
a*******e 发帖数: 3021 | 5 if his windox client don't drop connection, server is set correctly, right?
it should be his ubuntu client's setting problem
【在 z**r 的大作中提到】 : do you have the root access to the server? if yes, then man sshd, you'll : find it
|
z**r 发帖数: 17771 | 6 no, most likely his windows client keeps sending keepalives to keep the
session up
【在 a*******e 的大作中提到】 : if his windox client don't drop connection, server is set correctly, right? : it should be his ubuntu client's setting problem
|
v*****r 发帖数: 1119 | 7 You can add the following two lines on your client config file (~/.ssh/
config)
Host *
ServerAliveInterval 30
【在 D*****r 的大作中提到】 : ubuntu 9.10下ssh到远程服务器,如果一段时间不用(估计十几分钟)就被server踢了 : 。然后又要重新登录,很麻烦。windows下的ssh client就不会有这个问题,是不是需 : 要在ssh命令后面加个什么指令?看了ssh的帮助,好像没找到,有经验的请来说说。
|