From dce0c7f88052c4371c8fc8ac956fec527123f117 Mon Sep 17 00:00:00 2001 From: Keith Winstein Date: Sat, 11 Aug 2012 19:55:38 -0400 Subject: [PATCH] Pass -o GSSAPITrustDns=no to improve (but not totally fix) Kerberos situation --- scripts/mosh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mosh b/scripts/mosh index 3b37048..c4c6b2f 100755 --- a/scripts/mosh +++ b/scripts/mosh @@ -233,7 +233,7 @@ if ( $pid == 0 ) { # child } my $quoted_self = shell_quote( $0 ); - exec "$ssh " . shell_quote( '-S', 'none', '-o', "ProxyCommand=$quoted_self --fake-proxy -- %h %p", '-t', $userhost, '--', "$server " . shell_quote( @server ) ); + exec "$ssh " . shell_quote( '-S', 'none', '-o', 'GSSAPITrustDns=no', '-o', "ProxyCommand=$quoted_self --fake-proxy -- %h %p", '-t', $userhost, '--', "$server " . shell_quote( @server ) ); die "Cannot exec ssh: $!\n"; } else { # server my ( $ip, $port, $key );