473,471 Members | 1,912 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Sending commands to Telnet from C++

1 New Member
I am trying to reboot several devices on my private network through telnet. I wrote a vbs that does the operation but i cannot select any other window while it is running of the input will not go into the telnet window created. I have begun to convert the code to C++ and am having problems I can get telnet to open to the ip address that I want but do not know how to pass any commands to it. I have read about 30 different website and people say how you do it but noone has provided any sample code of how it would work. Here is the code that I have so far.

Expand|Select|Wrap|Line Numbers
  1. #include <windows.h>
  2. #include <string>
  3. #include <iostream>
  4. #include <comdef.h>
  5. #include <atlbase.h>
  6.  
  7. using namespace std;
  8. string ipaddress;
  9. string rebootradio (string);
  10.  
  11. int main()
  12. {
  13.     string telnetid, telnetpw;
  14.  
  15.     telnetid = "xxxx";
  16.     telnetpw = "xxxx";
  17.  
  18.  
  19.     rebootradio ("192.168.1.2");
  20.     rebootradio ("192.168.1.3")
  21.     rebootradio ("192.168.1.4")
  22.     rebootradio ("192.168.1.5")
  23.     rebootradio ("192.168.1.6")
  24.     rebootradio ("192.168.1.9")
  25.     rebootradio ("192.168.1.11")
  26.     rebootradio ("192.168.1.12")
  27.     rebootradio ("192.168.1.13")
  28.     rebootradio ("192.168.1.14")
  29.     rebootradio ("192.168.1.15")
  30.     rebootradio ("192.168.1.16")
  31.     rebootradio ("192.168.1.17")
  32.     rebootradio ("192.168.1.18")
  33.     rebootradio ("192.168.1.19")
  34.     rebootradio ("192.168.1.20")
  35.     rebootradio ("192.168.1.21")
  36.     rebootradio ("192.168.1.22")
  37.     rebootradio ("192.168.1.30")
  38.     rebootradio ("192.168.1.31")
  39.     rebootradio ("192.168.1.32")
  40.     rebootradio ("192.168.1.33")
  41.     rebootradio ("192.168.1.34")
  42.     rebootradio ("192.168.1.35")
  43.     rebootradio ("192.168.1.36")
  44.     rebootradio ("192.168.1.37")
  45.     system ("Pause");
  46.     return 0;
  47. }
  48.  
  49.  
  50. string rebootradio (string ipaddress)
  51. {
  52.          system (("Telnet " + ipaddress).c_str()); 
  53.           ("lego");
  54.          system ("mania");
  55.          wshShell.SendKeys "iden radio 1 reset on{ENTER}" 'repeat as needed 
  56.          wscript.Sleep 2000 
  57.          wshShell.SendKeys "iden radio 2 reset on{ENTER}" 'repeat as needed 
  58.          wscript.Sleep 2000 
  59.          wshShell.SendKeys "exit{ENTER}" 'close telnet session' 
  60.          wscript.Sleep 2000 
  61.          wshShell.SendKeys "{ENTER}" 'get command prompt back 
  62.          wscript.Sleep 2000 
  63.          wshShell.SendKeys "exit{ENTER}" 'close cmd.exe
  64. }
  65.  
as i said i have started to convert it but have not finished it gets to the login name part of the telnet session and I do not know how to take my information from the program.
Jan 27 '09 #1
0 4793

Sign in to post your reply or Sign up for a free account.

Similar topics

2
by: John Abel | last post by:
I have written a script that makes a telnet connection, runs various commands, and returns the output. That was the easy bit :) However, to close the session, I need to send ^] followed by quit. ...
4
by: Scott | last post by:
I am using a TCPIP connection to communicate over port 23 (telnet) to a server, and I am having to mimic normal command line interface you owuld see in a telnet session (i.e. I have to write to...
2
by: Zach Flynn | last post by:
Ok, so I'm programming in Unix if that makes any difference. And I'm doing: system("telnet somehost.com 25"); But I can't figure out how to send a command to it. Like, for example, I would...
7
by: Rex Winn | last post by:
I've Googled until my eyes hurt looking for a way to issue Telnet commands from C# and cannot find anything but $300 libraries that encapsulate it for you. I don't want to be able to create a...
2
by: barry | last post by:
The code below is in a button but though there is no error message of any kind I am not getting the email which I am sending to myself. Any help would be appreciated. ...
0
by: knowthediff | last post by:
Hello, I have a VS 2005 windows form app that I am creating. It uses Async socket to telnet which sends and receives commands. Everything seems to be working fine until I attempt to process a...
3
by: surajsingh | last post by:
Hi, I have a perl script which uses Net::Telnet module to open a telnet session with my unix boxes, and executes lot of commands on those boxes. As this module is implemented, when 'cmd' is...
5
by: pbd22 | last post by:
Hi. Anybody know of any good code examples out there on how to take a telnet command and parse it? Thanks!
2
by: HTCGuy | last post by:
Hi, im building an application that has to run a series of simple telnet commands . login wget some links chmod some files exit The only thing Ive found sofar are massive fully function c#...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.