in reply to Re^3: SFTP connection failure with Perl “Net::SFTP” module
in thread SFTP connection failure with Perl “Net::SFTP” module
my %args = ( user => "$user", port => "$port", key_path => 'path/sftp_download', ssh_args => { user => "$user", identity_files => [ 'path/sftp_download'], port => "$port", protocol=>'2,1', debug => 1, } ); my $sftp=Net::SFTP->new($server, %args) or die "could not open connect +ion to $server\n";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: SFTP connection failure with Perl “Net::SFTP” module
by thanos1983 (Parson) on May 06, 2019 at 09:42 UTC |