in reply to Problem in usage of waitfor in Telnet module

Hello, I'm pretty new here too ;)
I don't know exactly what your trying to match on line 6
$telnet->waitfor('/ Continue $/i') or die "Can't find enter to continu +e", $telnet->lastline;
Supply me with a string to match that line with.
If the execution of your telnet program (wizard or what it is) is slow, telnet socket may timeout. The default timeout is only 10seconds so you know. You can change it on the fly. Like this:
$telnet->timeout(30); # for a 30 second timeout $telnet->waitfor('/ Continue $/i'); $telnet->timeout(10); # reset timeout to 10 second
Don't know if it helps. Or supply me with more info.
Good luck