Access

Access your workmachine through a VPN connection. Once connected, use SSH to access workspaces directly from your IDE or terminal.

How access works

  1. Connect to VPN to join the workmachine network
  2. Add your SSH public key to authorized keys
  3. SSH into workspaces from your IDE or terminal

VPN Connection

The VPN connects your local machine to the workmachine network. This enables direct access to workspaces via SSH and to environment services by their service names.

console.kloudlite.io
PREVIEW
Kloudlite
EnvironmentsWorkspaces

VPN Connection

Install kltun to connect

macOS/LinuxWindows
curl -fsSL .../install | bash

Connected

Uptime: 2h 34m

VPN IP10.13.0.5
TunnelActive
Terminal
~$curl -fsSL https://kl.kloudlite.io/install | bash_
Installing kltun...
✓ kltun installed
Connecting to VPN...
✓ VPN connected (10.13.0.5)
~$_

Authorized Keys

Add your SSH public keys to enable SSH access from your IDE or terminal. These are your keys that authorize access to the workmachine.

console.kloudlite.io
PREVIEW
Kloudlite
EnvironmentsWorkspaces

Authorized Keys

ssh-ed25519john@workstation
ssh-ed25519user@laptop
|ssh-rsa AAAAB3... [email protected]

Add your public key to enable SSH access from your IDE or terminal.

Add your public key

Enable SSH access by adding your public key to the workmachine.

1. Copy your public key

cat ~/.ssh/id_ed25519.pub

2. Add in workmachine settings

Open the workmachine settings panel and paste your public key in the Authorized Keys section.

IDE Integration

Once your key is authorized, connect to workspaces using SSH:

Works with VS Code Remote SSH, JetBrains Gateway, Cursor, and any SSH-capable editor.

SSH Public Key

Each workmachine has a pre-generated SSH key pair. Use the public key to integrate with external services like GitHub, GitLab, or Bitbucket.

console.kloudlite.io
PREVIEW
Kloudlite
EnvironmentsWorkspaces

SSH Public Key

Add this key to GitHub, GitLab, or other services to enable SSH access from your workspaces.

ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGx7...kF2m workmachine-abc123

Copied to clipboard!

How to use

  1. Copy the public key above
  2. Go to GitHub → Settings → SSH Keys
  3. Click "New SSH Key" and paste
Add to GitHub

Integrate your workmachine with GitHub to clone private repositories.

1. Copy the workmachine public key

Find the SSH public key in your workmachine settings and click the copy button.

2. Add to GitHub

Go to GitHub → Settings → SSH and GPG Keys → New SSH Key, and paste the public key.

3. Clone repositories

Your workspaces can now clone private repositories using SSH URLs.

Tip

The same public key works for GitLab, Bitbucket, and any SSH-based service.