Tagged Questions
0
votes
2answers
84 views
Perl telnet command not sending every command
I have the following program below which telnets into another device and prints serial number and Mac address.
My problem is that for some reason if I send the command once it skips the first ...
0
votes
3answers
491 views
how to run command on telnet command prompt in perl script
i am executing telnet command in perl script as below.
$telnetOutput = `telnet localhost 4505`;
print "\n telnet command output: $telnetOutput \n";
$clients = `clients`;
print"\n $clients\n";
...
0
votes
2answers
434 views
Perl telnet does not wait for the end of the previous command
Perl telnet does not wait for the end of the previous command. In the file infile.log I see the continuation of the command my @ config = $ telnet-> cmd ("sh run");, but the script is already ...
0
votes
1answer
159 views
perl telnet - how to handle multiple pages of output
I'm writing a script for saving the switch configuration via save the output "show run" because in firmware has problems with working through tftp.
The output of "show run" is divided by posts "More: ...
0
votes
1answer
61 views
Couldn't retrieve all the memcache keys via telnet client
I want to list all the keys stored in the memcached server.
I googled for the same, I got some python/php scripts that can list the same. I tested it but all went failed and none gave me full keys. I ...
3
votes
0answers
231 views
Perl Net::Telnet timing out on large command output
I'm writing a program that use Net::Telnet, but when i try to use $tel->cmd in line 41, a error occurs.
command timed-out at CoyoteBridge4000.pl line 41
The comand is valid, but the output is ...
1
vote
2answers
73 views
Perl How to exit from child script which does a telnet?
I have a script which executes few commands and then telnets to machine. Now I need to call this script from another perl script.
$result = `some_script.pl`;
The script some_script.pl executes ...
1
vote
1answer
99 views
Perl Net::Telnet waitfor() hex charectors
So I'm writing a script using Net::Telnet in perl... I want to waitfor() and match the hex charectors 01 (Ctrl+A) and 03 (Ctrl+C) as well as everything in between
how does on accomplish such a feat?
0
votes
0answers
26 views
Telnet Special Charectors
I'm attempting to use a news wire like service that still uses Telnet... basically i telnet in and it streams different wire reports to me. I'm trying to figure out of there is a special chars ...
1
vote
1answer
73 views
Greping an array obtained through NET:TELNET
I'm writing a Munin-Pluging and I like to capture the screen output from a telnet session.
The output of such a session looks as follows:
...
0x00017 0x41b3f340 BPING 0 ...
2
votes
1answer
256 views
Perl windows telnet session end
I have written Perl script to automate my work using telnet to connect to windows and start server.
#!/usr/bin/perl -w
use Net::Telnet;
$telnet = new Net::Telnet ( Timeout=>30, ...
1
vote
2answers
824 views
Run a perl script on remote machine from local machine using Telnet or SSH with Perl
i want to run a Perl script in a remote machine using telnet or ssh. the script is on my local host.how can do this. can anyone please help me on this?
5
votes
3answers
1k views
Checking if an SSH tunnel is up and running
I have a perl script which, when destilled a bit, looks like this:
my $randport = int(10000 + rand(1000)); # Random port as other scripts like this run at the same time
my $localip = ...
0
votes
2answers
341 views
telnet automation script fails sometimes
I am running following simple telnet script which just logs into a machine and exits.
Same script works fine (goes through 1000 iterations) from one linux server but fails (consistently) from another ...
0
votes
0answers
487 views
Net::Telnet using getline() or getlines() not getting all lines
If I telnet using my terminal window to the device and enter show which prints config it prints certain number of lines and -- more -- in the bottom, you can press Return or Space on the keyboard a ...
0
votes
1answer
180 views
executing win32ole script on remote windows machine through telnet
I am trying to create a word document on a remote windows machine. What I am trying is to telnet to the remote windows machine and run a perl script that creates word document through Win32::OLE. But ...
0
votes
1answer
414 views
Net::Telnet output of cmd timed-out
I tried to build a little telnet script to gain contact with the Net::Telnet module in Perl and I struggle with a command timeout when I try to receive the output.
$telnet = new Net::Telnet ( ...
1
vote
1answer
510 views
“pattern match read eof” error for telnet connection using Perl
I am trying to open a telnet connection, execute some command, and terminate the connection. I need it to run around 1000 times. The script runs fine for some number of attempts [ say around 23 - 25 ...
1
vote
1answer
346 views
Perl telnet login
$remote->waitfor('/Logoff/');
I get error sometimes saying that pattern match timed out when server is unavailable. I want to handle this error. Whenever this error occurs i want to make my script ...
1
vote
0answers
303 views
perl Net::Telnet basics
As mentioned in the cpan documentation of Net::Telnet:
All output is flushed while all input is buffered. Each object contains its own input buffer.
Talking crudely, is it so that the command that ...
0
votes
1answer
296 views
Net::Telnet::Cisco to router from different source address
I have a server with eth0 and eth1.
eth0 = 10.0.0.10
eth1 = 10.10.0.10
Now if I do the following, telnet uses the IP address from eth0.
$device_object = Net::Telnet::Cisco->new( Host => ...
3
votes
1answer
646 views
Telnet input buffer issues I think in perl
So for the past month I've been working on a script to do master clears on an HP procurve switch. I've talked with internal HP people and they're using a totally different system than I am so they ...
5
votes
3answers
810 views
How to implement a command history on a telnet client? (up/down arrows)
I have a server that accept telnet connections for management. I miss the command history so I want to make my telnet session support it. My questions:
1) Do I have to implement that on the server ...
0
votes
2answers
785 views
Need help getting output from Telnet to array in Perl
First I want to apologize for such a silly question but I'm quite new to scripting.
What I'm attempting to do:
At my office, I'm attempting to automate the ability to factory reset switches. Its ...
3
votes
2answers
608 views
replacing telnet with ssh
I have some programs that use the Net::Telnet module to connect to several servers. Now the administrators have decided to replace the Telnet service for SSH, keeping everything else like before (for ...
0
votes
1answer
471 views
how to send command to telnet which is running on non standard port in perl
I have one daemon process written in perl which listens custom commands on port 8622.
Now I want to write a client program which can call daemon process using telnet command. client program must grab ...
0
votes
1answer
229 views
Perl Module Telnet: Problem with Cd (changing directory)
I am trying to use the Net::Telnet module to set up testing automation. My test relies on the changing directories and executing test.
This is the code
use warnings;
use strict;
use Net::Telnet;
...
0
votes
2answers
217 views
Perl Net::Telnet Module
I am trying to write a perl module that uses the Net::Telnet code, but the problem is the prompt. I am writing the application for other user and not sure of what the prompt pattern they might have. ...
1
vote
1answer
2k views
Trouble using Telnet in perl?
I'm having some trouble send commands and receiving text/data from the telnet connection that I set up.
#!perl
#Telnet.pl
use Net::Telnet;
# Create a new instance of Net::Telnet,
my $telnetCon ...
0
votes
1answer
130 views
talking to a nested telnet connection perl
I've the following requirement:
1) telnet to machine x on telnet port.
2) once you are in machine x, telnet to machine y on a different port.
3) now issue the commands to machine y and get the output.
...
2
votes
3answers
560 views
How do I pass a Tcl data structure to Perl with Telnet in between?
I want to telnet into a Cisco router, login and execute a Tcl script that is locally stored in the router's flash. This Tcl script does some processing and should return a nested hash (preferred) or a ...
2
votes
2answers
737 views
Perl SSH connection to execute telnet
I tried the following to access a router via a central admin server as "ssh hop" server
#!/usr/bin/perl -X
use strict;
use Net::OpenSSH;
use Net::Telnet;
my $lhost = "linuxserver";
my $luser = ...
1
vote
1answer
951 views
Perl ssh connection and execute telnet connection
I have multiple cisco routers configured with telnet access allowed from 5 specified hosts. Now I want to execute a perl script on one host which connects via ssh to the other hosts and checks if ...
0
votes
2answers
304 views
How to do remote execution in standard perl 5.10.0
I want to run some commands via a remote program. I've tried it using following code.
my $promt = '/bash\$ $/';
use Net::Telnet ();
$conn = new Net::Telnet (Timeout => 10, Prompt => ...
1
vote
1answer
219 views
Missing data when reading data over telnet in Perl
I am trying to read and write data to multiple device(more than 30) over network as part of a test. I have a Perl script which does all the read and write over telnet for a single device. I am taking ...
0
votes
2answers
903 views
Perl Telnet Session Handler
I have an application that makes connections to various equipment in our network on demand, performs several commands, parses the output and reports back to the user via AJAX/JSON/Perl. In Perl, I am ...
0
votes
1answer
829 views
perl Net::Telnet wait_for a middle character, while the “print” action still buffering data
I'm using perl with the Net::Telnet module.
My problem is while sending a command that has an output of 1000 rows, the "wait_for" looks for a string in the middle.
The wait_for stops but the buffer ...
1
vote
1answer
1k views
perl Net::Telnet module with telnet shell with no prompt character
The telnet host I am using does not have a prompt character, (it just goes into a blank newline when it is done), how then, should I use the Net::Telnet perl module?
I tried setting prompt to // '' ...
1
vote
2answers
172 views
telnet inline with perl?
Is there a way to allow perl to initiate a telnet session and programmatically issue commands to that telnet session?
I initially tried a stupid method:
commands.pl:
sleep(1);
print $command1;
...
0
votes
5answers
139 views
modify a datastream on the fly
I need to hijack and modify a datastream. The stream consists of fixed-width commands. Each command is a new line, and the documentation says that each command starts and ends with an STX/ETX pair ...
1
vote
1answer
282 views
Perl Is it possible to re-create the Net::Telnet connection if I have its memory location?
Is it possible to re-create the Net::Telnet connection if I have its memory location ?
how can i turn Net::Telnet=GLOB(0x1b50ff0) string to a Net::Telnet object again ?
Thanks.
0
votes
2answers
2k views
Why does my Net::Telnet program timeout?
I'm written small code to connect to remote server using Perl but observing error messages
#!/usr/bin/perl -w
use Net::Telnet;
$telnet = new Net::Telnet ( Timeout=>60, Errmode=>'die');
...
2
votes
2answers
1k views
How do I send an arrow key in Perl using the Net::Telnet module?
Using the Perl module Net::Telnet, how do you send an arrow key to a telnet session so that it would be the same thing as a user pressing the down key on the keyboard?
use Net::Telnet;
my $t = new ...
5
votes
4answers
4k views
How can I fix “unknown terminal type” when connecting with Perl's Net::Telnet?
I got a problem connecting to a SUSE linux machine by Perl's Net::Telnet module.
The code looks like below:
my $t = new Net::Telnet (Timeout => 20);
$t->open($server);
...
7
votes
6answers
2k views
How can I screen-scrape output from telnet in Perl?
I can setup a telnet connection in Perl no problems, and have just discovered Curses, and am wondering if I can use the two together to scrape the output from the telnet session.
I can view on a row, ...
-1
votes
1answer
1k views
How can I debug my Perl Net::Telnet program?
I am trying to automate telnet to a Linux box which doesn't require any authentication through Net::Telnet Perl module. Here is a test script:
use strict;
use Net::Telnet;
my $telnet = new ...
0
votes
7answers
1k views
Why can't Perl launch telnet under Windows?
I had enabled telnet client feature on Windows 2008, and tried to launch it from a Perl script:
perl -e "system('c:\windows\system32\telnet localhost')"
Then I got an error like this:
...
-2
votes
2answers
616 views
How do I send a TAB using Perl's Net::Telnet?
I am using Perl's Net::Telnet module to access an application available over telnet.
I am using $telnet->waitfor() and $telnet->print() methods to determine the form received and submit ...



