36 lines
980 B
Markdown
36 lines
980 B
Markdown
---
|
|
id: b3076364-f370-4945-925f-4fd926d1a74e
|
|
type: configuration
|
|
title: "SSH alias for claude-runner CT 302 added to ~/.ssh/config"
|
|
tags: [ssh, claude-runner, homelab, configuration, proxmox]
|
|
importance: 0.4
|
|
confidence: 0.8
|
|
created: "2026-02-20T14:53:57.984137+00:00"
|
|
updated: "2026-02-20T14:53:57.984137+00:00"
|
|
---
|
|
|
|
# SSH Alias: claude-runner (CT 302)
|
|
|
|
## Problem
|
|
|
|
CT 302 (claude-runner, 10.10.0.148) was missing from `~/.ssh/config`. The wildcard rule `Host 10.10.0.*` uses `User cal`, but CT 302 requires `User root`, causing authentication failures when using the wildcard.
|
|
|
|
## Fix
|
|
|
|
Added an explicit alias **before** the wildcard block in `~/.ssh/config`:
|
|
|
|
```
|
|
Host claude-runner
|
|
HostName 10.10.0.148
|
|
User root
|
|
IdentityFile ~/.ssh/homelab_rsa
|
|
```
|
|
|
|
## Result
|
|
|
|
CT 302 is now accessible via `ssh claude-runner` without any manual flags.
|
|
|
|
## Note
|
|
|
|
Always add explicit aliases before the wildcard block when a host requires a different user than the wildcard default.
|