Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #39906

Re: telnet to Cognex In-Sight 4001 camera

X-Received by 10.66.86.133 with SMTP id p5mr1423380paz.23.1361821336309; Mon, 25 Feb 2013 11:42:16 -0800 (PST)
X-Received by 10.50.217.225 with SMTP id pb1mr1242287igc.5.1361821336265; Mon, 25 Feb 2013 11:42:16 -0800 (PST)
Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!su1no5824420pbb.0!news-out.google.com!ov8ni17399pbb.1!nntp.google.com!jn4no5332782pbb.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail
Newsgroups comp.lang.python
Date Mon, 25 Feb 2013 11:42:15 -0800 (PST)
In-Reply-To <mailman.2517.1361820275.2939.python-list@python.org>
Complaints-To groups-abuse@google.com
Injection-Info glegroupsg2000goo.googlegroups.com; posting-host=199.181.155.130; posting-account=NWckLgoAAAA_ESRKeclDK3J-ZCP6LE-U
NNTP-Posting-Host 199.181.155.130
References <mailman.2517.1361820275.2939.python-list@python.org>
User-Agent G2/1.0
MIME-Version 1.0
Message-ID <278f6415-eeae-4934-bef5-28f25edc3d5c@googlegroups.com> (permalink)
Subject Re: telnet to Cognex In-Sight 4001 camera
From chris.annin@gmail.com
Cc chris.annin@gmail.com, python-list@python.org, "square.steve" <square.steve@gmail.com>
Injection-Date Mon, 25 Feb 2013 19:42:16 +0000
Content-Type text/plain; charset=ISO-8859-1
Content-Transfer-Encoding quoted-printable
Xref csiph.com comp.lang.python:39906

Show key headers only | View raw


yes, ive connected successfully using hyperterminal after I login it asks for user and I type admin press enter then it ask for password and type password press enter and it all works fine. using python ive tried ending both with "\n" and "\r\n" im thoroughly confused   




On Monday, February 25, 2013 11:24:22 AM UTC-8, square.steve wrote:
> At the risk of stating the blindingly obvious, have you run a 'real' telnet session to see what  a successful conversation looks like? Might give you some useful pointers for your debug session.
> 
> 
> Steve
> 
> 
> 
> Sent from a Galaxy far, far away....  
> 
> 
> -------- Original message --------
> From: chris...@gmail.com 
> Date:  
> To: pytho...@python.org 
> Subject: telnet to Cognex In-Sight 4001 camera 
>  
> 
> Hello,  ive been struggling with this for a couple weeks now and was hoping someone might be able to help.  I have an older Cognex camera that I need to communicate with via telnet.  I can get a response from the camera when I initiate a telnet session but I dont seem to get any response when I write the user name to the camera -  I havnt been able to get any response writing anything. Im using python 2.7 and windows xp.  here is the code:
> [code]
> >>>import sys
> >>>import telnetlib
> >>>HOST = "10.31.18.21"
> >>>USER = "admin"
> >>>tn = telnetlib.Telnet(HOST)
> >>>tn.read_until("Login: ")
> "Welcome to In-Sight(R) 4001 Session 1\r\nUser:"
> >>>tn.write(USER + "\r\n")
> >>>tn.read_until("User: ")
> Traceback (most recent call last):
>   File "<stdin>", line 1, in <module>
>   File "C:\Python27\lib\telnetlib.py", line 319,
>     return self.read_very_lazy()
>   File "C:\Python27\lib\telnetlib.py", line 395,
>     raise EOFError, 'telnet connection closed'
> EOFError: telnet connection closed
> >>>
> [\code]
> 
> if i do a read_all instead of read_until for user I just get "..." returned.  Im assuming tn.write command isnt working?  any help would be greatly appreciated.
> 
> thank you
> 
> Chris
> -- 
> http://mail.python.org/mailman/listinfo/python-list

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: telnet to Cognex In-Sight 4001 camera "square.steve" <square.steve@gmail.com> - 2013-02-25 20:24 +0100
  Re: telnet to Cognex In-Sight 4001 camera chris.annin@gmail.com - 2013-02-25 11:42 -0800
  Re: telnet to Cognex In-Sight 4001 camera chris.annin@gmail.com - 2013-02-25 11:42 -0800

csiph-web