Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosGoogle Chrome: Unfinished Projects by Chrome: Joe Burrow’s Chess Set(21.09.2026 um 16:05 Uhr)
YouTube Security VideosGitHub: How to move AI from code completion to agentic workflows(21.09.2026 um 17:00 Uhr)
YouTube Security VideosGoogle Workspace: Why are we like this 😭 #Shorts(21.09.2026 um 16:15 Uhr)
Windows Tipps & SecurityNeues Elektroauto von Rolls-Royce wird äußerst exklusiv sein(21.09.2026 um 16:46 Uhr)
Windows Tipps & SecurityGooglebooks überraschen: Die beste KI-Funktion ist gar keine KI(21.09.2026 um 16:59 Uhr)
YouTube Security VideosGoogle Chrome: Unfinished Projects by Chrome: Joe Burrow’s Chess Set(21.09.2026 um 16:05 Uhr)
YouTube Security VideosGitHub: How to move AI from code completion to agentic workflows(21.09.2026 um 17:00 Uhr)
YouTube Security VideosGoogle Workspace: Why are we like this 😭 #Shorts(21.09.2026 um 16:15 Uhr)
Windows Tipps & SecurityNeues Elektroauto von Rolls-Royce wird äußerst exklusiv sein(21.09.2026 um 16:46 Uhr)
Windows Tipps & SecurityGooglebooks überraschen: Die beste KI-Funktion ist gar keine KI(21.09.2026 um 16:59 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Protect Yourself, Mesh Yourself

In my last post, my SSH keys moved off disk and into 1Password. This one is about the network those keys travel over, and the foundation: Tailscale. Here's the before, and it wasn't pretty. A homelab box behind my router. A VPS somewhere…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

In my last post, my SSH keys moved off disk and into 1Password. This one is about the network those keys travel over, and the foundation: Tailscale.



Here's the before, and it wasn't pretty. A homelab box behind my router. A VPS somewhere I'm still paying for. My laptop on some coffee shop WiFi, my phone on cellular, and a couple of machines stuck behind a CGNAT with no real public IP at all. Getting any of them to talk to each other meant port forwarding, firewall rules, a dynamic DNS record I'd always forget to update, and a spiral-bound notebook consisting of every IP address in my house. Reaching my homelab from outside the house was a small side quest every single time.



Tailscale deleted all of it. Every device I own now sits on one flat private network, addressable by name and reachable from anywhere, from my closet to the far side of the planet.



Tailscale admin console showing my machines on the tailnet






What it actually is



Tailscale is a mesh VPN built on WireGuard. You install the client on each device, sign in with an identity provider (Google, GitHub, whatever you already use), and the device joins your private network, your tailnet. It picks up a stable 100.x address and a name through MagicDNS, so instead of memorizing IP addresses I type the hostname like a civilized person.



The part that still feels like magic is that it punches through NAT on its own. No port forwarding, no holes poked in a firewall. Tailscale's coordination server brokers the key exchange, then your devices connect directly where they can and fall back to an encrypted relay when they can't. Traffic is end-to-end encrypted the whole way. For personal use, it's free, and not in a stingy way.






SSH without managing keys



The first post was all about hoarding SSH keys in 1Password. On my own Tailscale, I mostly don't need them.



Flip on Tailscale SSH for a machine:




tailscale up --ssh






Now ssh homelab works, and Tailscale handles the auth using the same identity that got the box onto the network in the first place. No public key to copy into authorized_keys, nothing to rotate when I add a machine, no key file to lose. Who's allowed to SSH where is a few lines in the Tailscale access policy instead of a graveyard of ~/.ssh/config entries. For anything I want to treat as sensitive, check mode forces a re-auth before the session opens.



Terminal: ssh into a machine by name over Tailscale SSH



So the two tools split the job cleanly. Inside the tailnet, Tailscale is my SSH auth. Anywhere outside it, the 1Password agent still holds the keys. No overlap, no turf war.






Serving apps to an audience of one



A big chunk of my homelab is little self-hosted web apps and dashboards I want to reach from my phone or laptop wherever I happen to be, with precisely nobody else able to load them.



tailscale serve does that in one line:




tailscale serve 3000






That grabs whatever's running on localhost:3000 and publishes it at a stable HTTPS URL on my tailnet, something like notes.my-tailnet.ts.net, real TLS cert and all. Only my devices can open it. Nothing faces the public internet, so there's no login page to bolt on and no attack surface pointed at the world. Add --bg and it survives a reboot.



The only concern is that turning on HTTPS certs publishes your machine names to the public Certificate Transparency log. I just went with the random Tailscale name they gave me.



If I ever want something out on the open internet, tailscale funnel is the same trick pointed outward. I reach for it about once a year, but it's there.






Private egress with Mullvad exit nodes



Tailscale also has a Mullvad add-on, and it's the tidiest way I've found to push my traffic through a real privacy VPN. Five bucks a month gets you Mullvad's whole server fleet as exit nodes you pick right from the Tailscale client. Select one and my outbound traffic leaves through Mullvad instead of my home connection. No second Mullvad app running in the tray, and it lands on the same Tailscale bill.



Choosing a Mullvad exit node in the Tailscale client



HOWEVER: This is not the anonymity you'd get walking cash up to Mullvad with a random account number. Tailscale is identity-aware by design (that's part of the whole trick that lets your devices recognize each other), so it knows exactly who you are, even though Mullvad doesn't. The traffic to Mullvad is end-to-end encrypted, but if you require real anonymity, buy Mullvad the anonymous way. For my everyday "don't hand my browsing to my ISP or the coffee shop," it's great.






What this lets me build



The real reason I lean on Tailscale is what it lets me stack on top of it. I run a little gateway called Aperture that all my apps and agents point at instead of hitting model providers directly. It listens only on the tailnet, pulls its keys from 1Password, and sends its traffic out through Mullvad. One private endpoint, one place to rotate keys and watch spend.



It routes all my agent calls through one unified mem-0 layer, serving all my agents from my phone, laptop, desktop, and my Hermes instance, so they all share the same context.



It allows me to run isolated sandbox environments without having to have port 22 open!!! (Not that huge of a brag but I still wanted to share)



That's the whole next post, so I'll leave it there. The point for now: none of it works without a private network that every device can reach, which is the boring job Tailscale does without me ever having to think about it.






The catch



Fair warning, Tailscale's coordination server is a hosted service you don't run. Your traffic is end-to-end encrypted and never touches it, but the thing that brokers connections and holds your network policy is Tailscale's, not yours. Headscale is an open-source implementation of that control server you can self-host, and the normal clients talk to it happily. On the to-do list, to migrate over to Headscale, but I keep seeming to add more projects to my list.






Keep yourself secure



Install it on two machines and run tailscale up --ssh on one. Then ssh into it by name from the other, from any network, no keys and no port forwarding. That's the moment it clicks, and everything else here is built on that one trick.



Set it up once, and you stop thinking about your network, which is about the highest praise I can give a piece of infrastructure.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Protect Yourself, Mesh Yourself

Thematisch verwandte Begriffe: Protect, Yourself, Mesh · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-94393 | When a user creates or edits a report inside an event, MISP can identify…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick