Hi,
I have installed SuSE 8.2, perl-Net-SSH-Perl-1.23, String-CRC32-1.2.
I am trying to make an SSH connection to a remote SuSe 8.2 computer.
And the perl skript is where i am having the problem. Trying to use it
produces the following error:
"selected cipher type DES not supported by server."

I tried 3DES as well, same error.
This is what i used:

# !/usr/bin/perl
use Net::SSH::Perl;

$host="host";
$passwd="passwd";
$user="user";

my $ssh=Met::SSH::Perl->new($host);
my $ssh=Net::SSH::Perl->new($host,cipher=>'DES');
$ssh->login($user,$passwd);
$ssh->cmd("who");

When i use >ssh -c des -l user ip_add from the command prompt the connection
to the other Linux boxes works perfect. So i dont understand where the error
is.
I hope someone has a clue or can point me to a link where i can get further
help.

Thanks for any replies
-bb


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to