Click here to Skip to main content
Click here to Skip to main content

Quick tool : A minimalistic Telnet library

By , 6 Jun 2007
 

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 :

//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)

About the Author

Tom Janssens
Founder Core bvba
Belgium Belgium
Tom Janssens, owner of Core, a software and consultancy company.
Father of two sons named Quinten & Matisse, and married to a beautiful woman named Liesbeth.
 
Blog
Github
Twitter
LinkedIn

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberJon Sagara6-Jun-13 4:51 
QuestionIssue with login [modified]memberTadejP8124-May-13 9:50 
QuestionCannot downloadmemberitiwcsingkaww22-May-13 15:28 
Questionhow to i get a serial number of a device using the ip address through telnet using this codememberjinnah201328-Apr-13 8:24 
QuestionThanks and a little QuestionmemberMember 999687125-Apr-13 5:29 
QuestionThank You.memberMember 999795118-Apr-13 17:19 
AnswerRe: Thank You.memberTom Janssens18-Apr-13 20:53 
QuestionReading more than one line at a timememberslopesandsam9-Apr-13 19:45 
AnswerRe: Reading more than one line at a timememberTom Janssens9-Apr-13 20:46 
GeneralRe: Reading more than one line at a timememberslopesandsam9-Apr-13 20:54 
GeneralMy vote of 5membernieljake18-Jan-13 5:08 
BugBuggymemberMember 96668847-Dec-12 14:32 
QuestionUnable to loginmemberrogerknit7-Nov-12 18:12 
AnswerRe: Unable to loginmemberTom Janssens7-Nov-12 20:04 
QuestionLogin problem [modified]memberLuis Velarde5-Sep-12 13:38 
AnswerRe: Login problemmemberLuis Velarde6-Sep-12 5:03 
GeneralRe: Login problemmemberTom Janssens6-Sep-12 6:38 
QuestionTab Keymemberprithumit28-Aug-12 3:40 
AnswerRe: Tab KeymemberTom Janssens28-Aug-12 4:11 
AnswerRe: Tab KeymemberEgyptianRobot28-Aug-12 4:47 
QuestionCannot retrieve all the result datamemberPhea Daravuth14-Jun-12 23:08 
AnswerRe: Cannot retrieve all the result datamemberTom Janssens15-Jun-12 0:46 
Questionusing dot notation for TelnetConnection parametermembergaraber16-May-12 16:09 
AnswerRe: using dot notation for TelnetConnection parametermembergaraber16-May-12 16:19 
GeneralRe: using dot notation for TelnetConnection parametermemberTom Janssens17-May-12 20:21 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130619.1 | Last Updated 6 Jun 2007
Article Copyright 2007 by Tom Janssens
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid