Centralized reference for SSH key management and access paths.
All SSH keys are stored in ~/.ssh/keys/:
~/.ssh/keys/
id_ed25519 → ~/.ssh/id_ed25519 (modern, preferred)
id_ed25519_2026-05
id_ed25519_2026-05.pub
id_rsa (RSA legacy, 2048-bit)
id_rsa_old (deprecated, from 2015)
id_rsa_old.pub
is-jumper_ed25519 (specific to is-jumper entry point)
is-jumper_ed25519.pub
| Key | File | Used By | Auth Method | Hosts |
|---|---|---|---|---|
| Modern ED25519 | ~/.ssh/id_ed25519 |
most systems | pubkey | All modern hosts, J1, J2, local lab |
| is-jumper ED25519 | ~/.ssh/keys/is-jumper_ed25519 |
is-jumper (entry point) | pubkey + IdentitiesOnly | Entry point 192.168.2.100 |
| Legacy RSA | ~/.ssh/id_rsa |
legacy systems | pubkey | Old hosts still on RSA auth |
| Deprecated RSA | ~/.ssh/keys/id_rsa_old |
final fallback | pubkey | Hosts not yet migrated (being phased out) |
Direct access — no jump needed:
is-jumper (192.168.2.100)
├─ User: root
├─ Port: 22
├─ Key: ~/.ssh/keys/is-jumper_ed25519
├─ IdentitiesOnly: yes
└─ Routing: SSH_ROUTE=local
Local dev machines (192.168.2.110-122)
├─ User: bogdan
├─ Port: 22
└─ Key: ~/.ssh/id_ed25519
Access to is-jumper:
# Direct connection (SSH will use is-jumper_ed25519 via IdentitiesOnly)
ssh is-jumper
# Verify key in use:
ssh -G is-jumper | grep identityfile
Access chain for internal company network (10.253.51.0/24):
Your machine (local)
↓ (ProxyJump is-jumper)
is-jumper (192.168.2.100) [VPN client + key guardian]
↓ (SSH forward)
J1 (10.253.51.50:25904) or J2 (10.253.51.52:25904) [jump hosts]
↓ (SSH forward)
Final host (voip, porta, radius, etc.)
~/.ssh/keys/is-jumper_ed25519ssh is-jumper
Reached through is-jumper via ProxyJump:
~/.ssh/id_ed25519 (offered by SSH client)ssh j1 # Routes: local → is-jumper → J1
ssh j2 # Routes: local → is-jumper → J2
# Interactive jump host session:
ssh -J is-jumper bogdan.timofte@10.253.51.50 -p 25904
Verify J1 config:
ssh -G j1 | grep -E '^(hostname|port|user|proxyjump|identityfile)'
From J1/J2 to actual hosts (configured in J1's/J2's local SSH config):
~/.ssh/id_ed25519# Example: PortaOne database server
ssh porta-db # → is-jumper → J1 → 193.16.148.11
# Example: VoIP PBX
ssh voip-prov # → is-jumper → J1 → 10.253.51.139
# Example: Radius database
ssh falticeni.radius-db # → is-jumper → J1 → falticeni.radius-db:24
If internal VPN is down, use public DNS names:
# Standard (internal VPN)
ssh j1 # 10.253.51.50:25904
# Emergency (public DNS)
ssh j1.next-gen.ro # j1.next-gen.ro:25904
ssh j2.next-gen.ro # j2.next-gen.ro:25904
Both routes go through is-jumper first (no direct connection).
# Test all local lab hosts
for h in is-baobab is-ebony is-tapia is-jumper is-mazeri is-toltec is-andrafiabe is-anjohibe is-nasturel is-mat; do
timeout 2 ssh -o BatchMode=yes "$h" true 2>/dev/null && echo "$h: ✓" || echo "$h: ⚠"
done
# Automatic migration (uses legacy key to install modern key)
tools/migrate-modern-key.sh is-baobab
# Or migrate all
tools/migrate-modern-key.sh
See docs/KEY_MIGRATION.md for manual procedures.
The ~/.ssh/config is auto-generated from inventory — do not edit manually.
# Regenerate after inventory changes
python3 tools/generate-configs.py
# Deploy to ~/.ssh/config
cp generated/client.conf ~/.ssh/config
# or use the deploy script:
tools/deploy-local.sh
Config files generated:
| File | Target | Purpose |
|---|---|---|
generated/client.conf |
local client (~/.ssh/config) | local access config |
generated/is-jumper.conf |
is-jumper (via deploy) | is-jumper alias config |
generated/j1.conf |
J1 (server-side) | final host access on J1 |
generated/j2.conf |
J2 (server-side) | final host access on J2 |
Diagnosis:
# Check which key is being offered
ssh -vvv porta-db 2>&1 | grep -E "Offering|Authentications"
# Check ProxyJump chain
ssh -vvv j1 2>&1 | grep -E "ProxyJump|Connecting"
Solutions:
On is-jumper — verify IdentitiesOnly and key:
bash
ssh -G is-jumper | grep identities
Should show: identitiesonly yes and identityfile ~/.ssh/keys/is-jumper_ed25519
On J1/J2 — verify modern key is installed:
bash
ssh is-jumper "ssh-keygen -l -f /home/bogdan.timofte/.ssh/authorized_keys"
Should include ED25519 fingerprints.
Regenerate and redeploy config:
bash
python3 tools/generate-configs.py && cp generated/client.conf ~/.ssh/config
Cause: Trying to access internal IPs directly without is-jumper.
Solution: Verify ProxyJump is configured:
ssh -G vo52 | grep proxyjump
# Should output: proxyjump j1
For jump hosts (reduce to 5-10 seconds):
ssh -o ConnectTimeout=5 is-jumper
ssh -o ConnectTimeout=5 j1
Check network:
# is-jumper reachable?
ping 192.168.2.100
# If behind firewall, may need port 22 open to is-jumper
id_ed25519 and id_rsa_old until all hosts migratedtools/migrate-modern-key.sh <host>python3 tools/generate-configs.pyssh -G <alias> to verify config without connecting~/.ssh/config — it's auto-generated~/.ssh/keys/ with mode 600.doc/ssh-jump-architecture.md)