in reply to SFTP connection failure with Perl “Net::SFTP” module

Try

ssh_args => { user => $user, options => [ 'PasswordAuthentication no' ], identity_files => [ 'path/sftp_download'], port => $port, protocol =>'2,1', debug => 1, }
poj

Replies are listed 'Best First'.
Re^2: SFTP connection failure with Perl “Net::SFTP” module
by Michaels (Novice) on May 06, 2019 at 10:47 UTC
    Thank you very much !!! It solved the problem! I already tried to use 'PasswordAuthentication no' but differently. Thanks! Mike