Is there any chance to skip the known_hosts check without clearing known_hosts or disable in ssh.conf? I neither have access to known_hosts nor ssh.conf yet. Don't find any suitable in man.

link|improve this question
what does "I neither have access to known_hosts nor ssh.conf yet. Don't find any suitable in man." mean? The known_hosts file is created once you have connected, so all should be fine. – glglgl Nov 13 '11 at 12:36
Hi glglgl, that known_hosts is a file from another service user and visudo is not working correctly. So I have no writeable access to known_hosts nor ssh.conf. There is a false signature within that known_hosts file. – burnersk Nov 15 '11 at 8:36
feedback

1 Answer

up vote 5 down vote accepted

scp is supposed to take the same command line options as ssh, try: "-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null", maybe add -q to disable the warnings as well.

link|improve this answer
Thanks, arjarj. it worked out. – burnersk Nov 13 '11 at 9:40
feedback

Your Answer

 
or
required, but never shown

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