SSH'ing between Sol 8 -> Sol 10 hosts

  • Follow


Hi,
I have two hosts - Solaris 8 host running SSH v1.2.30 trying to connect
to a Solaris 10 (build 72) host running the stock std version of SSH.
When i attempt to connect to the Solaris 10 host i get the following
error even after I've unhashed the "Protocol 2,1" line in the
/etc/ssh/sshd_config and restarted sshd.

<Solaris 8 host># ssh -v <solaris 10 host>
SSH Version 1.2.30, protocol version 1.5.
Standard version.  Does not use RSAREF.
tlons200: Reading configuration data /etc/ssh_config
tlons200: ssh_connect: getuid 0 geteuid 0 anon 0
tlons200: Connecting to test [10.192.248.100] port 22.
tlons200: Allocated local port 1022.
tlons200: Connection established.
tlons200: Remote protocol version 2.0, remote software version
Sun_SSH_1.1
tlons200: Waiting for server public key.
Local: Bad packet length 1349676916.
Any idea's why?

Thanks in advance for any responses.

0
Reply jrt409 (10) 1/12/2005 11:34:27 AM

i would say upgrade you solaris 8 ssh version to the latest.

"jrt409" <jrt409@yahoo.com> wrote in message 
news:1105524876.765566.167120@c13g2000cwb.googlegroups.com...
> Hi,
> I have two hosts - Solaris 8 host running SSH v1.2.30 trying to connect
> to a Solaris 10 (build 72) host running the stock std version of SSH.
> When i attempt to connect to the Solaris 10 host i get the following
> error even after I've unhashed the "Protocol 2,1" line in the
> /etc/ssh/sshd_config and restarted sshd.
>
> <Solaris 8 host># ssh -v <solaris 10 host>
> SSH Version 1.2.30, protocol version 1.5.
> Standard version.  Does not use RSAREF.
> tlons200: Reading configuration data /etc/ssh_config
> tlons200: ssh_connect: getuid 0 geteuid 0 anon 0
> tlons200: Connecting to test [10.192.248.100] port 22.
> tlons200: Allocated local port 1022.
> tlons200: Connection established.
> tlons200: Remote protocol version 2.0, remote software version
> Sun_SSH_1.1
> tlons200: Waiting for server public key.
> Local: Bad packet length 1349676916.
> Any idea's why?
>
> Thanks in advance for any responses.
> 


0
Reply RRSECURITYTEAM 1/18/2005 5:36:33 PM


In article <1105524876.765566.167120@c13g2000cwb.googlegroups.com>,
jrt409 <jrt409@yahoo.com> wrote:
>Hi,
>I have two hosts - Solaris 8 host running SSH v1.2.30 trying to connect
>to a Solaris 10 (build 72) host running the stock std version of SSH.
>When i attempt to connect to the Solaris 10 host i get the following
>error even after I've unhashed the "Protocol 2,1" line in the
>/etc/ssh/sshd_config and restarted sshd.

Yes, you will also need to regenerate you host keys in a supported format 
that will work with ssh1/ssh2.

I do like this (solaris 9) in a jumpstart script:

echo "Solaris ssh v1 +fix"
/etc/init.d/sshd stop
rm /etc/ssh/ssh_host_rsa_key
ssh-keygen -t rsa1 -f /etc/ssh/ssh_host_rsa_key -P ''
/etc/init.d/sshd start


>Any idea's why?

See above

>Thanks in advance for any responses.

Regards
Fredrik



-- 
Fredrik Lundholm   
dol @ ce.chalmers.se
				 
0
Reply dol 1/18/2005 11:29:57 PM

Thanks Fredrik...that did the trick!

0
Reply jrt409 1/24/2005 2:03:57 PM

3 Replies
222 Views

(page loaded in 0.053 seconds)

Similiar Articles:








7/28/2012 9:34:58 AM


Reply: