This is a discussion on ssh message within the Linux Security forums, part of the System Security and Security Related category; When i launch "ssh -vvv "xxxxx@111.111.111.111" i receive: ..... ..... key_type_from_name: unknown key type '-----BEGIN' ..... ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
On Sun, 27 Mar 2005 09:53:57 +0200, Giuseppe Anzalone
<anzalone@cs.unibo.it> wrote: >When i launch "ssh -vvv "xxxxx@111.111.111.111" i receive: > >.... >.... >key_type_from_name: unknown key type '-----BEGIN' >.... > >What is this message? Since nobody else has taken a shot at this yet, here's my guess: One end or the other has a bad entry in .ssh/known_hosts The other possibility would be a typo in the config file. -- buck |
|
|||
|
On Sun, 27 Mar 2005 19:31:21 -0800, buck thoughtfully wrote:
> On Sun, 27 Mar 2005 09:53:57 +0200, Giuseppe Anzalone > <anzalone@cs.unibo.it> wrote: > >>When i launch "ssh -vvv "xxxxx@111.111.111.111" i receive: >> >>.... >>.... >>key_type_from_name: unknown key type '-----BEGIN' .... >> >>What is this message? > > Since nobody else has taken a shot at this yet, here's my guess: > > One end or the other has a bad entry in .ssh/known_hosts > > The other possibility would be a typo in the config file. -- > buck I'm guessing no one answered because it's a standard message out of the debug indicating that ssh didn't recognize the type of key DSA/RSA supplied in ~/.ssh/authorized_keys, etc. Maybe ----BEGIN represents the beginning of the hashed private key? |
|
|||
|
noi wrote:
> On Sun, 27 Mar 2005 19:31:21 -0800, buck thoughtfully wrote: > >> On Sun, 27 Mar 2005 09:53:57 +0200, Giuseppe Anzalone >> <anzalone@cs.unibo.it> wrote: >> >>>When i launch "ssh -vvv "xxxxx@111.111.111.111" i receive: >>> >>>.... >>>.... >>>key_type_from_name: unknown key type '-----BEGIN' .... >>> >>>What is this message? >> >> Since nobody else has taken a shot at this yet, here's my guess: >> >> One end or the other has a bad entry in .ssh/known_hosts >> >> The other possibility would be a typo in the config file. -- >> buck > > I'm guessing no one answered because it's a standard message out of the > debug indicating that ssh didn't recognize the type of key DSA/RSA > supplied in ~/.ssh/authorized_keys, etc. But i create it in standard mode: ssh-keygen -t rsa //client cat id_rsa >> ~/.ssh/authorized_keys //server How i solve recognize problem? > Maybe ----BEGIN represents the > beginning of the hashed private key? No i verify. Thank you. |