473,395 Members | 1,539 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Simple Telnet commands using C# and tcpclient

I'd like to do the following in C# and prefer using tcpclient rather
than raw sockets...

Connect to a unix box
Login
run date +%H%M%S
retrieve the response.

That's it, nothing more. This shouldn't be too complicated, I
thought... I have yet to find any examples of being able to do this.
Any suggestions?

Thanks!
Greg
Nov 15 '05 #1
5 33780
<FrameworkSDK>\Samples\Applications\WinTalk is sample in MSDN, it provides
demo of Socket wrapped class.
No doubt you can do following that way, yet perhaps simpler way does exist.

"Greg Martz" <a-*****@microsoft.com>
??????:MP************************@msnews.microsoft .com...
I'd like to do the following in C# and prefer using tcpclient rather
than raw sockets...

Connect to a unix box
Login
run date +%H%M%S
retrieve the response.

That's it, nothing more. This shouldn't be too complicated, I
thought... I have yet to find any examples of being able to do this.
Any suggestions?

Thanks!
Greg

Nov 15 '05 #2
If you are looking for a decent book that covers Sockets and associated
classes try to pick up a copy of "Professional .NET Network Programming"
from (now defunct) Wrox Press. (ISBN 1-86100-735-3)
DL
"Greg Martz" <a-*****@microsoft.com> wrote in message
news:MP************************@msnews.microsoft.c om...
I'd like to do the following in C# and prefer using tcpclient rather
than raw sockets...

Connect to a unix box
Login
run date +%H%M%S
retrieve the response.

That's it, nothing more. This shouldn't be too complicated, I
thought... I have yet to find any examples of being able to do this.
Any suggestions?

Thanks!
Greg

Nov 15 '05 #3
Dave Loynd writes:
...from (now defunct) Wrox Press.


Do you know if this means that books they had in the pipeline are dead? In
particular I expected to see their "Professional C# Design Patterns Applied"
(or whatever it was going to be called) last month. Is someone else taking
over their properties?

Michael Roper
Nov 15 '05 #4
Greg Martz <a-*****@microsoft.com> wrote in message news:<MP************************@msnews.microsoft. com>...
I'd like to do the following in C# and prefer using tcpclient rather
than raw sockets...

Connect to a unix box
Login
run date +%H%M%S
retrieve the response.

That's it, nothing more. This shouldn't be too complicated, I
thought... I have yet to find any examples of being able to do this.
Any suggestions?

Greg -

I guess it depends on how you define "complicated". Connecting to
the Unix box is easy, trying to follow the Telnet protocol will be
your challenge.

The basics to get you connected to the server are easy:

TcpClient sock = new TcpClient("remotehostIP", 23);
NetworkStream ns = sock.GetStream();
byte[] data = new byte[1024];
int recv = ns.Read(data, 0, data.Length);

However, what you will see returned in the data array will not be
what you expect to see. When a Telnet session is first established,
the host and client send a series of negotiation packets back and
forth to determine what capabilities are supported by each (see RFC
854). The first packet of data received from the host will contain a
byte stream containing the negotiation request. It's your job to
correctly answer the negotiation with an appropriate byte stream
before you will see the login message text from the server.

If you are always connecting to the same Unix box, you might be
able to capture a Telnet session using a sniffer (or the WinPcap
analyzer program on your PC), then duplicate the session in your
connection. Usually there are two or three back-and-forth sessions
before the host sends the login message text. Once you see that you
are mostly home free (although Telnet does allow for the host to
renegotiate during the session, so watch out for that).

Hope this helps point you in the right direction to solve your
problem. Good luck in your network programming.

Rich Blum - Author
"C# Network Programming" (Sybex)
http://www.sybex.com/sybexbooks.nsf/Booklist/4176
"Network Performance Open Source Toolkit" (Wiley)
http://www.wiley.com/WileyCDA/WileyT...471433012.html
Nov 15 '05 #5
In article <cc**************************@posting.google.com >,
ri*******@juno.com says...
Greg Martz <a-*****@microsoft.com> wrote in message news:<MP************************@msnews.microsoft. com>...
I'd like to do the following in C# and prefer using tcpclient rather
than raw sockets...

Connect to a unix box
Login
run date +%H%M%S
retrieve the response.

That's it, nothing more. This shouldn't be too complicated, I
thought... I have yet to find any examples of being able to do this.
Any suggestions?

Greg -

I guess it depends on how you define "complicated". Connecting to
the Unix box is easy, trying to follow the Telnet protocol will be
your challenge.

The basics to get you connected to the server are easy:

TcpClient sock = new TcpClient("remotehostIP", 23);
NetworkStream ns = sock.GetStream();
byte[] data = new byte[1024];
int recv = ns.Read(data, 0, data.Length);

However, what you will see returned in the data array will not be
what you expect to see. When a Telnet session is first established,
the host and client send a series of negotiation packets back and
forth to determine what capabilities are supported by each (see RFC
854). The first packet of data received from the host will contain a
byte stream containing the negotiation request. It's your job to
correctly answer the negotiation with an appropriate byte stream
before you will see the login message text from the server.

That's what I was doing all right. And yes, I noticed the data that I
was getting back, just didn't know it was a negotiation routine. I
don't really want to write an entire telnet client just to do this
simple task, so I'll look at trying a different way. Thanks for your
assistance!

Thanks!
Greg
Nov 15 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Rex Winn | last post by:
I've Googled until my eyes hurt looking for a way to issue Telnet commands from C# and cannot find anything but $300 libraries that encapsulate it for you. I don't want to be able to create a...
2
by: b00x | last post by:
Hi, I'm trying to develop a script that I can reuse to run remote commands on multiple UNIX servers via telnet. I've tried various php scripts after googling for a good 5 or so hours, but found...
0
by: goroth | last post by:
I am trying to create a telnet client that will connect to several of my network devices on campus and change settings on the devices. So far I can connect with the code below, but I can't seem to...
0
by: john.kramer | last post by:
I need a VB.NET app that allows me to connect to a device using telnet, send two commands (the second of which terminates the connection), then confirm that the connection is terminated. If I...
2
by: Screaming Eagles 101 | last post by:
Hi, I looked and found a lot of different code regarding send/receiving input/output to a command window, but none helped me so far. I would like to start a process with telnet a bit like this...
6
by: =?Utf-8?B?U2hhcmllZg==?= | last post by:
Dear All, I must write a client program in C# which will communicate with a switch throught telnet. When I create a socket connection on port 22, the switch responds with some text and at the...
5
by: pbd22 | last post by:
Hi. Anybody know of any good code examples out there on how to take a telnet command and parse it? Thanks!
4
by: pbd22 | last post by:
Hi I am making my way through a windows service that accepts custom telnet commands as strings and then parses the string and redirects it. This would be a custom string sent via telnet. ...
9
by: pbd22 | last post by:
Hi. Does anybody know how to issue a clear screen command like DOS "cls" in a telnet session? Thanks!
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.