Always login to ssh with the id_rsa ssh key

Always login to ssh with the id_rsa ssh key

A neat little trick to always login with ssh via a the id_rsa ssh key on mac is to put the following line at the end of your config file:

Host *
    UseKeychain yes

This way when you setup any other ssh config before that it will still use whatever key you setup there but if you haven't setup any it will use the default id_rsa key.