in reply to passphrase on a RSA key with net::ssh::perl
Double check @keyfile as it might be different.#!/usr/bin/perl use strict; use warnings; use Net::SSH::Perl; my $host = 'localhost'; my $user = 'user'; my @keyfile = ("/home/User/.ssh/id_rsa"); my $ssh = Net::SSH::Perl->new( $host, debug => 1, identity_files => \@keyfile );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: passphrase on a RSA key with net::ssh::perl
by manb (Novice) on Feb 06, 2011 at 13:37 UTC | |
by Anonymous Monk on Mar 22, 2016 at 12:42 UTC |