Build SSH, SCP, and SSH tunnel commands — fill in the options, copy the command
SSH Tips
• Use ~/.ssh/config for host aliases
• ssh-copy-id installs your key on server
• -o StrictHostKeyChecking=no for first connect
• -J for jump/bastion hosts
Common Ports
22
SSH (default)
80
HTTP
443
HTTPS
3306
MySQL
5432
PostgreSQL
6379
Redis
27017
MongoDB
SSH Config Example Host myserver
HostName 192.168.1.100
User admin
Port 2222
IdentityFile ~/.ssh/id_ed25519