From: Daniel Kahn Gillmor Date: Wed, 10 Sep 2008 20:28:42 +0000 (-0400) Subject: added comment about ConnectTimeout option for cssh X-Git-Tag: monkeysphere_0.16-1~82 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=f82e2dec4b49461a017a14575c1dc6ab42e7d323;hp=ba5cdea511e46d1b6cfacfb9836b09c9eac56685;p=monkeysphere.git added comment about ConnectTimeout option for cssh --- diff --git a/website/bugs/monkeysphere-interferes-with-cssh.mdwn b/website/bugs/monkeysphere-interferes-with-cssh.mdwn index 24991b5..073b0cf 100644 --- a/website/bugs/monkeysphere-interferes-with-cssh.mdwn +++ b/website/bugs/monkeysphere-interferes-with-cssh.mdwn @@ -52,3 +52,22 @@ simultaneous ssh connections with an agent that want key use confirmation. -- jrollins + +--- + +I can get cssh to work fine with a confirmation-required agent if i +turn off the monkeysphere proxycommand: + + cssh -l username -o '-oProxyCommand=none' $(cat hostlist.txt) + +with the proxycommand, i definitely get the "Connection timed out +during banner exchange" message. + +However, i'm also able to get the cssh connection to work if i assert +that a longer connection timeout is acceptable: + + cssh -l username -o '-oConnectTimeout=30' $(cat hostlist.txt) + +Perhaps this is an acceptable workaround? + +-- dkg