Telnet is an old protocol for bidirectional interactive text-oriented communication with remote hosts via virtual termianls. It is defined in rfc854. On modern UNIX-like systems it is replaced with more secure and flexible SSH protocol.

learn more… | top users | synonyms

1
vote
1answer
911 views

python3 telnet socket.gaierror: [Errno 8] nodename nor servname provided, or not known

I'm trying telnet to routers based on ip addresses from hosts.txt file via python3 script. However I receive the following error: $ ./telnet_group_1.py 10.1.1.1 Traceback (most recent call ...
0
votes
1answer
70 views

equivalent HTTP queries get different responses

GET http://d9.c4.b1.a0.top.list.ru/ HTTP/1.0\r\nHost: d9.c4.b1.a0.top.list.ru\r\n\r\n response: HTTP/1.0 400 Bad Request Server: wz/1.5 Date: Sat, 17 Nov 2012 19:00:20 GMT Cache-control: no-store, ...
0
votes
1answer
308 views

VBS issue with SendKeys when tryed get a value and save on Dim variable

I need some help with a VBS script. I want use a VBS script to access a router via telnet and save a value of a parameter on router to a Dim variables. The problem is that the DIM variable don´t save ...
1
vote
0answers
43 views

ansi-color of telnet mode go wrong in emacs

I am using latest emacs24.2. I have add (add-hook ‘telnet-mode-hook ‘ansi-color-for-comint-mode-on) to my .emacs. But emacs refuse to render my latest command output colorful; It means: # ls ...
1
vote
1answer
235 views

Save php output into variable when using fsockopen

I'm trying to build a php script, which connects to a telnet server and runs a few commands. I would like to save the returned output of a command into a variable. Example: Command: Give me a ...
0
votes
0answers
112 views

Issue when i execute telnet from telnet shell from java

I'm using apache commons for executing telnet commands from java . My commands what Im using are output of telnet connection: c:\mydir> Telnet 195.234.34.43 //connecting to a telnet # ...
0
votes
2answers
449 views

telnet a localhost [closed]

Hi I am trying to understand network command like ssh and telnet. Unfortunately I dont have any other system besides my own so I am testing with localhost only. while i am able to do ssh locally when ...
0
votes
2answers
86 views

Can not start smtp in Python

I tried to start a smtp server with python with the following code: import smtplib smtp_server = smtplib.SMTP('localhost') And I get the following error: File "test.py", line 2, in <module> ...
1
vote
2answers
303 views

How to automate interactive telnet commands?

I would like to query a telnet server on port 105. What I have to do currently is start an interactive session and enter the commands later one by one. Since I already know the commands, I would ...
0
votes
0answers
119 views

Implementing nCurses over telnet/ssh

I am currently attempting to implement a small telnet server which spawns a PTY on a connection from a client, and transmits the output of a small nCurses application to the client. I am working in ...
0
votes
3answers
648 views

black screen and error 400 bad request

I was trying telnet into a Web server and send a multiline request message. I have to include in the request message the If-modified-since. I made settings for Win7. For instance when I type telnet ...
0
votes
1answer
938 views

Port 25 / 26 says “Could not open connection” using Telnet

I am currently troubleshooting an email problem with my server (IIS 7,5 , Windows server 2008 R2). When I run the "Telnet" command, I get the "Connecting to 127.0.0.1... Could not open the connection ...
1
vote
3answers
4k views

Is it possible to use a batch file to establish a telnet session, send a command and have the output written to a file?

I run the following batch file to establish a telnet session to a device and create a file that will hold information pulled from the device. CD\ COLOR 0E CLS @echo off ECHO This will start the ...
1
vote
1answer
542 views

Using telnet under windows to test HTTP

I'm learning http, and trying to use telnet to send my own http requests. In the command prompt, I entered: telnet google.com 80 Result: The screen is cleared and I see a blinking cursor. 1. Why ...
0
votes
1answer
125 views

