in reply to Re: Issue with Net::telnet
in thread Issue with Net::telnet

Tried following: $conn->waitfor(Match=>'/...>/',Timeout=>100); or $conn->waitfor(Match=>'/...>\r/',Timeout=>100); or $conn->waitfor(Match=>'/...>\r\n/',Timeout=>100); or $conn->waitfor(Match=>'/...>\n/',Timeout=>100); (or setting prompt) but am getting: pattern match read eof at /usr/lib/perl5/site_perl/5.10.0/TeamFuel/tan +kpoll.pl line 211 $conn->input_record_separator; did not help :-(

Replies are listed 'Best First'.
Re^3: Issue with Net::telnet
by yarex (Initiate) on Feb 12, 2015 at 17:12 UTC
    My problem is solved. I used Expect module to do the job and that worked flawlessly.