SSH questions


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SSH questions
# 1  
Old 04-11-2009
SSH questions

#!/bin/ksh
ssh-keygen -t rsa

for host in `cat filename`
do
ssh ${LOGNAME}@$host "mkdir -p ~/.ssh"
echo "Please key in password for host:"$host" (only if prompted)"
________________________________________________________
scp ~/.ssh/id_rsa.pub ${LOGNAME}@$host:~/id_rsa.pub
ssh ${LOGNAME}@$host "cat ~/id_rsa.pub >> ~/.ssh/authorized_keys"
ssh ${LOGNAME}@$host "chmod 644 ~/.ssh/authorized_keys"
___________________________________________________________

done

How the commands between two lines will run without asking for password from script.

Please explain
# 2  
Old 04-12-2009
They will ask for your password, afterwards SSH and SCP will not because you have setup a shared key in the remote hosts ~/.ssh/authorized_keys file and in your local hosts ~/.ssh folder.

If you want them not to ask for your password then you could write an expect(1) script to do it but that would be poor security because the expect(1) script would have to have tour password in it.

See: http://floppsie.comp.glam.ac.uk/Glamorgan/gaius/scripting/5.html for an example expect(1) script.

Take a look at ssh-agent which would ask for your password once per session and the provide it for you, take a look at: http://mah.everybody.org/docs/ssh

Last edited by TonyFullerMalv; 04-12-2009 at 12:06 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Questions about ssh

Lets say a brand new user types: ssh-keygenthen: ssh-copy-id -i remoteServerLocation.comWhat all happens on the server side? For instance, obviously the id_rsa.pub key is copied to the servers "authorized_keys" file but what else happens? Is anything added to the servers "known_hosts" file?... (1 Reply)
Discussion started by: Circuits
1 Replies

2. Shell Programming and Scripting

Find active SSH servers w/ ssh keys on LAN

Hi, I am trying to complete my bash script in order to find which SSH servers on LAN are still active with the ssh keys, but i am frozen at this step: #!/bin/bash # LAN SSH KEYS DISCOVERY SCRIPT </etc/passwd \ grep /bin/bash | cut -d: -f6 | sudo xargs -i -- sh -c ' && cat... (11 Replies)
Discussion started by: syrius
11 Replies

3. UNIX for Beginners Questions & Answers

Ssh script to validate ssh connection to multiple serves with status

Hi, I want to validate ssh connection one after one for multiple servers..... password less keys already setup but now i want to validate if ssh is working fine or not... I have .sh script like below and i have servers.txt contains all the list of servers #/bin/bash for host in $(cat... (3 Replies)
Discussion started by: sreeram4
3 Replies

4. Shell Programming and Scripting

Ssh = ssh expect and keep everything not change include parameter postion

I have write a script which contains ssh -p 12345 dcplatform@10.125.42.50 ssh 127.0.0.1 -p 5555 "$CMD" ssh root@$GUEST_IP "$CMD" before I use public key, it works well, now I want to change to "expect", BUT I don't want to change above code and "parameter position" I can post a... (1 Reply)
Discussion started by: yanglei_fage
1 Replies

5. Homework & Coursework Questions

Print questions from a questions folder in a sequential order

1.) I am to write scripts that will be phasetest folder in the home directory. 2.) The folder should have a set-up,phase and display files I have written a small script which i used to check for the existing users and their password. What I need help with: I have a set of questions in a... (19 Replies)
Discussion started by: moraks007
19 Replies

6. Shell Programming and Scripting

Using ssh to add register key on ssh server

Hi, I want to use ssh to add a register key on remote ssh server. Since there are space characters in my register key string, it always failed. If there is no space characters in the string, it worked fine. The following is what I have tried. It seems that "ssh" command doesn't care about double... (9 Replies)
Discussion started by: leaftree
9 Replies

7. AIX

ssh public key setup questions.

Hi all, I have N number of AIX hosts, where I need to login frequently and do some routine tasks (run some scripts). I need to setup ssh public/private key, so I can auto-login via a master (wrapper) script and run each script in each server. I am trying to setup/generate ssh keys, but am... (6 Replies)
Discussion started by: haroon_a
6 Replies

8. Shell Programming and Scripting

could not send commands SSH session with Net::SSH::Expect

I am using Net::SSH::Expect to connect to the device(iLO) with SSH. After the $ssh->login() I'm able to view the prompt, but not able to send any coommands. With the putty I can connect to the device and execute the commands without any issues. Here is the sample script my $ssh =... (0 Replies)
Discussion started by: hansini
0 Replies

9. UNIX for Advanced & Expert Users

ssh-keygen questions (not working)

I have created the keys and placed the public key in the remote user directory (not the server root). (remote machine: dwebapp1) ex: /home/webarch/user_name/.ssh/authorized_keys2 cannot ssh into the remote machine using the following command: ssh ${dwebapp1} the manned description gives... (10 Replies)
Discussion started by: tekline
10 Replies
Login or Register to Ask a Question