Node.JS server receives data character by character instead of line by line

I've got a simple Node.JS server: //Module dependencies var net = require('net') //Create server var server = net.createServer(function (conn) { // handle connection conn.setEncoding('utf8'); ...
0
votes
0answers
68 views

Telnet failed from App server to sql server DB server intermittently [closed]

recently I noticed one interesting issue in production server. We have 1 app server IIS asp .net framework and 1 sql server 2008 installed DB server. During peak time when I try to telnet my db ...
1
vote
1answer
424 views

Telnet: localhost on Windows 7 will not connet to localhost

I am running a simple Node.JS server with the code: require('http').createServer(function (req, res) { res.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' }); res.end('<h1>Hi ...
0
votes
2answers
229 views

read open stream till end in java

I am getting a input stream from apache's telnet client.Every time I send a command to telnet client it writes the terminal output back to InputStream,but this stream remains open until the telnet ...
0
votes
2answers
130 views

telnet catch ctrl+c server

I have written a socket-server like here. If I type ctrl+c in telnet, the server don't do anything now. I want to catch it like signal(SIGINT,SIG_IGN) How can I do?
3
votes
1answer
66 views

force connect to work

I run the following line in bash, on a VM running red hat 5: for i in {1..100000}; do telnet 10.10.10.105 41941; done At some point, telnet connects to the port even though there is ...
0
votes
1answer
332 views

Very slow interaction using Python's telnetlib

I'm writing a Python script that connects to a Linux terminal over Telnet, runs a number of commands and parses the output, then based on the output runs more commands, etc. This was quite easy to ...
0
votes
1answer
219 views

Connecting to Teamspeak with Telnet and C#

i want to connect to the local Teamspeak Interface by Telnet and C#. I currently have no Idea how to realize it. I am using a TcpClient but i can only send one Command and i get only one Answer, how ...
0
votes
2answers
51 views

Does \n\r behave differently on different OS?

I have a server and a client program that talks to eachother over a socket connection. It sends strings of data that I monitor via telnet / (or terminal? on mac). It works fine, when I use my MAC as ...
1
vote
2answers
119 views

How to switch to another server if connection refused? [closed]

I need to switch to another if on current connection, connection refused, or if current IP do not exist. Here is a part of code: String [] server= {"10.201.30.200", "10.66.20.70",}; // Servers array ...
1
vote
1answer
175 views

Compare Arrays for matching string

I have a script that telnets into a box, runs a command, and saves the output. I run another script after that which parses through the output file, comparing it to key words that are located in ...
0
votes
0answers
113 views

Powershell hangs when telnetting from Unix

I am trying to telnet Windows-7 PC from Unix, After connecting to the windows-7 cmd prompt, I tried executing "powershell" command but the telnet session hangs after the prompt changes, please let me ...
0
votes
0answers
70 views

what can be the reasons for a fork call not entering child code

I have this piece of code in a program function. And there is a test script which hits this code path. script goes through this function multiple times (~1000). fork() call is successful as I can see ...
1
vote
1answer
66 views

checking connection to server application

I have an application that is supposed to wait for a connection request from another program. In order to to so i received an API from the people who wrote the server application. When i use the API ...
4
votes
1answer
160 views

Telnet over half-duplex comms link - negotiation parameters

Our embedded system needs a Telnet (over serial) interface, due to hardware / legacy system it's working over a half-duplex link (RS485). Yes, I know - no, we can't change it, the industry likes it ...
-2
votes
1answer
472 views

I can't connect with ssh to my server [closed]

I'm in work and i can't connect with ssh to my dedicated server, what alternatives do I have? I try teamviewer, vnc and more and is VERY slow, SSH and telnet can't connect, Thank You!
0
votes
2answers
226 views

Quitting client on localhost, without disconnecting a TCP connection to server on localhost (without FIN packet)

Original Question I am connecting to a node.js TCP server (on localhost) with telnet and I am trying to explore keep-alive probes. As a first test, I would like to connect to the server with telnet ...
0
votes
1answer
89 views

Telnet with TcpClient, ignoring options

I am connecting to an old device using TcpClient. Initially I am ignoring every IAC sent by the server. What happens then? Does the server (i.e. the device) assumes its options are accepted or falls ...
1
vote
3answers
936 views

How does telnet differ from a raw tcp connection

I am trying to send commands to a server via a python script. I can see the socket connection being established on the server. But the commands I am sending across , do not seem to make it ...
0
votes
1answer
135 views

edit a remote file using telnet from java

I have created a telnet client using apache.commons.net.using this I can send remote commands and get the terminal output as string.But Now I also want to edit the remote files.I have vi and ed ...
4
votes
1answer
256 views

Telnet Server ubuntu - password stream

I am trying to create a Telnet Server using Python on Ubuntu 12.04. In order to be able to execute commands as a different user, I need to use the su command, which then prompts for the password. Now, ...
0
votes
0answers
82 views

How can telnet socket be prevented from closing on encountering a blank line in middle of output?

I am using telnet script from python doc modules http://docs.python.org/library/telnetlib.html The script works fine if the output has no blank lines. But telnet Socket closes( script terminates) if ...
0
votes
0answers
42 views

Need to enable security features for printer

I need to disable the ipv4-multicast feature using telnet commands on cmd. The printer that I have is HP LaseJet M401N and it doesnt directly support the command ipv4-multicast 0 which other printers ...
0
votes
0answers
68 views

how to disable ipv4-multicast for HP printer M401N [closed]

I need to disable the ipv4-multicast feature of the printer using telnet commands. If i go to help after connecting to the printer through telnet, it doesnt have the command in the list. How do I ...
0
votes
2answers
596 views

How to telnet programmatically and issue commands via a TCP socket?

I am working on an application in C for an embedded Linux system on a serial device server. I need to access the system's own shell that you can telnet to and has a bunch of custom command line ...
0
votes
0answers
190 views

Sending backspace or character delete key over telnet on iOS

I've created a telnet connection using GCDAsyncSocket and it works good. I send each character as it's typed and read it back with any responce. I can't figure out how to send backspace or character ...
1
vote
1answer
66 views

Which swt/jface control to use for writing telnet in eclipse rcp?

I have to write a telnet in eclipse rcp. So can anybody tell me which control should i use? here control is for eg: swt.Text, swt.StyledText.
1
vote
1answer
120 views

ExpectJ for Telnet

I want to use equivalent of Expect in Java. This is a simple code: public class TelnetJExpect { @Test public void telnetTest() { ExpectJ expectinator = new ExpectJ(5); ...
-1
votes
2answers
219 views

Telnet successful or not? [closed]

I telnet to server xxx.xxx.xxx.yyy 1433 and it can telnet into the sql server box with black screen and cursor.After cursor blinking a while, the window dialog switch back to Administrator cmd. What ...
1
vote
2answers
834 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
342 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 ...
1
vote
1answer
213 views

Is BufferedReader ignoring the first line?

I am currently writing a service that should take cleartext commands and then return something according to thoose commands, which is also in cleartext. I have this odd problem with BufferedReader, ...
0
votes
1answer
149 views

Why aren't telnet and nmap reflecting the ports I closed for an ec2 security group?

For the security group on my ec2 server (ubuntu 12.04) I opened only tcp ports 80 and 22. I was able to access my website from the browser as well as ssh into the server. I then deleted port 80 from ...
0
votes
1answer
65 views

Error in system command traceroute c

I'm trying to develop a traceroute server which accepts argument from a telnet client performs traceroute and send the information back to the telnet client. I'm receiving the argument from telnet ...
0
votes
1answer
211 views

How to read an argument at a server from a telnet client in socket programming c

Here's the scenario: I connect to a server using telnet utility in Linux. After the connection is established client should enter and argument which should be read by a server. Here's the server ...

1 3 4 5 6 7 16