Aug 21, 2006 #1 NetworkGhost IS-IT--Management Joined Apr 12, 2005 Messages 1,324 Location US Is it possible to use C++ to program a automated telnet/ssh session?
Aug 21, 2006 #2 cpjust Programmer Joined Sep 23, 2003 Messages 2,132 Location US Yes. You'd probably want to use popen() to run telnet... Then use the stream functions like fgets(), fputs()... to read & write to the telnet session. Upvote 0 Downvote
Yes. You'd probably want to use popen() to run telnet... Then use the stream functions like fgets(), fputs()... to read & write to the telnet session.
Aug 21, 2006 Thread starter #3 NetworkGhost IS-IT--Management Joined Apr 12, 2005 Messages 1,324 Location US sweet. Ill try it. Upvote 0 Downvote