OPEN_SOURCE ↗
HN · HACKER_NEWS// 25d agoINFRASTRUCTURE
exe.dev routes SSH without Host header
exe.dev, a subscription VM service, explains how it keeps SSH access simple even when multiple machines share IPv4 space. The workaround is a custom IP-sharing scheme that lets the platform route connections using the user and source IP instead of an HTTP-style Host header.
// ANALYSIS
This is the kind of behind-the-scenes infrastructure work that makes a product feel effortless even when the underlying protocol makes that impossible. The clever part is not magic SSH behavior; it is accepting the constraint and engineering around it cleanly.
- –SSH cannot multiplex like HTTPS, so shared-IP VM hosting needs a different routing signal than a domain header.
- –exe.dev’s `{user, IP}` approach preserves the nice UX of `ssh hostname` without forcing users into custom ports or manual tunnels.
- –The tradeoff is real operational complexity: IP allocation, NAT handling, and proxy state become part of the platform’s core.
- –The post is a good reminder that polished developer products often depend on unsexy network plumbing done very carefully.
- –For users, the win is predictability; for operators, the cost is bespoke management software that likely won’t generalize well.
// TAGS
exe-devdevtoolcloudinfrastructure
DISCOVERED
25d ago
2026-03-18
PUBLISHED
25d ago
2026-03-18
RELEVANCE
6/ 10
AUTHOR
apitman