Tagged Questions
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.
31
votes
14answers
42k views
How to check if an email address exists without sending an email?
I have come across this PHP code to check email address using SMTP without sending an email.
Has anyone tried anything similar or does it work for you? Can you tell if an email customer / user enters ...
11
votes
3answers
1k views
C# Library for SSH and Telnet
I'm looking for a C# library that provides access to both SSH and Telnet under the same interface. What would be a good choice?
10
votes
8answers
7k views
Multiple simultaneous network connections - Telnet server, Python
I'm currently writing a telnet server in Python. It's a content server. People would connect to the server via telnet, and be presented with text-only content.
My problem is that the server would ...
9
votes
9answers
22k views
C# Telnet Library
Is there a good, free telnet library available for C# (not ASP .NET)? I have found a few on google, but they all have one issue or another (don't support login/password, don't support a scripted ...
8
votes
9answers
2k views
Writing a telnet client
HI,
I have a device that exposes a telnet interface which you can log into using a username and password and then manipulate the working of the device.
I have to write a C program that hides the ...
7
votes
6answers
1k 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, ...
6
votes
3answers
3k views
Really weird HTTP client using TcpClient in C#
I am implementing a really simple HTTP Client that just connects to a web server and gets it's default homepage. Here it is and it works nice:
using System;
using System.Net.Sockets;
namespace ...
6
votes
4answers
3k views
Looking for Java Telnet emulator
I am writing a back end program that telnets into a server, runs some commands and saves all the output from those commands. Something just like Expect.
I would like to use an open source solution ...
5
votes
1answer
197 views
Http through telnet with python and twisted
This is what I want to do:
web-browser --> connect to remote server through telnet(server1) --> to squid-proxy(which requires authentication) through telnet on port 80(server2)
I have written a ...
5
votes
1answer
234 views
Ruby line editing telnet server
I am implementing a little telnet server in Ruby. The problem I'm currently facing is that I want to add readline support so that I can have tab-completion and command-line history support. I have ...
5
votes
3answers
2k views
Is there a Telnet library for JavaScript?
We have a network camera. It has an HTTP server to provides the current image. There is also a Telnet interface for controlling the camera (i.e. trigger, focus, etc.). I would like to add an HTML ...
5
votes
1answer
471 views
telnet client connection stops receiveing data, server is still sending
I'm Working in an embedded linux environment.
it launches a telnet daemon on startup which watches on a particular port and launches a program when a connection is received.
i.e.
telnetd -l ...
5
votes
7answers
10k views
Using telnet in a C Program
I am working on a robot automation project and I have run into a road block. To control the robot, one needs to connect with it wirelessly via telnet and send commands through the tcp/ip protocol. ...
4
votes
2answers
151 views
PHP memcache problem
I am trying to set up memcache server on my localhost. Now before you jump on with me duplicates here is a list of them.
Duplicates:
Memcache connects but doesn't respond to any command
cannot ...
4
votes
4answers
458 views
java.net.ServerSocket.accept () doesn't return on Android
I am trying to make a way to telnet to an unrooted Droid. I have the INTERNET permission active, I have my device connected on the same network as my Mac OS X box via WiFi, and I am able to ping the ...
4
votes
3answers
594 views
automating telnet session using bash scripts
I am working on automating some telnet related tasks, using Bash scripts.
Once automated there will be no interaction of the user with telnet. (that is it will be totally automated)
the scripts looks ...
4
votes
4answers
1k views
Send data over telnet without pressing enter
I've recently started messing around with Java sockets and telnet...
I want the user to be able to connect to the server, just type a letter and have it sent to the server, without pressing enter to ...
4
votes
1answer
581 views
How to send commands to telnet and leave session open [closed]
I have to connect to a remote server via telnet and want to send file input there.
This is a processor emulator (MCF68k), so I can't just scp the file to the server and run from there.
I can send ...
4
votes
2answers
73 views
Odd Behavior when Connecting to my Program
I'm using Twisted to implement a server, of sorts. When I test it, the first line it receives is always strange:
Starting Server...
New connection from 192.168.1.140
192.168.1.140: ÿûÿû ...
4
votes
1answer
265 views
404 not found in telnet, works fine in browser
i am having a very irritating problem, when i open a url ( http://celebs.widewallpapers.net/md/a/adriana-lima/1440/Adriana-Lima-1440x900-002.jpg ) in browser, it works fine.. but when i try to access ...
4
votes
3answers
4k views
Automating telnet with powershell
Ok, it's little convoluted.
I am trying to write a script to automate telneting to a machine, execute few commands, look at the output in the telnet window, based on the output, send few more ...
4
votes
4answers
2k 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);
...
4
votes
3answers
5k views
Using conditional statements inside 'expect'
I need to automate logging into a TELNET session using expect, but I need to take care of multiple passwords for the same username.
Here's the flow I need to create:
Open TELNET session to an IP
...
4
votes
2answers
3k views
How can I open a telnet connection and run a few commands in C#
IS this straightforward? Does any one have any good examples? All my google searches return items on how to make telnet clients in dotNet but this overkill for me. I'm trying to do this in C#.
...
4
votes
6answers
2k views
Telnet Server
I would like to implement a telnet server in C. How would I proceed with this? Which RFCs should I look at? This is important to me, and I would appreciate any help.
4
votes
9answers
12k views
Spawning an interactive telnet session from a shell script
I'm trying to write a script to allow me to log in to a console servers 48 ports so that I can quickly determine what devices are connected to each serial line.
Essentially I want to be able to have ...
3
votes
2answers
90 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 ...
3
votes
2answers
167 views
Proper and fast way to TELNET in PHP. Sockets are damn slow or how to TELNET with PHP cURL?
There are plenty of examples of the TELNET implementations in PHP. Almost all of them are with sockets (fsockopen). However, this does not work for me, because with sockets it takes unacceptable ...
3
votes
1answer
235 views
twisted manhole: how to access servers in application?
I need to connect to my twisted application at runtime and I am trying to get twisted.manhole to work for me to that end. I am on Mac OSX 10.6 with twisted 8.2 as installed by default.
The sample ...
3
votes
2answers
566 views
Need a sample/demo of using TIdTelnet to interact with telnet server
I tried to employ Indy 10.5.5 (shipped with Delphi 2010) for:
connecting to telnet server
performing username/password authentication (gaining access to the command shell)
executing a command with ...
3
votes
3answers
2k views
Android: how to telnet a phone?
Hello
i wantd to know if it's possible to do a telnet on a certaint port vs an Android phone connected via usb; i've seen that if i do a telnet localhost 5556 i go to the emulator: can i do something ...
3
votes
3answers
401 views
Parsing ANSI escape codes?
I'm building a telnet app in C# (for scripting door games on oldschool BBS systems e.g. Wildcat) and can't seem to build a working parser for ANSI escape codes (e.g. cursor movement, colorizing, etc) ...
3
votes
2answers
79 views
Garbage bytes in http output?
When I use telnet to view my web, I get these weird numbers/letters in the output. This does not happen in a browser and they are definitely not in my source code. I have checked other sites and they ...
3
votes
3answers
1k views
Open source Telnet Java API
Is there an open source telnet API/library out there for Java (something like Python telnetlib)? I need to connect to a server using telnet and execute some commands from within a Java program.
3
votes
3answers
477 views
python line editing telnet server
I am creating a server in python (what it is doing is irrelevant), but I would like it to accept telnet connections and provide a command line interface with line editing capabilities (tabcompletion, ...
3
votes
2answers
541 views
Android - scripting telnet session for sending GPS tracks
All,
I am familiar with the ability to fake GPS information to the emulator through the use of the geo fix long lat altitude command when connected through the emulator.
What I'd like to do is have ...
3
votes
3answers
434 views
how to send F2 key to remote host using python
i have to send F2 key to telnet host how do i send it using python...using getch() i found that this '<' used for F2 key but while sending its not working..i think there will be some way to send ...
3
votes
1answer
566 views
POSIX Sockets: How to detect Ctrl-C sent over Telnet?
Short Question
What's the right way to handle a Ctrl-C event sent over Telnet on the server side?
Long Question
After calling recv() on a socket, I'd like to handle some situations appropriately. ...
3
votes
2answers
684 views
Twisted Matrix and telnet server implementation
I have a project which is essentially a game server where users connect and send text commands via telnet.
The code is in C and really old and unmodular and has several bugs and missing features. The ...
3
votes
3answers
6k views
Maximum number of concurrent connections on a single port (socket) of Server
What could be the maximum number of concurrent Clients(using different port number) that could communicate to a Server on the same port (Single socket) ? What are the factors that could influence this ...
3
votes
3answers
4k views
how do i reduce timeout on unix telnet on connection
I have a unix shell script which test ftp ports of multiple hosts listed in a file.
for i in `cat ftp-hosts.txt`
do
echo "QUIT" | telnet $i 21
done
In general this scripts works, ...
3
votes
7answers
11k views
Creating a script for a Telnet session?
Does anyone know of an easy way to create a script that can connect to a telnet server, do some common telnety stuff, and then logoff? I am dealing with users who are not familiar with telnet and the ...
3
votes
3answers
2k views
How can I automate telnet port 25 testing?
I need to make a large set of tests in telnet. I am working on some ways to auto detect dictionary attacks on our email server, and then throttle them back, or blacklist them etc.
I am now ready to ...
3
votes
5answers
677 views
Telnet lib and language choice for cross OS telnet client?
I'm looking to start a MUD client application, which connects to a MUD hosted on a telnet server. The only thing important to me is that it runs painlessly and efficiently across any OS. Aside from ...
3
votes
9answers
2k views
Managing Cisco programatically; Telnet vs SNMP?
I was recently approached by a network-engineer, co-worker who would like to offload his minor network admin duties to a junior-level helpdesk tech. The specific location in need of management acts ...
3
votes
3answers
522 views
telneting backspace key is wrong
When I telnet into our works sun station my backspace key doesn't work. I use a temporary workaround of:
$ stty erase ^H
This works but each time I telnet in I have to retype this. How can I set ...
2
votes
4answers
102 views
C# how to stop the program after a certain time?
I have a big problem, but probably it's only big for me :). "terminal.Bind(client);" this line causes my program to hang if IP is bad. I want to stop this program after 5s working because if IP is ...
2
votes
1answer
233 views
Resolving gmail.com mail server
I am trying to find the gmail.com mail server using dig command and verifying the results returned by dig command using telnet.
$ dig gmail.com MX
; <<>> DiG 9.7.3 <<>> ...
2
votes
1answer
90 views
C# - Socket to log on to Firewall
I wrote an app to automatically connect to our different Firewalls. All of them work with the same frontend. We telnet to the IP and they give the message LOGIN or LOGOUT and ask for a username or ...
2
votes
1answer
230 views
could not open connection to the host, on port 23: Connect failed
I have a problem which I'll explain briefly:
I have extremely simple chat server (100 lines of code on Java) and it is working properly. When I'm testing it with Telnet on localhost everything is just ...