- Organized 252 files across project - Root directory: 187 → 2 files (98.9% reduction) - Moved configuration guides to docs/04-configuration/ - Moved troubleshooting guides to docs/09-troubleshooting/ - Moved quick start guides to docs/01-getting-started/ - Moved reports to reports/ directory - Archived temporary files - Generated comprehensive reports and documentation - Created maintenance scripts and guides All files organized according to established standards.
1.2 KiB
1.2 KiB
Proxmox Host IP Mappings
Date: 2026-01-05
Host Mappings
| IP Address | Hostname | Purpose |
|---|---|---|
| 192.168.11.10 | ml110 | Proxmox host |
| 192.168.11.11 | r630-01 | Proxmox host (containers deployed here) |
| 192.168.11.12 | r630-02 | Proxmox host |
For Key Loading
Use r630-01 (192.168.11.11) - This is where the supporting service containers are deployed:
- VMID 106: Redis (192.168.11.110)
- VMID 107: Web3Signer (192.168.11.111)
- VMID 108: Vault (192.168.11.112)
Quick Commands
# Copy keys to r630-01
scp /tmp/web3signer-keys/keystore-*.json root@192.168.11.11:/tmp/web3signer-keys/
# Load keys into Web3Signer
ssh root@192.168.11.11 'bash -s' < /home/intlc/projects/proxmox/rpc-translator-138/scripts/load-keys-complete.sh
Add to /etc/hosts (Optional)
To use hostnames instead of IPs:
cat <<EOF | sudo tee -a /etc/hosts
192.168.11.10 ml110
192.168.11.11 r630-01
192.168.11.12 r630-02
EOF
Then you can use:
scp /tmp/web3signer-keys/keystore-*.json root@r630-01:/tmp/web3signer-keys/
ssh root@r630-01 'bash -s' < /home/intlc/projects/proxmox/rpc-translator-138/scripts/load-keys-complete.sh