Disable kerberos-based authentication for ssh; it seems there are some
performance issues with this and it doesn't generally seem to be
used for Autotest, so just turn it off.
Risk: High (it technically breaks stuff)
Visibility: No more kerberos for Autotest ssh.
Signed-off-by: John Admanski <[email protected]>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@2323 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/server/hosts/abstract_ssh.py b/server/hosts/abstract_ssh.py
index bbbbab2..9fccf44 100644
--- a/server/hosts/abstract_ssh.py
+++ b/server/hosts/abstract_ssh.py
@@ -6,8 +6,8 @@
def make_ssh_command(user="root", port=22, opts='', connect_timeout=30):
base_command = ("/usr/bin/ssh -a -x %s -o BatchMode=yes "
- "-o ConnectTimeout=%d "
- "-o ServerAliveInterval=300 "
+ "-o ConnectTimeout=%d -o ServerAliveInterval=300 "
+ "-o GSSAPIAuthentication=no -o GSSAPIKeyExchange=no "
"-l %s -p %d")
assert isinstance(connect_timeout, (int, long))
assert connect_timeout > 0 # can't disable the timeout