in reply to Re: Help: Net::Telnet::Cisco
in thread Help: Net::Telnet::Cisco

I was facing the similar problem. I solved this by sending a wakeup with "\r" character and it worked for me.
I would like you to check following code
my $session = Net::Telnet::Cisco->new (Host=>$ipaddr,Port=>$port,Timeo +ut=>20); $session->print("\r"); # required to wakeup. $session->print("\r")

Replies are listed 'Best First'.
Re^3: Help: Net::Telnet::Cisco
by Anonymous Monk on Jul 28, 2010 at 15:19 UTC
    The "print("\r") doesn't work going through a cisco 2600 router as a terminal server.