Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Im new to perl im still reading the "Beginning of perl" book, and im not familiar with eval ... i was riding about it and i think i get the point for something... for example

use Net::Telnet::Cisco; for ($i = 1; $i <= 254; $i++){ $device = "172.16.$i.251"; my $session = Net::Telnet::Cisco->new(Host => "$device", Input_log => "perllogrouter/router$i.log",); eval { $session->login('admin', 'admin') or die "Could not connect +to $device" };

in this part i understand that "for loop" make from 1 to 254 and ctr... the part of eval is execute this

{ $session->login('admin', 'admin') or die "Could not connect +to $device" };

and i guess this means if it's negative or not connected if ( $@ ){ # log here #; next } go to the next part ... and the next part is again "for loop". So my question is how can i go the for loop again ...


In reply to Re^2: Cisco Telnet by mvip
in thread Cisco Telnet by mvip

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-25 06:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found