如何在 C# 中连接到 Telnet 服务器?
我正在进行 OJT,我当前的任务是创建一个连接到 telnet 服务器的 FTP 客户端服务器。 这是我第一次做这样的节目。 知道如何在 c# windows 应用程序中执行此操作吗? 如何建立具有完整身份验证的 telnet 连接? 他们有任何开源库可以帮助我做到这一点吗? 任何对此的帮助将不胜感激。 谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:关于这个主题还有另一个堆栈溢出问题可以很好地回答它。
最流行的策略似乎涉及使用 System.Net.Sockets 类
这两个站点都有代码示例并描述了打开连接和读取数据:
C# 帮助 - TELNET 客户端< /a>
C# 和 Telnet - 不像听起来那么痛苦
但是,如果您想走开源路线,有一个名为 .NET Telnet 的项目,它提供了一个开源库来帮助进行 telnet 交互。
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.
首先阅读 TcpClient 类,然后搜索示例代码。 如果您需要实现
Telnet
客户端,您应该了解好的旧的 RFC 854。FTP
只是一堆其他 RFC,您可以从RFC 959。Telnet 和 FTP 客户端都可以直接使用
TcpClient
实现。Start by reading on the TcpClient class, and then search for example code. If you need to implement a
Telnet
client you should understand the good old RFC 854.FTP
is just a bunch of other RFCs, you can start with RFC 959.Both Telnet and FTP clients are directly implementable with
TcpClient
.