🔑 SSH Command Generator

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
22SSH (default)
80HTTP
443HTTPS
3306MySQL
5432PostgreSQL
6379Redis
27017MongoDB

SSH Config Example
Host myserver HostName 192.168.1.100 User admin Port 2222 IdentityFile ~/.ssh/id_ed25519