ssh-keygen -t rsa -f ~/.ssh/id_rsa.home ssh-keygen -t rsa -f ~/.ssh/id_rsa.work
~/.ssh/config ################## Host home Hostname home.example.com IdentityFile ~/.ssh/id_rsa.home User <your home acct>
Host work Hostname work.example.com IdentityFile ~/.ssh/id_rsa.work User <your work acct> ##################
|