Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

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!

In reply to Re^5: SFTP connection failure with Perl “Net::SFTP” module by thanos1983
in thread SFTP connection failure with Perl “Net::SFTP” module by Michaels

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-18 19:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found