Telnet(Kind of Urgent)

  • Thread starter Thread starter scorpion53061
  • Start date Start date
S

scorpion53061

Does the .NET Framework have a way I can telnet into my unix server and read
what I am doing????? I would telnet in to an ip, send a username, then enter
then send a password then enter and get me to the command prompt?
 
Does the .NET Framework have a way I can telnet into my unix server
and read what I am doing????? I would telnet in to an ip, send a
username, then enter then send a password then enter and get me to the
command prompt?


Kind of - check out the NetworkStream and System.Net.Sockets.TcpClient
Classes.
 
Do you know if there is a code sample in vb.net similar to what I am trying
to do?
 
Does the .NET Framework have a way I can telnet into my unix server and read
what I am doing????? I would telnet in to an ip, send a username, then enter
then send a password then enter and get me to the command prompt?

Scorp...

The framework does not have any specific support for the telnet
protocol. It does of course provide the basic classes needed to roll
your own, but telnet is not the easiest protocol, and your time would
probably be better spent using a 3rd party telnet component. I do know
there are some specifically for .NET.

Tom Shelton
 
Back
Top