Manage SSH access at scale: key lifecycle, rotation, certificate-based auth (OpenSSH CA), hardware keys, RBAC, audit trails and seamless deployment to servers & instances.
Everything you need to secure SSH access across servers, containers and cloud instances.
Encrypted key vault, per-user keys, group keys, and per-project access lists. HSM-backed options available.
Automatic key rotation policies with zero-downtime re-deploy, scheduled or event-driven rotation support.
Detailed logs, session recording (optional), exportable audit trails for compliance (ISO/HIPAA-ready).
Short-lived certificates issued by a central CA — revoke instantly and avoid per-server key updates.
YubiKey / FIDO2 integration, PKCS#11 HSM, and physical token binding for high-security roles.
Full REST API, Terraform provider, Ansible modules and CI/CD hooks for onboarding and provisioning keys.
Centralize keys, issue certificates, automate deployment and track every SSH login. Typical flow:
Generate RSA key (developer):
ssh-keygen -t rsa -b 4096 -C "dev@company" -f ~/.ssh/id_rsa
Generate Ed25519 key:
ssh-keygen -t ed25519 -C "alice@company" -f ~/.ssh/id_ed25519
Issue OpenSSH certificate (CA signed):
# On CA: ssh-keygen -s ca_key -I user_alice -n alice -V +52w user_key.pub # Then user connects: ssh -i user_key user@host
Provision via API (example):
curl -X POST https://api.hostganga.com/v1/ssh-keys \
-H "Authorization: Bearer $TOKEN" \
-d '{"username":"alice","public_key":"ssh-ed25519 AAAA..."}'Quick answers to common questions about SSH key security.
Yes — we deploy new keys/certificates in parallel and switch traffic once validation completes, enabling zero-downtime rotation.
Yes — YubiKey / FIDO2 and PKCS#11 HSMs are supported for key storage and signing operations.
Private keys in our managed service are HSM-backed (optional) or encrypted with AES-256 at rest. Access to private material is limited and fully audited.
Yes — OpenSSH certificates allow short-lived credentials, easy revocation, and avoid managing per-host authorized_keys files at scale.