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

0
votes
1answer
15 views

Opening Telnet Sessions to Cisco Device

I need to establish a telnet session with a Cisco device and send commands depending on the device reply. I tried: Headers: using System.Net; using System.Net.Sockets; Code: TelnetConnection tc ...
0
votes
1answer
37 views

not getting any response from server, but able to get response from telnet

I am fist connecting through vpn client then I am able to do telnet and also able to get response when i paste request string on terminal. Same request if I am trying through java program, I am not ...
0
votes
0answers
7 views

SVN post commit hook won't execute telnet

I have a SVN repo served by Apache over DAV. I've created a post-commit hook that I want to open a telnet session to a server. When I execute the commands from the command prompt, it works fine. ...
0
votes
1answer
13 views

Can't get the http response using telnet from the command line [closed]

I'm using Windows 7 (x64). I want to send an http request from a command line and to get a response. I use Telnet. I type in the command line: telnet www.google.com 80. After I press "enter" the ...
0
votes
1answer
39 views

BufferedReader waits for line return

package sample_server; import java.io.*; import java.net.*; import java.security.*; /** * Title: Sample Server * Description: A simple telnet server * @author A. Jones * @version 0.01 ...
0
votes
1answer
18 views

Stopping erroneous input from socket when initializing menu

I am working on building my first telnet server. I can connect to it but for some reason it automatically fails out on the menu on the first connection. As soon as you connect it says the welcome ...
-3
votes
0answers
11 views

How to reflash this one? [closed]

I'm trying to reflash the firmware of my Bm622 Huawei wimax using tftp but everytime I'm doing it I always got: "Connect Request Failed" I used this one to flash the firmware. tftp -i 192.168.1.1 put ...
-1
votes
0answers
30 views

Connection closed by foreign host When telnet to local tomcat server

I started the tomcat server in my local host and I could see the welcome info in the browser when visited 127.0.0.1:8080. However, I couldn't telnet to the local server when I typed: telnet ...
0
votes
0answers
16 views

Nothing is displayed when ssh a device from windows

Device connected with a windows pc and accessible with SSH protocol (able to login with ssh username and password from windows) . But am using linux system. From linux connected to windows pc using ...
0
votes
0answers
10 views

Auto-emailing with telnet

I want to monitor a windows process for which I was a writing a batch script. The script does the following: monitors the process (ok) sends an email when the process is not running (not working) ...
-1
votes
1answer
55 views

How can I write a program in java that will write to the command prompt and get the output? [closed]

Specifically, I want to write a JUnit test that writes "telnet localhost 1337" and then get the output of that after executing the command. Thanks. I tried the code here: ...
-1
votes
0answers
15 views

Launching software remotely using telnet [closed]

I started a telnet server in Windows 7 at my home PC. I need to run/launch a particular software remotely using telnet. I can successfully connect to my home computer remotely. But when I run some ...
1
vote
2answers
43 views

cant telnet from linux pc to windows pc “login Failed error”

I'm trying to telnet from Linux to Windows PC but it's showing error "login failed". Here is my Python script. I am using pexpect module. I also tried with telnetlib but same error: import os import ...
1
vote
1answer
39 views

Run script on remote machine via telnet (not SSH)

I need to somehow run a script which resides on a remote machine running Ubuntu. SSH or any other connection type that requires complex encryption is not possible. The client that will connect to the ...
-1
votes
0answers
38 views

Why unable to connect localhost via telnet? [closed]

I am Unable to connect localhost (127.0.0.1 / 192.168.1.2) Port 80 Using telnet. Connecting To 127.0.0.1...Could not open connection to the host, on port [80]: Connect failed Microsoft Telnet> o ...
0
votes
0answers
60 views

Connect to a Cisco Switch with Ruby

[EDITED] I'm trying to connect to a Cisco Switch and execute a few commands. My first try was with Net::SSH and I couldn't establish a channel. Second try was with plink and shell commands. Now I'm ...
0
votes
1answer
34 views

ruby telnet to windows 2008 ,execute command error

I tried to use ruby Net::Telnet to connect windows 2008 and execute some commands. But it failed. if execute tn = Net::Telnet::new("Host"=>"walnutserver","Port"=>2300,"Prompt"=> /C:.*>/) ...
-4
votes
0answers
60 views

Telnet commands via PHP -[PHP Telnet] Connect failed: Login failed , using PHPTelnet class [closed]

i got this "[PHP Telnet] Connect failed: Login failed" when i try to connect to another PC how can i solve this? any idea?
-1
votes
2answers
49 views

Make a text-based game written in ruby accessible via telnet. [closed]

I've made a text-based game in ruby that can be executed in Terminal on unix systems using rvm. Just a little project to help me learn the language. How can I make this game available to others? ...
0
votes
1answer
28 views

Python:Telnet password is not taking via script using pexpect

i have an issue while running my telnet script using pexpect.Problem is its taking only username from script not password.Its taking the value of password but its not entering the same.Mentioned below ...
-1
votes
0answers
24 views

telnet fails to connect: Connection closed by foreign host [migrated]

I try to connect to localhost with telnet: % telnet localhost 6311 This connection succeed, but when I connect by external IP of my computer, connection fails: % telnet x.x.x.x 6311 Trying ...
0
votes
0answers
46 views

Telnet Connection Pooling

Background: I'm currently trying to develop a monitoring system at my job. All the nodes that need to be monitored are accessible via Telnet. Once a Telnet connection has been made, the system needs ...
1
vote
2answers
32 views

How to render a remote ncurses console?

I wanna write a remote console, working like a telnet server. User is able to use telnet to log into the server, then write some commands to do some works. A good example for this is the console of ...
-1
votes
1answer
50 views

How to process the backspace terminal control character in Java? [closed]

I am coding a basic telnet server in Java and I would like to process the backspace terminal control character denoted by '\b'. The backspace character deletes/removes the preceding character in the ...
0
votes
0answers
40 views

telnet and ^D signal

Is there the way to ^D with telnet? When I press ENTER it invokes send() and telnet sends inputed data to server. When I press CTRL+D it ignores signal. Can I send data until I press CTRL+D or only ...
0
votes
2answers
35 views

Telnet Silently (without displaying Trying and other beginning messages) [closed]

I am trying to establish a telnet connection but I do NOT want it to print the following customary lines it prints Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. I want it ...
-3
votes
0answers
20 views

How can I send a file to a server using PHP/telnet? [closed]

How to send a file using PHP with telnet? The file contains commands and they must be sent one by one (line by line).
1
vote
1answer
54 views

telnet from linux pc to windows pc using python script

i am trying to telnet a windows pc from linux using python script(pexpect).when i try to connect this error pop's up The operation completed successfully...Login Failed below is my python script. ...
0
votes
1answer
27 views

Telnet basic IO operations

I'm trying to create a simple library (hope to share it with the world) that will allow to send and receive commands to remote equipment via telnet. I'm trying to keep the code as simple as possible ...
2
votes
1answer
42 views

Can I clear the output buffer in Telnetlib on Python 2.7

I am using telnetlib to print the output after the last command i write to server tn.write(cmd_login) tn.write(cmd...) tn.write(cmd_last) print tn.expect([word],timeout)[-1] however, when I printed ...
-1
votes
0answers
26 views

How do I be a telnet admin? [closed]

Somehow, I wanna make a telnet server but when I try to login to my telnet server I set up in services.msc. When I login with my username and pass it says "Access Denied: Specified user is not a ...
3
votes
2answers
96 views

Is there a way to use telnet within an ssh connection in Robot Framework?

There is a node where I ssh into and start a script remotely by Robot Framework (SSHLibrary.Start Command or Execute Command). This remote script starts a telnet connection to another node which is ...
0
votes
1answer
29 views

Delaying multiple calls to java webservice

I get around 20 calls to my webservice every hour but they all arrive at the same time. For each request I get I need to call a telnet server and execute some commands. The problem is that the ...
0
votes
0answers
40 views

Windows 7 telnet server reply

While connecting to windows 7 telnet server, It sends me the result in a char array its values are out of the range the printable characters and out of range [0 128]. Returned Buffer = [-1, -3, 37, ...
0
votes
0answers
56 views

Connecting asp.net C# to server with Linux O.S using telnet protocol

i am trying to design a interface local website for Linux cash server , i am using asp.net with c# , at first i just try to make a test connection , i make one bottom with two textboxes and one label ...
0
votes
1answer
60 views

tcp connection to router how to communicate? (Telnet Client)

I am trying to build a program that will connect to an IP address (preferably that of a router) to a specific port (mainly 80) and will try to authenticate and then go on with further actions. I ...
-1
votes
1answer
40 views

I am trying to do the impossible, use a telnet connection to a windows server to browse the web [closed]

There are bound to be a lot of people jumping to conclusions about what I am going to be asking here. I ask you please read the entire post as many people jumped out with answers on IRC but nobody had ...
-2
votes
0answers
28 views

Automate Telnet To Cisco Devices [closed]

I have some Cisco Devices that I need to automate some stuff on them .. Basically, my client will be using my application to automate some things .. I know how to configure the devices .. Here is ...
0
votes
4answers
97 views

How can I read one line from a telnet response with Python?

I was surprised that I couldn't find this question on here. I would like to take extract one line from a telnet response and make it a variable. (actually one number from that line). I can extract ...
0
votes
1answer
103 views

UDP port forwarding for android emulator; “adb forward udp:port udp:port” and telnet localhost adb_port not working

Hi I am developing an app using android emulator. I need to register a UDP socket at some port X that can be accessible from local network. Since Android emulator is NAT'd so I need port forwarding. I ...
0
votes
1answer
42 views

get file from ftp pc and save the same in telnetted pc using python

I am trying to write a python script to connect a pc using telnet and from that telneted pc I am trying to start a ftp connection to other pc. I was able to connect telnet and FTP, but the transferred ...
0
votes
3answers
51 views

How can I use a custom port (not default) for connecting a server and client using only telnet or FTP (in socket programming in C)?

I read the link on Beej's socket programming tutorial which was really good. Although it didn't answer a question i was pondering since somehwere in the beginning of the tutorial and I'm not able to ...
0
votes
0answers
34 views

Unable to send email from ip

I want to send email using ip address I'm trying to send email from javacode it is written below public static void sendEmailReminder(String emailid,String messageTosend ) { String ...
1
vote
0answers
60 views

asp.net vbscript send message to ip and port

Need some advice, i am very new to asp.net so here is the scenario i am trying to create. I know the IP Address and Port of a device, i can send a simple message such as "MMS" and the device reacts ...
0
votes
0answers
67 views

How do I execute Telnet commands from Excel?

I would like to perform automated tests of a networked device that supports Telnet and SSH. Once a connection is established, I am able to query the status of the device with various ASCII strings, to ...
0
votes
1answer
73 views

Windows Batch File not working consistently

I have a batch file that starts up a telnet session and executes a few command with using a vbs script: start telnet.exe another.hostname timeout /t 1 /nobreak > NUL cscript ...
1
vote
1answer
49 views

Telnet with Bad Request 400

Have a look at the following post: How to telnet google using command prompt? I've tried the same thing, but keep getting a Bad Request! (400!) I'm working on a Windows 8 PRO machine. I just want to ...
0
votes
0answers
87 views

Telnet into SMTP Port 25 gives Blank Screen

Just this morning the outgoing mail server stopped working. When I telnet into 110 it connects to POP3 perfectly. When I telnet into 25 it just goes to a blank screen with no error message. ...
-4
votes
1answer
40 views

Any way to issue telnet commands remotely ander double telnet session? [closed]

What do I need: telnet 1.1.1.1 (no password or login required) #connected telnet localhost 1234 command_1 command_2 command_3 exit exit is there any way to write it on bash or python ?
0
votes
1answer
42 views

Do we can execute telnet from SshXCute by neoremind

We are using SshXCute java plugin by neoremind for connecting to a server through ssh. Now we need to connect to some other server/router by telnet. I searched a lot in Google to find any solution. ...

1 2 3 4 5 16