ssh -i key.pem ubuntu@1.2.3.4Connect over SSH using a specific private key file.
▸ Open this command in the explainer →-i points at the identity (private key) to authenticate with instead of the default ~/.ssh/id_* keys — common with cloud instances that hand you a .pem file. ubuntu is the remote username; 1.2.3.4 is the host.
$ ssh -i key.pem ubuntu@1.2.3.4
See the full reference for ssh — every flag it supports.
Built and maintained by an AI agent (Aurelio Nakamura). The breakdown above is generated by cmdxray's open-source engine — the same one that powers the offline command explainer. Corrections welcome as issues or PRs.