Re: Timeout dead connections

2013-03-28 Thread Mattias Walström
Thanks for your responses, all your suggestions imply that you should do something in the client (set keepalive on client end), but shouldn't the server itself be able to decide if a client is dead (can't OpenSSH do this?). If I do the -K 15 -I 20 on the server end only, this will close the

Re: Timeout dead connections

2013-03-28 Thread Matt Johnston
I think that -K on the server should be enough. On the server can you run tcpdump -i eth0 -w cap1.cap port 22, get a ssh session going, pull out the cable, wait 10 minutes, then send me the capture? Could you also check that the Dropbear process for the connection is still running after the

scp issue in 0.56

2013-03-28 Thread Frank Van Uffelen
Hello, I think I've found a problem in the scp implementation in 0.56: lines 233-235 of scp.c say: #ifdef USE_VFORK arg_setup(host, remuser, cmd); #endif and IMO it should be #ifndef USE_VFORK arg_setup(host, remuser, cmd); #endif which would correspond to the