Supply passphrase for ssh in script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Supply passphrase for ssh in script
# 1  
Old 05-18-2016
Supply passphrase for ssh in script

I would like to write a bash shell script which will connect to remote server using passphrase. (I have public-private infrastructure created, and as per instruction, I must not use password less ssh).
This particular script will be fired from cron.

Can you please advice how I can supply the passphrase (from any file or any other way) in the script ?
# 2  
Old 05-18-2016
If that "instruction" is based on "security considerations", please be aware that supplying authentication from within a script or even a file is way less secure than e.g. ssh's public key method!
# 3  
Old 05-18-2016
Thank you so much RudiC for the advice. Yes we will try to make it secure. I tried ssh-add, sshpass, keychain.... but nothing is working.

Please advice.

---------- Post updated at 06:50 AM ---------- Previous update was at 05:55 AM ----------

Got the solution.

1. Store the password in file or environment variable.
Code:
export MYPASS=XXXXX

2. Export DISPLAY environment variable with some value
Code:
export DISPLAY=1

3. Create a helper file
Code:
#!/bin/bash
exec cat

4. Execute ssh-add
Code:
echo $MYPASS|SSH_ASKPASS=./helperfile.sh ssh-add ~/.ssh/id_rsa


Moderator's Comments:
Mod Comment Thanks for using tags, but: Please use code tags (not HTML tags) as required by forum rules!

Last edited by RudiC; 05-18-2016 at 08:15 AM.. Reason: Changed HTML to CODE tags.
This User Gave Thanks to atanubanerji For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

How to disable/bypass passphrase prompt in ssh?

Hi Folks, I have setup a passwordless connection from my Linux ( source) machine toSolaris ( destination ) machine. I have added passphrase while creating the rsa key. Now problem is each time when i make a connection i have to give the passphrase to make connection. How to override this ? I... (4 Replies)
Discussion started by: chidori
4 Replies

2. Shell Programming and Scripting

how to supply arguments for a script while ssh to a server

Hi, I have something like below code piece in ksh while read machine do ssh $user@$machine < steps.ksh $RPI done < $machine here, after it gets logged in to server it is not considering the $PRI as argument for steps.ksh script please suggest the fix. (1 Reply)
Discussion started by: rbalaj16
1 Replies

3. OS X (Apple)

ssh passphrase issues - Mac OS X

ssh passphrase permissions issues I will try to be as thorough as possible, but keep in mind I am a designer, not a programmer... I do have linux mdadm experience and am reasonably comfortable behind the terminal, but I may need things to be spelled out for me. I am using 2 new-ish Macs with... (1 Reply)
Discussion started by: Ahab the Eskimo
1 Replies

4. UNIX for Advanced & Expert Users

ssh: require passphrase from some servers but not others

We have a number of linux clusters running Oracle. The clusters require that all member nodes have promptless/passwordless login through ssh (ie. the keys were created with null passphrases). We also have a management server that is not a member of any cluster but routinely connects to nodes of all... (3 Replies)
Discussion started by: Squeakygoose
3 Replies

5. Shell Programming and Scripting

automated ssh with provision for passphrase

Below is a part of my shell script. Currently I have shared the public key of the client with the host, therefore I will not be prompted for the password. The key that has been created on the client is also without a passphrase. If it is created with a passphrase, the code I have will not... (3 Replies)
Discussion started by: farahzaiba
3 Replies

6. UNIX for Dummies Questions & Answers

follow-up question on passphrase and script

can i use key with passphrase on a script/batch process? i am not sure how to pass the pasphrase in the script. i'd like to automate secure file transfer. thanks in advance (0 Replies)
Discussion started by: NoelSacay
0 Replies

7. AIX

Supply Password Thru Script

Hello, I am using AIX 5 and one of the application does certain db updation daily and runs few script. One script among them calls another program, which in turn asks for a user Id and password. Is there anyway to use 'expect' of something similar on AIX so that while calling that program of... (1 Reply)
Discussion started by: panchpan
1 Replies

8. Solaris

SSH passphrase and Password

Hello all, Today we run ssh with keys on all our Solaris systems. But I wounder: Is it possible to add another authentication too. Like the os/system regular password so the users first need to enter the ssh phasssphrase and after that they need to enter the os/system password. I need like... (3 Replies)
Discussion started by: jOOc
3 Replies

9. UNIX for Advanced & Expert Users

passphrase and ssh authentication

In which case could be better don't use a passphrase creating an authentication key for ssh comunications? Thanks in advance. (1 Reply)
Discussion started by: Minguccio75
1 Replies

10. UNIX for Advanced & Expert Users

ssh - at login Passphrase for key required

Hello, I want to use a shell-script to transfer data over sftp. I donīt find a way to login in automatically. I tried to send the password in a script like possible with ftp sftp user@server << cmd password cd /distant/directory lcd /local/directoryget ssh_install get ( or put) your... (2 Replies)
Discussion started by: olso
2 Replies
Login or Register to Ask a Question