# ssh without key #ssh Standard method: ```shell ssh -i ~/.ssh/id_rsa [email protected] ``` Preferred method: ```shell ssh [email protected] ``` Solution: - Start the SSH agent in your terminal and include your keys: ```shell if [ -z "$SSH_AUTH_SOCK" ]; then eval $(ssh-agent -s) > ~/.ssh/ssh-agent fi ssh-add ~/.ssh/id_rsa ssh-add ~/.ssh/production_rsa ssh-add ~/.ssh/dev_rsa ```