I'll give you a basic example that expands a bit on what Illuminatus said about try one and then the other.
# in pseudocode no less!
get $deviceIP
ping $deviceIP or report it as not responding and exit
ssh $deviceIP
if ssh error then
if ssh error is 'connection refused'
then
telnet $deviceIP or report error and exit
do work with telnet connection
else
report error and exit
end if
end if
do work with ssh connection
If you already know which devices use telnet and which use ssh then things get even simpler. Just try the correct protocol!
Update: Oops. I forgot the most important part.
You will not get any good responses until you can give us some clear information regarding your problem and code that demonstrates said problem.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|