- Does it cover SSH keys?
- Yes — generation, types (ed25519 is current best), and how ~/.ssh/authorized_keys works.
- Port forwarding?
- Local (-L), remote (-R), and dynamic SOCKS (-D). Common uses: accessing a DB behind a bastion, exposing a local server to collaborators.
- What about ~/.ssh/config?
- Essential — host aliases, ProxyJump for bastions, ControlMaster for connection reuse. Saves enormous friction once set up.
- How do I transfer files?
- scp is in the cheatsheet. For modern workflows, rsync (covered briefly) is often better. SFTP is mentioned for GUI clients.