in reply to Re: Net::SFTP using ssh_args woes
in thread Net::SFTP using ssh_args woes
Thanks for your suggestion, neuroball. After reading the POD for the umpteenth time, I noticed that I shouldn't use the "ssh_args" specifically. This code (see below) works great :)
my %ssh_options = (options => "StrictHostKeyChecking no"); my %login = (user => $user, password => $pass, debug => 1, \%ssh_options );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Net::SFTP using ssh_args woes
by ysth (Canon) on Jan 11, 2004 at 05:55 UTC | |
by b10m (Vicar) on Jan 11, 2004 at 15:07 UTC |