I have a very simple script that works just fine on one host but I get a "permssion denied" when I run it on another. The code is:
#!/usr//local/bin/perl
use warnings;
use strict;
use English;
use Net::SSH::Perl;
use Log::Log4perl qw(get_logger);
my $conf = q(
log4perl.rootLogger=INFO, Logfile, Screen
log4perl.appender.Logfile = Log::Log4perl::Appender::File
log4perl.appender.Logfile.filename = ./removeTempRetry.log
log4perl.appender.Logfile.layout = Log::Log4perl::Layout::PatternLayout
log4perl.appender.Logfile.layout.ConversionPattern = [%H] %d %m %n
log4perl.appender.Screen = Log::Log4perl::Appender::Screen
log4perl.appender.Screen.stderr = 1
log4perl.appender.Screen.layout = Log::Log4perl::Layout::SimpleLayout
);
Log::Log4perl::init(\$conf);
our $LOGGER = get_logger();
my $host = "somehost";
my $user = "someuser";
my $ssh = Net::SSH::Perl->new($host, identity_files => ['~/.ssh/BF1_dp_id_dsa'], debug => 1);
$ssh->login($user);
The output from the debug statement is:
host: Reading configuration data ~/.ssh/config
host: Reading configuration data /etc/ssh_config
host: Connecting to somehost, port 22.
host: Remote protocol version 2.0, remote software version OpenSSH_4.3
host: Net::SSH::Perl Version 1.34, protocol version 2.0.
host: No compat match: OpenSSH_4.3.
host: Connection established.
host: Sent key-exchange init (KEXINIT), wait response.
host: Algorithms, c->s: 3des-cbc hmac-sha1 none
host: Algorithms, s->c: 3des-cbc hmac-sha1 none
host: Entering Diffie-Hellman Group 1 key exchange.
host: Sent DH public key, waiting for reply.
host: Received host key, type 'ssh-dss'.
host: Host 'somehost' is known and matches the host key.
host: Computing shared secret key.
host: Verifying server signature.
host: Waiting for NEWKEYS message.
host: Send NEWKEYS.
host: Enabling encryption/MAC/compression.
host: Sending request for user-authentication service.
host: Service accepted: ssh-userauth.
host: Trying empty user-authentication request.
host: Authentication methods that can continue: publickey,gssapi-with-mic,password.
host: Next method to try is publickey.
host: Next method to try is password.
host: Trying password authentication.
host: Will not query passphrase in batch mode.
host: Authentication methods that can continue: publickey,gssapi-with-mic,password.
host: Next method to try is publickey.
host: Next method to try is password.
host: Trying password authentication.
host: Will not query passphrase in batch mode.
host: Authentication methods that can continue: publickey,gssapi-with-mic,password.
host: Next method to try is publickey.
host: Next method to try is password.
host: Trying password authentication.
host: Will not query passphrase in batch mode.
host: Authentication methods that can continue: publickey,gssapi-with-mic,password.
host: Next method to try is publickey.
host: Next method to try is password.
Permission denied at ./removeTempRetry.pl line 26
I can ssh using the identity file and username that's in the code from that host on the command line with no problem. And the exact same code works just fine from another host and I've used similar code before without problems. I'm sure I'm overlooking something obvious.
TIA