Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^5: SFTP connection failure with Perl “Net::SFTP” module

by thanos1983 (Parson)
on May 06, 2019 at 09:42 UTC ( [id://1233386]=note: print w/replies, xml ) Need Help??


in reply to Re^4: SFTP connection failure with Perl “Net::SFTP” module
in thread SFTP connection failure with Perl “Net::SFTP” module

Hello Michaels,

The option key_path is from module Net::SFTP::Foreign not from Net::SFTP.

Can you try this:

#!usr/bin/perl use strict; use warnings; use Net::SFTP::Foreign; my %args = ( host => "127.0.0.1", user => "user", port => "10022", key_path => "path/sftp_download" ); my $sftp = Net::SFTP::Foreign->new(%args); $sftp->die_on_error("Unable to establish SFTP connection"); my $ls = $sftp->ls('/sample/path') or die "unable to retrieve directory: ".$sftp->error; print "$_->{filename}\n" for (@$ls);

I would use full path to the SSH keys of your PC. For example /home/user/.ssh/id_rsa. It seems that from the directory that you are executing the script the keys are not reachable.

Update: You are using path/sftp_download as the location of you SSH keys. This is the location that you want to store the file I assume. First step is to correctly assign the SSH keys file. Use key_path => "/home/user/.ssh/id_rsa" on the code above and let us know if this works.

Hope this helps, BR

Seeking for Perl wisdom...on the process of learning...not there...yet!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1233386]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2024-04-25 23:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found