Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Using Net::Telnet

by pc88mxer (Vicar)
on Mar 05, 2008 at 18:32 UTC ( [id://672242]=note: print w/replies, xml ) Need Help??


in reply to Using Net::Telnet

It is possible that the trailing newline is the culprit. Note that when you use
$NT->cmd("1\n");

you will be sending two newlines - the one you specified in the argument to cmd and one that Net::Telnet will add to the end of each command line.

You can try using the put method or setting the output_record_separator to the empty string.

Replies are listed 'Best First'.
Re^2: Using Net::Telnet
by Tanktalus (Canon) on Mar 06, 2008 at 17:51 UTC

    Since TStanley wasn't using double-quotes, but single-quotes, what was actually being sent by cmd was "1\\n\n", or, literally, 1\n followed by a line-terminator. The other end would compare that against "1", "2", and "3", find it didn't match any, and try again.

    Changing it to double quote as you said would send two newlines, which I doubt the other end would play nice with. I think the solution is to just use $NT->cmd(1), but I've not tested that.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://672242]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-24 07:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found