Al tratar de conectarse por ssh a un servidor linux obtengo el error en el cliente ssh:

No RSA host key is known for 10.160.3.45 and you have requested strict checking.
Host key verification failed.

Solución:
• Agregar en el archivo de configuración /etc/ssh/ssh_config este parámetro

StrictHostKeyChecking no

• Ó Agregar en el archivo ~/.ssh/config este parámetro

Host *
StrictHostKeyChecking no

• Ó, usar esta ocion como parámetro al comando ssh -o StrictHostKeyChecking=no.

ssh -o StrictHostKeyChecking=no servidor.com