in reply to Re: Net::Telnet - cant detect Passcode prompt?
in thread Net::Telnet - cant detect Passcode prompt?

Thanks for that. I somehow missed that it would only accept 'password'. I was able to use this code to get around this:
$telnet->waitfor('/:/'); $telnet->print($username); $telnet->waitfor('/:/'); $telnet->cmd($password);