in reply to Re^5: Usage of key authentication with Net::SSH::Any
in thread Usage of key authentication with Net::SSH::Any

Yes, that's what I did.
Here is the order of what I did:
1) Generate keys using PuttyKeygen
2) Putty worked, Perl failed
3) Converting keys in OpenSSH format using PuttyKeygen
4) Putty worked, Perl failed
5) Generate keys using Bitvise (choosing OpenSSH format)
5) Bitvise worked, Perl failed
  • Comment on Re^6: Usage of key authentication with Net::SSH::Any

Replies are listed 'Best First'.
Re^7: Usage of key authentication with Net::SSH::Any
by salva (Canon) on Dec 12, 2013 at 13:13 UTC
    Try enabling Net::SSH::Any debugging.
    $Net::SSH::Any::debug = -1;

    Also, try using Net::SSH2 directly in order to discard the case where it is a bug on Net::SSH::Any.