store: SSH alias for claude-runner CT 302 added to ~/.ssh/config

This commit is contained in:
Cal Corum 2026-02-20 08:53:57 -06:00
parent f2c6cd4bf8
commit aed341c72d

View File

@ -0,0 +1,35 @@
---
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.