Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
09-15-2008, 09:40 AM
|
#1
|
|
Member
Registered: Aug 2005
Posts: 158
Rep:
|
Net::Telnet with no prompt
Hi,
I am writing a Perl script which connects to a socket and sends some standard AT command. I created the script first using Socket::INET but soon realised that the socket wasnt a raw data socket but actually ran Telnet.
I therefore started using Net::Telnet but I am having some problems here. I think the problem is because the telnet session does not give me a prompt so Net::Telnet times out. I tried changing the Prompt option to /^$/, //, "", and anything I can think of but I still cant get it to work. Can someone provide me with a sample of how to get Net::Telnet to work without needing a prompt, just do it on a per line basis?
This is what a normal connection would look like.
Send: AT\n
Receive: OK\n
Send: AT+CGDCONT="IP","internet"\n
Receive: OK\n
Nothing complicated, just send one line, receive one, send another, receive another etc.
I think I need to set cmd_remove_mode to 1 as well as the device echoes back everything I send it.
In worst case I will have to go back to Socket::INET but I would perfer not to as I then have to ignore garbage I get back and ignore every second response which is my own echo etc.
Thanks in advance!
/ Fredrik
|
|
|
|
09-15-2008, 09:58 AM
|
#2
|
|
Member
Registered: Aug 2005
Posts: 158
Original Poster
Rep:
|
Code:
#!/usr/bin/perl
use Net::Telnet ();
$t = new Net::Telnet (
Timeout => 10,
Port => '170',
Cmd_remove_mode => '1'
);
$t->open("192.168.0.1");
$t->print("at");
$line = $t->getline(Errmode => 'return', Timeout => '2');
$line =~ 's/\n|\r//g';
if ($line =~ /OK/) { print "Got: $line\n"; }
$t->close;
I tried this code which works if I run Perl in the debugger but for some reason fails if I turn debugging of... Any idea why?
Last edited by Fredde87; 09-15-2008 at 10:23 AM.
|
|
|
|
09-15-2008, 07:07 PM
|
#3
|
|
Guru
Registered: Aug 2004
Location: Brisbane
Distribution: Centos 6.4, Centos 5.9
Posts: 14,973
|
1. tell us exactly what the fail symptoms are. Show example.
2. use warnings and strict
|
|
|
|
09-16-2008, 04:22 AM
|
#4
|
|
Member
Registered: Aug 2005
Posts: 158
Original Poster
Rep:
|
1. The symptoms are as follows, if I use the above code, then $line will be empty if I dont use the debugger (-d). If I do and step through the same code $line contains OK and the if statement matches and I get "Line: OK" printed to the screen.
Any other of the ~10 examples of Net::Telnet I have found on google gives me a "command timed-out at line X". The one I posted above I set errmode to return so that it would not die when it fails but then I get the symptoms I described above.
2. I tried adding warnings as you suggested and I then get these errors,
Use of uninitialized value in pattern match (m//) at ./fb4 line 16.
Use of uninitialized value in pattern match (m//) at ./fb4 line 17.
Adding strict and declaring my variables still gives same result.
Thanks!
|
|
|
|
09-16-2008, 07:33 PM
|
#5
|
|
Guru
Registered: Aug 2004
Location: Brisbane
Distribution: Centos 6.4, Centos 5.9
Posts: 14,973
|
According to this: http://search.cpan.org/~jrogers/Net-.../Net/Telnet.pm you should prob be using cmd() instead of print(). Also, looks like you're 'suffering from buffering', see this
Quote:
What To Know Before Using
* All output is flushed while all input is buffered. Each object contains its own input buffer.
...
|
http://perl.plover.com/FAQs/Buffering.html
Last edited by chrism01; 09-16-2008 at 07:34 PM.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 05:18 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|