Bulk Import Servers
Import multiple server configurations at once using a JSON file.
JSON Format
Section titled “JSON Format”[ { "name": "My Server", "ip": "example.com", "port": 22, "user": "root", "pwd": "password", "keyId": "", "tags": ["production"], "autoConnect": false }]Fields
Section titled “Fields”| Field | Required | Description |
|---|---|---|
name | Yes | Display name |
ip | Yes | Domain or IP address |
port | Yes | SSH port (usually 22) |
user | Yes | SSH username |
pwd | No | Password (avoid - use SSH keys instead) |
keyId | No | SSH key name (from Private Keys - recommended) |
tags | No | Organization tags |
autoConnect | No | Auto-connect on startup |
Import Steps
Section titled “Import Steps”- Create JSON file with server configurations
- Settings → Backup → Bulk Import Servers
- Select your JSON file
- Confirm import
Example
Section titled “Example”[ { "name": "Production", "ip": "prod.example.com", "port": 22, "user": "admin", "keyId": "my-key", "tags": ["production", "web"] }, { "name": "Development", "ip": "dev.example.com", "port": 2222, "user": "dev", "keyId": "dev-key", "tags": ["development"] }]- Use SSH keys instead of passwords when possible
- Test connection after import
- Organize with tags for easier management
- Delete JSON file after import
- Never commit JSON files with credentials to version control