Yes, it's right at line 24 where it times out.
$telnet->waitfor('/$device# /i'); ##wait for prompt
From the output I can see it authenticate, but once I get to the prompt it times out. My output file looks something like this:
username: xxxx
password: zzzz
yyyy#
Now if I remove $device and just enter a specific name followed by the prompt(#), it prints out exactly what I want. It's just when I try to use a variable I run into this problem.
$telnet->waitfor('/yyyy# /i'); ##wait for prompt
This works. Maybe it has something to do with the prompt? I removed "." from the line and it still times out. |