in reply to SSH Permission Denied
add:use Net::SSH::Perl; my $ssh; $ssh = new Net::SSH::Perl("192.168.128.4"); $ssh->login("root"); ($x,$y,$z) = $ssh->cmd('pwd');
Also, you may want to change:Use warning; Use strict;
To:$ssh = new Net::SSH::Perl("192.168.128.4");
And, is this your entire code? Are all your permissions and passwords the same on each box you're testing?$ssh = Net::SSH::Perl-> new("192.168.128.4");
following "root"$ssh->login("root");
|
|---|