summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-09-10 16:28:42 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-09-10 16:28:42 -0400
commitf82e2dec4b49461a017a14575c1dc6ab42e7d323 (patch)
treea762863b1acb068c6811629e79197ab69560eb2a /website
parentba5cdea511e46d1b6cfacfb9836b09c9eac56685 (diff)
added comment about ConnectTimeout option for cssh
Diffstat (limited to 'website')
-rw-r--r--website/bugs/monkeysphere-interferes-with-cssh.mdwn19
1 files changed, 19 insertions, 0 deletions
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