Sponsored Content
Top Forums Shell Programming and Scripting Login to remote machine pass commands and capture all in a file Post 302965524 by Don Cragun on Saturday 30th of January 2016 04:08:51 AM
Old 01-30-2016
Quote:
Originally Posted by imas
Dear Don,

Appreciate your quick response. currently what i am trying to do is:


Code:
$ cat file.txt

echo "18"
sleep 5
echo "login:uid=inventory"
sleep 5
echo "flask1234!"
sleep 5
echo "strv-stp"
sleep 500
echo ""
echo "quit"
$

following is the output i get

Code:
$ ssh -N -f -L 50003:127.0.0.1:23 10.64.246.124; telnet 127.0.0.1 50003 <file.txt  >>out.log
$ Connection to 10.64.246.124 closed by remote host.

Code:
$ cat out.log
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.

telnet> \r"
?Invalid command
telnet> Connection closed.
$

---------- Post updated at 01:50 PM ---------- Previous update was at 01:48 PM ----------

Also tried using expect but some mistake i am making
Code:
$ cat script.sh
#!/usr/bin/expect

expect "Select a terminal"

send "18"

sleep5
send "login:uid=inventory"
sleep 5
send "flask1234!"
sleep 5
send "rtrv-stp"
sleep 50
send ""
sleep 10
send "quit"
$

Output i get

Code:
$ ssh -N -f -L 50003:127.0.0.1:23 10.64.246.124; telnet 127.0.0.1 50003 <script.sh  >>out.log
$ Connection to 10.64.246.124 closed by remote host.

Code:
$ cat out.log
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.

telnet> "
?Invalid command
telnet> Connection closed.
$

Try just putting the following text in file.txt:
Code:
18
login:uid=inventory
whateverYourPasswordIs
strv-stp

quit

In other words, just put the exact text that you would type into your terminal in response to the prompts issued by the remote server. No echo, no double-quotes, no sleep unless you would type those commands to the remote server when you are running an interactive session with that server.

And, then run your command:
Code:
$ ssh -N -f -L 50003:127.0.0.1:23 10.64.246.124; telnet 127.0.0.1 50003 <file.txt  >out.log

If you really want to preserve the output from previous runs and just tack the output from this run to the end of the output from previous runs, change the >out.log at the end of the script back to >>out.log.
This User Gave Thanks to Don Cragun For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Read through a file and Pass system commands

Hi, I have a file xyz.txt, which contains several "tar.gz" package names Eg :- Now i need to execute an rpm - ivh against all those packages in this file through a script one by one. I need a script to read through the file "xyz.txt", pick up each package name and execute rpm -ivh... (7 Replies)
Discussion started by: systemali
7 Replies

2. Shell Programming and Scripting

Login to a remote solaris machine as superuser through perl

I am trying to write a perl script that will do remote machine. I have done user loging using simple command; $telnet->login('test', 'test123'); But now I want to do root login or superuser login. So I tried the superuser command, $telnet->cmd("su"); But I am not able to send the... (0 Replies)
Discussion started by: james2
0 Replies

3. Shell Programming and Scripting

check for a file on a remote machine

Hi, Can someone tell me how to check if a file exists on a remote machine using rexec command?I'm using ksh. Thanks (3 Replies)
Discussion started by: Sheema
3 Replies

4. Shell Programming and Scripting

without password to login into remote machine- in the script ??

HI, I need to write a script .. when I run this script , will directly goto that remote machine without asking password.. Once it is entered, I needs to transfer some of the log files... how can I proceed ? (7 Replies)
Discussion started by: hegdeshashi
7 Replies

5. Red Hat

To find the LATEST file from a dir on REMOTE machine and SCP to local machine?

Hi All, URGENT - Please help me form a scipt for this: I need the LATEST file from a dir on REMOTE machine to be SCP'd to a dir on local machine. (and I need to execute this from local server) I know that the below cmd is used to find the LATEST file from a dir. But this command is not... (3 Replies)
Discussion started by: me_ub
3 Replies

6. Shell Programming and Scripting

Need help with executing multiple commands in remote machine

Hi, I work on a jumpserver and I wrote a script to transfer a file from source server to destination server. #!/bin/ksh echo "\nEnter the file name:\n" read name echo "\nSelect the Source server\n" echo "1. ODS PROD " echo "2. ODS DROPBOX" echo "3. ODS STE" echo "4. ODS STE DROPBOX"... (6 Replies)
Discussion started by: ajayakunuri
6 Replies

7. Linux

send remote commands to windows machine?

hey guys, I've done some searching and other than winexe I haven't been able to find a way to send remote commands to a windows machine. The problem I get is with winexe whenever you send the process to the background in a script, I get the following error. :wall: Any help is appreciated! ... (0 Replies)
Discussion started by: terrell
0 Replies

8. Shell Programming and Scripting

Login to remote host and execute commands

Hi, i want to write script where it will login into 50 hosts and if login is successful it print message "login to host1 is successful" if not it should print message "Not able to login to host1". once connection to the host is succesful it should fire df command to check filesystem if df is... (3 Replies)
Discussion started by: amru8810
3 Replies

9. UNIX for Dummies Questions & Answers

How to run UNIX commands on remote machine from windows?

Hi All, I am working in support and we are planning to automate a system to reduce the direct manual intervention to core system. Please find the below details. 1. we have a web application that runs on Windows Platform. 2. From web application, we need to connect to remote Unix machine.... (6 Replies)
Discussion started by: Balaji K
6 Replies

10. Shell Programming and Scripting

Commands not working with ssh remote login

Hi Friends, I am unable to run our application commands on remote server using ssh (passwordless login enabled). But the same command running with telent perl script. please suggest. SSH: C:/bin>ssh -l monitor tl04cp01 exec "/home/monitor/123" /home/monitor/123: viewlog: not found. ... (7 Replies)
Discussion started by: suresh3566
7 Replies
All times are GMT -4. The time now is 01:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy