Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upFix delay in case of ssh's ConnectTimeout option usage #457
Conversation
I have timeout degradation in case of powershell version usage For example, ConnectionTimeout=5 produces 5 sec delay in any case. ssh -o BatchMode=yes -o ServerAliveInterval=5 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ConnectTimeout=5 user@target uname In real connection takes about 200ms As I can see, https://github.com/openssh/openssh-portable includes fix for that, Let's apply patch here. Thanks, Kirill
I have timeout degradation in case of powershell version usage
For example, ConnectionTimeout=5 produces 5 sec delay in any case.
ssh -o BatchMode=yes -o ServerAliveInterval=5 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ConnectTimeout=5 user@target uname
In real connection takes about 200ms
As I can see, https://github.com/openssh/openssh-portable includes fix for that, Let's apply patch here.
Thanks, Kirill