YOU ARE VIEWING ONE ITEM FROM THE AICRIER FEED

exe.dev routes SSH without Host header

AICrier tracks AI developer news across Product Hunt, GitHub, Hacker News, YouTube, X, arXiv, and more. This page keeps the article you opened front and center while giving you a path into the live feed.

// WHAT AICRIER DOES

7+

TRACKED FEEDS

24/7

SCRAPED FEED

Short summaries, external links, screenshots, relevance scoring, tags, and featured picks for AI builders.

exe.dev routes SSH without Host header
OPEN LINK ↗
// 71d 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

71d ago

2026-03-18

PUBLISHED

71d ago

2026-03-18

RELEVANCE

6/ 10

AUTHOR

apitman