in reply to Net::SSH::Perl problems with $ssh->login and $ssh->cmd - function
You want to use a CBC cipher with your Net::SSH::Perl object. Change your constructor to:
my $ssh = Net::SSH::Perl->new($host, cipher => '3des-cbc' || 'blowfish-cbc', );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Net::SSH::Perl problems with $ssh->login and $ssh->cmd - function
by polyp (Initiate) on Jun 25, 2003 at 13:36 UTC |