Help for this page

Select Code to Download


  1. or download this
    my %ssh_options = (
      StrictHostKeyChecking => "no"
    ...
    ); 
    
    my $sftp = Net::SFTP->new($host, %args)
    
  2. or download this
    my %args = (
      username  => $user,
    ...
      debug     => 1,
      ssh_args  => (options => { StrictHostKeyChecking => "no"} )
     );