Re: [Tutor] Basic telnet question solved

2016-09-25 Thread David Rock
> On Sep 24, 2016, at 18:59, Phil wrote: > > On 25/09/16 07:17, David Rock wrote: >> header = tn.read_until("character is '^]’.”, timeout=5) >> print(header) > > Thank you David, read_until() led me to a result. It seems that the telnetlib > doesn't emulate the console telnet command exactly,

Re: [Tutor] Basic telnet question solved

2016-09-24 Thread Phil
On 25/09/16 07:17, David Rock wrote: header = tn.read_until("character is '^]’.”, timeout=5) print(header) Thank you David, read_until() led me to a result. It seems that the telnetlib doesn't emulate the console telnet command exactly, so I didn't get the connection response that I had expec