Skip to content

Tutorials Overview

Step-by-step guides for common SSH-KLM tasks.

TutorialTimeDescription
Add Hosts10 minAdd servers to inventory
Rotate Keys15 minManual and automated rotation
Setup Bastion20 minConfigure bastion integration

Ensure SSH access is available:

Terminal window
ssh user@your-server.example.com

For full functionality, install the agent:

Terminal window
curl -fsSL https://get.qcecuring.com/ssh-agent | sudo bash

Via UI:

  1. Go to Inventory → Add Host
  2. Enter hostname and credentials
  3. Click Add Host

Via SDK:

await client.ssh.addHost({
hostname: 'server.example.com',
port: 22,
labels: { env: 'production' }
});
await client.ssh.startDiscovery({
hosts: ['server.example.com']
});