define ~/.ssh/config file with the following contents:
nano ~/.ssh/config
Host mars
    HostName meh.example.com
    User admin
    Port 1234
    IdentityFile ~/.ssh/id_rsa
mars is identical name which we use in terminal for example :
ssh mars

 
