bash script for ssh login-


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting bash script for ssh login-
# 1  
Old 10-25-2007
Data bash script for ssh login-

hi.
I need a bash script which can login to an other mashin via SSH and then run some commands and then return the result to my mashine.
I dont know where to begin, I think first I will need a ssh connection, dont know how to make it,
then , do I need a ftp connection between the 2 mashins to transfare data/files from mashine2 to mashine1 ?
is this things possible in bash ? it should be..
Please help.
# 2  
Old 10-25-2007
Quote:
Originally Posted by big_pil
hi.
I need a bash script which can login to an other mashin via SSH and then run some commands and then return the result to my mashine.
I dont know where to begin, I think first I will need a ssh connection, dont know how to make it,
then , do I need a ftp connection between the 2 mashins to transfare data/files from mashine2 to mashine1 ?
is this things possible in bash ? it should be..

Create public and private keys (with ssh-keygen -- read the man page) and install them.

Then you can use a command like:

Code:
remoteuser=myname
remotecomputer=example.com
ssh -l "$remoteuser" "$remotecomputer" "ls -l; date; "

To capture the result either redirect it to a file or store it in a variable with command substitution.
# 3  
Old 10-26-2007
what about password ?

Hi.. I ran your script and it did work well, but I needed to type the password, how can I do it if I want the password inside the script ? so it runs automaticly without asking about password ?
# 4  
Old 10-26-2007
Quote:
Originally Posted by big_pil
Hi.. I ran your script and it did work well, but I needed to type the password, how can I do it if I want the password inside the script ? so it runs automaticly without asking about password ?

I repeat:
Create public and private keys (with ssh-keygen -- read the man page)
and install them.

# 5  
Old 10-26-2007
Quote:
Originally Posted by big_pil
Hi.. I ran your script and it did work well, but I needed to type the password, how can I do it if I want the password inside the script ? so it runs automaticly without asking about password ?
On the server, the public key should be appended to $HOME/.ssh/authorized_keys

on the client, the private key should go in '$HOME/.ssh', called id_XXX depending on the type of key.

The key pair should be made without password.

SSH User Identities
# 6  
Old 10-29-2007
u can use ssh -l username IP "cmd"
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Ubuntu

Expect /bash, 2 ssh login users

HI all i need to connect to about 900 cisco routers and switch to do some configs changes. the issue i am having is that half the devices have one set of username and password and the other half have another username and password. From expect or bash script i can ssh into a device and make... (1 Reply)
Discussion started by: quintin
1 Replies

2. Shell Programming and Scripting

Automate OTPW login to ssh via bash script

Hello everyone. I'm a Linux novice trying out a lot of bash scripting lately, as it is so very addictive. Lately I have been setting up one of my boxes remotely and have been hardening it as much as possible. Please allow me to explain the scenario, as it does tend to become a little... (1 Reply)
Discussion started by: instro
1 Replies

3. Shell Programming and Scripting

Expect script ssh passwordless login

how can i use an expect script to do a passwordless ssh login and run a script on a bunch of remote hosts? I do not want to use public key authentication as this would require me to setup the keys on the clients etc.... (2 Replies)
Discussion started by: tdubb123
2 Replies

4. Red Hat

ssh login using script

Hello All, I am trying to login on server using ssh script & expect.Login to server successful but after login when i hit enter it gets hanged & when pressing CTRL +C it logs me out from the server. Scripts are as below. #!/bin/bash FILE=login.txt CONNECT=sshlogin.exp SERVERNAME=$1... (2 Replies)
Discussion started by: ajaincv
2 Replies

5. Shell Programming and Scripting

Need help on ssh login script to cisco ios

I'm trying to write a login script to ssh into a cisco switch that will run some command remotely. Similar to this expect script located here: SSH login expect shell script to supply username and password However, that script does not work with cisco ios. Anyway know what the best way to... (1 Reply)
Discussion started by: streetfighter2
1 Replies

6. Shell Programming and Scripting

BASH ssh login

Ok, there's been a good number of posts about this, but here goes. I want a script to log in to a system via ssh without using keys. This will be used to log in to Cisco IOS devices. I have tried the following, but could not get it to work: SSH login expect shell script to supply username and... (1 Reply)
Discussion started by: mike909
1 Replies

7. Shell Programming and Scripting

SSH login with user name and script.

I want to login to server using ssh or telnet and execute one command then exit to the shell Please let me know how to write script for this? (1 Reply)
Discussion started by: svenkatareddy
1 Replies

8. Shell Programming and Scripting

bash ssh login script

hello anyone have done ssh login script without "expect" (automatic login from host A / user b to Host B / user b without enter any passwords)? cheers (2 Replies)
Discussion started by: modcan
2 Replies

9. UNIX for Advanced & Expert Users

Use of sudoer with ssh login shell script (KSH)

Greetings all, I'm in the midst of writing a login component for a series of shell scripts. What my login script does is this: 1. Prompt for username and read in username 2. Prompt for destination host and read in destination host 3. run ssh username and destination host 4. After user keys... (0 Replies)
Discussion started by: rockysfr
0 Replies

10. Shell Programming and Scripting

How can we ssh login with script?

Hi all, Normally, we give ip address to login with ssh like ssh 172.168.0.1 And we can give login name to ssh like ssh -l root 172.10.0.21 Then the shell asks the password, we enter the password and login to the system. While using the script file, we are not able to supply the password to... (5 Replies)
Discussion started by: pcsaji
5 Replies
Login or Register to Ask a Question