in reply to Re: SFTP Issue
in thread SFTP Issue
the erroruse strict; use warnings; use Net::SFTP; my $host = '217.154.215.76'; my $remote = '/usr/lib/perl5/site_perl/5.8.8/Net/SFTP.pm'; my $local = '/path/to/Desktop'; my %args = ( user => 'username', password => '', debug => 1 ); my $sftp = Net::SFTP->new($host, %args); #$sftp->get($remote, [$local]);
In the sftp.pm code, line 62 it corresponds to login , will it not login with null password.
Prasanna
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: SFTP Issue
by Khen1950fx (Canon) on Jul 16, 2008 at 17:59 UTC | |
by prasanna14 (Initiate) on Jul 16, 2008 at 18:25 UTC | |
by Khen1950fx (Canon) on Jul 16, 2008 at 19:25 UTC | |
by prasanna14 (Initiate) on Jul 16, 2008 at 22:03 UTC | |
by prasanna14 (Initiate) on Jul 17, 2008 at 19:35 UTC |