473,768 Members | 1,449 Online
Bytes | Software Development & Data Engineering Community
+ 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 4848

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

Similar topics

2
1380
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. I've tried sending chr(29), which is the ascii equivalent, but that doesn't seem to work. Is there something I'm missing? Any pointers would be much appreciated. Thanks
4
14000
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 this socket just like you would enter things on the keyboard if you telneted to this server). In a normal telnet session you can enter some commands which take a long time to complete, and they run in the background and you get the command line...
2
6270
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 like to send the helo command to the smpt port with this telnet open. Does anyone here know how to? Thanks. (kinda desired output)
7
14099
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 Telnet client. I just need to send a telnet request to a local IP address on a LAN issue a "c" then a "b" and stream back the text for internal use. The "c" changes sub-menus and the "b" is a switch to dump the status of a firewall. I need to issue...
2
2263
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. System.Web.Mail.SmtpMail.SmtpServer = "127.0.0.1" System.Web.Mail.SmtpMail.Send(TextBox1.Text, TextBox2.Text, TextBox3.Text, TextBox4.Text)
0
1508
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 command quickly. For example, I want to creata a script and run that script on the telnet window. For simpliciy lets say I would like to list directory contents 2 times in a row. I want to process "dir" two times. So, via code I send the dir...
3
2050
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 used, this module waits for the 'prompt' to decide whether the command is finished or not. Now in case the 'timeout' is reached before the 'prompt' appears, the module directly throws error (even if the command might actually be running on the remote...
5
8789
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
2375
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# telnet clients which i have no hope of integrating into my project .Can anyone tell me where i can get a free telnet client that can load scripts without user input or a way to achive the above without a massive telnet client ? thanks
0
9576
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10175
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10017
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9961
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9843
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8840
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7384
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
1
3932
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3534
muto222
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.