I'm trying to write a fairly simple script that will ssh to a remote host, run a command and capture the output. Now the basics are fairly easy but what I need a little help with is the connection phase.
The plan for connection is
1) Use ssh keys in memory (ssh-agent)
2) Use my account with known password
3) Use known local account with known password.
4) Use root with my keys
5) Use root with known password from a list
6) Give up and report error.
The idea is that it will use the first connection it can make.
Now I can trap the $ssh->login with eval{} and that's fine.
Question : how do I chain eval's or whatever mechanism to accomplish this without the program falling over.
use Net::SSH::Perl;
while (my $server = <read from file>) {
chomp $server;
print $server;
my $ssh = SSHConnect($server);
...
}
sub SSHConnect {
my $server = shift;
my $ssh = Net::SSH::Perl->new($server,protocol=>'2,1');
eval {
$ssh->login();
};
if ($@) {
warn "Some error message about $server";
};
return $ssh;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.