Linux/Bash
SSH Commands
Connect securely to remote systems. Learn SSH configuration, key authentication, and tunneling for secure remote access.
9 commands
Pro Tips
Use SSH config (~/.ssh/config) to save host aliases, usernames, and key paths for quick access.
Use 'ssh-copy-id user@host' to easily install your public key for passwordless login.
Use '-J' for jump hosts: 'ssh -J jump-host target-host' chains through a bastion server.
Common Mistakes
Never share private keys. If compromised, regenerate keys and update all authorized_keys.