Connect with PuTTY
PuTTY is the most classic SSH client for Windows — free and lightweight.
Download PuTTY
Visit the PuTTY website to download the latest version.
We recommend the MSI installer, which includes:
| Tool | Description |
|---|---|
| PuTTY | SSH client |
| PuTTYgen | SSH key generation/conversion tool |
| Pageant | SSH key agent |
| PSCP | Command-line file transfer |
| PSFTP | SFTP client |
Configuration
1. Open PuTTY
Launch PuTTY and fill in the Session page:
| Field | Value |
|---|---|
| Host Name | Your server IP address |
| Port | 22 |
| Connection type | SSH |
2. Save Session (Optional)
- Enter a name in Saved Sessions (e.g.,
GoMami HKG) - Click Save
- Double-click next time to connect
3. Connect
Click Open to connect. On first connection, a security alert will pop up — click Accept to trust the server key.
4. Log In
login as: root
root@your_server_ip's password: [enter password]
Using SSH Keys
Generate Key (PuTTYgen)
- Open PuTTYgen
- Select key type EdDSA or RSA (4096 bits)
- Click Generate, move mouse to generate randomness
- Set key passphrase (optional but recommended)
- Click Save private key to save (
.ppkfile) - Copy public key text and add to control panel
Configure Key Login
- In PuTTY, go to Connection > SSH > Auth > Credentials
- Select your
.ppkfile in Private key file for authentication - Return to Session and save configuration
info
PuTTY uses .ppk format private keys. If your key is in OpenSSH format (id_ed25519), convert with PuTTYgen: File > Load private key > Save private key.
Recommended Settings
- Window > Appearance — Set font and size
- Window > Translation — Set to UTF-8 for proper character display
- Connection > Data — Enter
rootin Auto-login username - Connection — Set Keepalive to 60 seconds to prevent timeout disconnections
File Transfer
Use PSCP or PSFTP for file transfer:
:: Upload file
pscp local_file.txt root@your_server_ip:/remote/path/
:: Download file
pscp root@your_server_ip:/remote/file.txt local_path\
Next Steps
- Manage SSH Keys — Manage keys in the control panel
- Security Hardening — Harden server security