I am having my OJT and my current task is to do an FTP Client Server connecting to a telnet Server. This is my first time doing this kind of a program. Any idea how I can do this in c# windows app? how do i establish a connection to telnet with completeauthentications? Are their any open source libraries to help me do this? Any help with this will be very much appreciated. Thx.
Asked
Active
Viewed 4,370 times
2 Answers
4
EDIT: There is another stack overflow question on this topic that answers it very well.
The most popular strategy seem to involve using the System.Net.Sockets class
These two sites both have code samples and describe opening a connection and reading data: C# Help - TELNET Client
C# and Telnet- Not as painful as it sounds
But, if you want to go the open source route, there is a project called .NET Telnet which provides an open source library to help with telnet interactions.

Glorfindel
- 21,988
- 13
- 81
- 109

Michael La Voie
- 27,772
- 14
- 72
- 92