vote up 0 vote down star
1

I'm creating a bash script to create new EC2 instances and then upload a file once the instance is created. I'm using scp to upload the file, however, since this is the first time I'm connecting to the instance the script is prompted with "Are you sure you want to continue connecting (yes/no)?" since the authenticity of the host is not known. The script needs to run non-interactively.

Is it possible to avoid the prompt (there doesn't seem to be an obvious command line option). If not is there an alternative method or command I can use to upload the file?

flag

45% accept rate
I'm in the same situation. I have a large amount of boxes SCP'ing around and have the same problem. I investigated many hours into this issue but haven't found an appropriate solution. Looking forward for answers! – Malax Sep 7 at 14:55

2 Answers

vote up 3 vote down check

You can set the option StrictHostKeyChecking to no in ~/.ssh/config. See ssh_config(5)

link|flag
2  
Ah, that is a cleaner solution than mine :-). Although it probably is lots safer to create a separate config file used only for the script and specify that using the -F <configfile> switch. – Simon Groenewolt Sep 7 at 15:36
1  
This can also be done from the command line "scp -o StrictHostKeyChecking=no ..." – Richard Dorman Sep 16 at 9:48
vote up 0 vote down

Although maybe not the definitive and safest solution, you could try writing an expect script.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.