http://qs321.pair.com?node_id=1012830


in reply to Re: Net::SCP::Expect RSA Fingerprint Problem
in thread Net::SCP::Expect RSA Fingerprint Problem

Even Net::SCP::Expect has this option. This is how you pass this:
my $scp_exp = Net::SCP::Expect->new( host => $host, user => $user, password => $pass, timeout => undef, auto_yes => 1, recursive => 1, option => 'StrictHostKeyCheck +ing=no' );
Thanks for the Great Help. This worked like a charm!!

Replies are listed 'Best First'.
Re^3: Net::SCP::Expect RSA Fingerprint Problem
by space_monk (Chaplain) on Jan 11, 2013 at 09:35 UTC
    I must admit I do like to see feedback from the original question poster indicating which solution to the problem actually worked for them. Thanks for updating us.
    A Monk aims to give answers to those who have none, and to learn from those who know more.
Re^3: Net::SCP::Expect RSA Fingerprint Problem
by Anonymous Monk on Jun 26, 2015 at 06:41 UTC
    How can I give the options 'StrictHostKeyChecking=no' and 'UserKnownHostsFile=/dev/null'? auto_yes => 1 is working only with option => 'StrictHostKeyChecking=no'.