Click here to Skip to main content
15,881,882 members
Articles / Mobile Apps / Windows Mobile
Article

Quick tool : A minimalistic Telnet library

Rate me:
Please Sign up or sign in to vote.
4.88/5 (80 votes)
6 Jun 2007CPOL3 min read 605.3K   46.4K   146   140
Send commands to your servers from your programs using the Telnet protocol
Image 1

Introduction

This article provides a minimalistic Telnet interface. Possible applications of this class include :

  • A Telnet console
  • A Windows GUI around some UNIX commands that need to be executed on a server
  • A program that executes scripts (scripted telnet)
This example offers both a minimal console, and a possibility to use a script, using file piping.

Background

A little while ago one of my clients had the problem that a person who was managing a system using UNIX scripts (HP-UX) was leaving the company. This person was not to be replaced by a new employee, so his functions would have to be done by several other persons.

When estimating the cost of teaching the other people how to use UNIX, we made some calculations, and found a much cheaper solution: we built a simple Windows program that contained a GUI for every script used.

The user simply has to press some buttons, select some values and press the "Start" button. When the user presses the start button the UNIX commands are built using the parameters from the GUI, and sent to the server using Telnet.

Since I remember spending quite a few hours figuring out the minimal implementation of the Telnet protocol, I decided to do a simple rewrite for the users of codeproject.

Using the code

The class is actually quite simple to use. Please take a look at the example code :

C#
//create a new telnet connection to hostname "gobelijn" on port "23"
TelnetConnection tc = new TelnetConnection("gobelijn", 23);

//login with user "root",password "rootpassword", using a timeout of 100ms, 
//and show server output
string s = tc.Login("root", "rootpassword",100);
Console.Write(s);

// server output should end with "$" or ">", otherwise the connection failed
string prompt = s.TrimEnd();
prompt = s.Substring(prompt.Length -1,1);
if (prompt != "$" && prompt != ">" )
    throw new Exception("Connection failed");

prompt = "";

// while connected
while (tc.IsConnected && prompt.Trim() != "exit" )
{
    // display server output
    Console.Write(tc.Read());

    // send client input to server
    prompt = Console.ReadLine();
    tc.WriteLine(prompt);

    // display server output
    Console.Write(tc.Read());
}

Console.WriteLine("***DISCONNECTED");
Console.ReadLine();

I suppose this is self-explanatory, isn't it ? Create the Telnet connection, login, send the login output to the screen, and while connected send serveroutput to the screen, read a command from the commandline, and again, send the serveroutput to the screen.
If the command is "exit" then the loop needs to finish.

Instead of reading the input from the console, the input can also be piped from a script: if the script was named telnetstuff.txt then execute the script as follows :

MinimalisticTelnet < telnetstuff.txt > output.txt

The result will be inside the file output.txt. Currently the servername, port, username and password is hardcoded, but it should be a piece of cake to change this into command line parameters.

How does it work

The TelnetConnection parses every byte received from the TcpClient, and if a byte series is a Telnet option request (DO, DONT, WILL, WONT), the client simply responds that the option is not available by sending (DONT, WONT) in return.

The only exception to these responses is the command SGA: suppress go ahead, since this command allows async traffic.

Points of Interest

The TelnetConnection.Read function assumes that if there is no data available for more then TimeOutMs milliseconds, the output is complete.

The login works by parsing the server output after the initial connection. It will look for a colon ":" in the screen output, and will send username and password after the colon.

To check if the connection succeeded, I look for whether the serveroutput ends with a "$" or a ">". If your Telnet server has another prompt, please replace this.

Votes & Comments

The votes & comments on my previous article gave me the motivation to publish a new article, so please keep your votes & comments coming !!

History

  • 2007-06-06: First version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder Virtual Sales Lab
Belgium Belgium

Comments and Discussions

 
GeneralRead Until Method Pin
dchard8-Oct-09 4:52
dchard8-Oct-09 4:52 
GeneralRe: Read Until Method Pin
Tom Janssens12-Oct-09 23:31
Tom Janssens12-Oct-09 23:31 
GeneralBest Telnet Client for C# Pin
dchard8-Oct-09 4:47
dchard8-Oct-09 4:47 
AnswerRe: Best Telnet Client for C# Pin
Tom Janssens12-Oct-09 23:29
Tom Janssens12-Oct-09 23:29 
GeneralSome modifications that I would use to make sure telnet pushes your commands through Pin
Stephen Melvin16-Jul-09 6:28
Stephen Melvin16-Jul-09 6:28 
GeneralRe: Some modifications that I would use to make sure telnet pushes your commands through Pin
Tom Janssens4-Aug-09 22:08
Tom Janssens4-Aug-09 22:08 
QuestionProblem with SendTelnetData [modified] Pin
jeanosorio21-Apr-09 5:46
jeanosorio21-Apr-09 5:46 
AnswerRe: Problem with SendTelnetData Pin
Tom Janssens21-Apr-09 21:43
Tom Janssens21-Apr-09 21:43 
GeneralThanks Pin
alex_t14-Apr-09 8:04
alex_t14-Apr-09 8:04 
GeneralRe: Thanks Pin
Tom Janssens14-Apr-09 9:15
Tom Janssens14-Apr-09 9:15 
GeneralFailed to connect:no login prompt Pin
krsk4u6-Oct-08 22:22
krsk4u6-Oct-08 22:22 
AnswerRe: Failed to connect:no login prompt Pin
Tom Janssens22-Oct-08 23:39
Tom Janssens22-Oct-08 23:39 
GeneralYour telnet client rejected our request to use char-at-a-time mode [modified] Pin
J1MPIC18-Jun-08 2:13
J1MPIC18-Jun-08 2:13 
GeneralRe: Your telnet client rejected our request to use char-at-a-time mode Pin
J1MPIC24-Jun-08 8:55
J1MPIC24-Jun-08 8:55 
AnswerRe: Your telnet client rejected our request to use char-at-a-time mode Pin
Tom Janssens18-Aug-08 20:27
Tom Janssens18-Aug-08 20:27 
GeneralError with the server output Pin
Amer Azzaz9-May-08 0:23
Amer Azzaz9-May-08 0:23 
AnswerRe: Error with the server output Pin
Tom Janssens9-Jun-08 3:36
Tom Janssens9-Jun-08 3:36 
GeneralParseTelnet function generates malformed packet Pin
HStidsen20-Sep-07 0:07
HStidsen20-Sep-07 0:07 
GeneralRe: ParseTelnet function generates malformed packet Pin
Tom Janssens7-Dec-07 4:28
Tom Janssens7-Dec-07 4:28 
GeneralRe: ParseTelnet function generates malformed packet Pin
Darked9-Apr-08 22:13
Darked9-Apr-08 22:13 
AnswerRe: ParseTelnet function generates malformed packet Pin
HStidsen10-Apr-08 1:45
HStidsen10-Apr-08 1:45 
GeneralRe: ParseTelnet function generates malformed packet Pin
Darked10-Apr-08 1:58
Darked10-Apr-08 1:58 
AnswerRe: ParseTelnet function generates malformed packet Pin
Member 30373261-Nov-08 2:15
Member 30373261-Nov-08 2:15 
GeneralRe: ParseTelnet function generates malformed packet Pin
234543ts24-Mar-10 1:44
234543ts24-Mar-10 1:44 
Question&quot;Failed to connect : no password prompt&quot; Pin
praveenkumar palla18-Sep-07 20:25
praveenkumar palla18-Sep-07 20:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.