Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 06 Mar 2004 00:58:24 -0600
From:      Jon Noack <noackjr@alumni.rice.edu>
To:        =?ISO-8859-1?Q?Dag-Erling_Sm=F8rgrav?= <des@des.no>
Cc:        freebsd-current@freebsd.org
Subject:   Re: Breakage in X11 over ssh tunnel
Message-ID:  <40497690.4060707@alumni.rice.edu>
In-Reply-To: <404908A7.4080300@alumni.rice.edu>
References:  <c23gu9$1fm4$1@kemoauc.mips.inka.de> <20040303225951.6647E5D07@ptavv.es.net> <20040304162258.C1E5043D49@mx1.FreeBSD.org>	<xzpoerbk2gi.fsf@dwp.des.no> <20040305133500.79C559B54F@dsa.des.no>	<xzpllmfic0r.fsf@dwp.des.no> <20040305173113.1BC7A9B54F@dsa.des.no>	<xzpsmgngp7u.fsf@dwp.des.no> <40490087.7060108@alumni.rice.edu> <xzpfzcmuddw.fsf@dwp.des.no> <404908A7.4080300@alumni.rice.edu>

index | next in thread | previous in thread | raw e-mail

On 3/5/2004 5:09 PM, Jon Noack wrote:
> On 3/5/2004 4:39 PM, Dag-Erling Smørgrav wrote:
>> Jon Noack <noackjr@alumni.rice.edu> writes:
>>> I just downloaded the latest non-commercial version from ssh.com.  It 
>>> looks like keyboard-interactive is not available at all.
>>
>> I'm pretty sure it's supported, have you checked the docs?
> 
> OK -- it worked using the GUI version.  However, it is not obvious to me 
> how to get the command-line version to work with keyboard-interactive. I 
> tried to create a profile in the GUI and use it with the command-line 
> (using the '-F' option), but it didn't recognize a lot of stuff from the 
> profile.  The '-o' option didn't recognize anything I tried.

Got it working in command-line.  The docs say keyboard-interactive is 
included in the default AllowedAuthentications, but they are wrong.

<rant>
Punctuation in documentation should be *EXACTLY* the same as the program 
accepts.  DON'T PUT SOMETHING IN SINGLE QUOTES IF YOU CAN'T USE THEM!!!
</rant>

C:\>ssh2 -h
<snip>
-o 'option'    Process the option as if it was read from a configuration
                file.
<snip>

C:\>ssh2 -v -o 
'AllowedAuthentications=publickey,keyboard-interactive,password' 
noackjr@example.org
<snip>
warning: Unrecognized configuration parameter ''AllowedAuthentications'.
ssh2: FATAL: Illegal -o parameter 
"'AllowedAuthentications=publickey,keyboard-interactive,password'"

C:\>ssh2 -v -o 
AllowedAuthentications=publickey,keyboard-interactive,password 
noackjr@example.org
<snip>
debug: client supports 3 auth methods: 
'publickey,keyboard-interactive,password'
<snip>
debug: Ssh2AuthKbdInteractiveClient: Starting kbd-int auth...
Keyboard-interactive:
Password:
<snip>
debug: Ssh2AuthKbdInteractiveClient: Sending response packet.
Keyboard-interactive:
debug: Ssh2AuthKbdInteractiveClient: Sending response packet.
debug: Ssh2Common: Received SSH_CROSS_AUTHENTICATED packet from 
connection protocol.
Authentication successful.
<successful login>

Jon Noack


help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?40497690.4060707>