Auto Login to Telnet Server using C#
I want to auto log into out telnet server by creating a windows service program. Can I use put开发者_运维知识库ty or something similar?
You can simply create a TCP socket and connect it to port 23.
Assuming you don't need any specific type of terminal emulation, you are now talking to the telnet server and you can send and receive information.
If you can provide more details on what you are trying to accomplish perhaps we can be of more help.
精彩评论