Net::Telnet in a foreach loop

H

HC

Hi all,

I wrote a script and I can nog get the errmode to work right but before I
start asking questions on the errmode problem I wanted to ask another
question first.

When doing a script using Net::Telnet to telnet to several hosts where would
the $obj = Net::Telnet->new( ) be placed in the foreach loop?

$obj = Net::Telnet->new( );
foreach $host (@hosts) {
$obj->open($host);
#do your login and cmd's here
}

OR

foreach $host (@hosts){
$obj = Net::Telnet->new( );
$obj->open($host);
#do loging and cmd's here
}

I asume that using the wrong method might be a reason for the errmode not to
work right. I am using the first method described right now...

Thanks for the help.

HC
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top