in reply to Re^2: Net::SFTP::Foreign is slow
in thread Net::SFTP::Foreign is slow
Do as follows:
You will probably have to convert the private key from PuTTY to OpenSSH format and place the public key in the same directory with the .pub suffix.use Net::SFTP::Foreign 1.67; use Net::SFTP::Foreign::Backend::Net_SSH2 0.04; my $sftp = Net::SFTP::Foreign->new( host => 'delivery.myserver.com', port => '22', backend => 'Net_SSH2', user => 'ftp_user', key_path => "mytransaction.private +.key"); $sftp->die_on_error("Unable to establish SFTP connection");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Net::SFTP::Foreign is slow
by ssubrat77 (Novice) on Jul 13, 2011 at 05:01 UTC | |
by salva (Canon) on Jul 13, 2011 at 09:36 UTC | |
by syphilis (Archbishop) on Jul 13, 2011 at 11:11 UTC | |
by ssubrat77 (Novice) on Jul 13, 2011 at 15:12 UTC | |
by salva (Canon) on Jul 13, 2011 at 15:56 UTC | |
| |
|
Re^4: Net::SFTP::Foreign is slow
by ssubrat77 (Novice) on Jul 12, 2011 at 18:17 UTC | |
by syphilis (Archbishop) on Jul 12, 2011 at 23:26 UTC |