2026-02-03 18:51:57 -08:00
---
2026-02-07 21:44:57 -08:00
title: Tailscale Setup
2026-03-26 07:44:36 -07:00
modified: 2026-03-26
last-reviewed: 2026-03-26
2026-02-03 18:51:57 -08:00
tags:
- tutorials
- replication
- tailscale
---
# Setting Up Tailscale
> **Audiences:** Replicator
This tutorial walks through establishing a Tailscale mesh network as the foundation for your homelab infrastructure.
## Why Tailscale?
Tailscale solves several problems at once:
- **Secure connectivity** - WireGuard-encrypted traffic between all devices
- **No port forwarding** - Devices connect directly through NATs and firewalls
- **MagicDNS** - Human-readable names like `server.tailnet.ts.net`
- **ACLs** - Fine-grained access control between devices
For BlumeOps context, see [[tailscale|Tailscale Reference]].
## Step 1: Create Your Tailnet
1. Sign up at [tailscale.com ](https://tailscale.com )
2. Choose your identity provider (Google, Microsoft, GitHub, etc.)
3. Note your tailnet name (e.g., `yourname.ts.net` )
## Step 2: Install on Your Devices
### macOS
```bash
2026-03-26 07:44:36 -07:00
# Option A: GUI app (recommended for desktop Macs)
brew install --cask tailscale
# Then launch Tailscale from Applications and follow the UI
# Option B: Headless CLI (servers/VMs)
2026-02-03 18:51:57 -08:00
brew install tailscale
2026-03-26 07:44:36 -07:00
brew services start tailscale
2026-02-03 18:51:57 -08:00
tailscale up
```
### Linux
```bash
curl -fsSL https://tailscale.com/install.sh | sh
sudo tailscale up
```
### Other Platforms
See [Tailscale Downloads ](https://tailscale.com/download ) for iOS, Android, Windows, etc.
## Step 3: Verify Connectivity
After installing on two devices:
```bash
tailscale status
# Shows all connected devices
ping <other-device>.yourname.ts.net
# Should work immediately
```
## Step 4: Configure ACLs
Default Tailscale allows all-to-all connectivity. For a homelab, you'll want restrictions.
2026-03-26 07:44:36 -07:00
You can edit ACLs directly in the [Tailscale admin console ](https://login.tailscale.com/admin/acls ), or manage them as code with `tailscale policy` (see `tailscale policy --help` ). Here's an example policy to start from:
2026-02-03 18:51:57 -08:00
```json
{
"groups": {
"group:admin": ["your-email@example .com"]
},
"tagOwners": {
"tag:homelab": ["group:admin"]
},
"acls": [
// Admins can access everything
{"action": "accept", "src": ["group:admin"], "dst": ["*:*"]},
// Homelab servers can reach NAS
{"action": "accept", "src": ["tag:homelab"], "dst": ["tag:nas:*"]}
]
}
```
2026-03-26 07:44:36 -07:00
If editing as code, save this as `policy.hujson` and apply it with `tailscale policy set policy.hujson` .
BlumeOps manages ACLs via Pulumi — see [[tailscale|Tailscale Reference]] for the actual configuration.
2026-02-03 18:51:57 -08:00
## Step 5: Enable MagicDNS
In the Tailscale admin console:
1. Go to DNS settings
2. Enable MagicDNS
3. Optionally add a search domain
Now `ssh server` works instead of `ssh 100.x.y.z` .
## Step 6: Tag Your Devices
Tags enable role-based access control:
```bash
# On your server
sudo tailscale up --advertise-tags=tag:homelab
```
Tags must be defined in ACLs before use.
2026-03-26 07:44:36 -07:00
> **Tip:** If you plan to use subnet routing or Tailscale ProxyGroup Ingress, clients must also run `tailscale up --accept-routes` (or enable "Accept Routes" in the GUI). Without this, advertised routes are invisible to the client.
2026-02-03 18:51:57 -08:00
## What You Now Have
- Encrypted mesh network between all your devices
- DNS names for each device
- Foundation for exposing services securely
## Next Steps
With networking established:
2026-02-04 17:21:34 -08:00
- [[core-services|Set Up Core Services]] - Install Forgejo and optionally a container registry
2026-03-26 07:44:36 -07:00
- [[kubernetes-bootstrap|Bootstrap Kubernetes]] - Your cluster will join the tailnet via the [[tailscale-operator|Tailscale Operator]]
2026-02-03 18:51:57 -08:00
## BlumeOps Specifics
2026-02-03 21:17:58 -08:00
BlumeOps' Tailscale configuration includes:
2026-03-26 07:44:36 -07:00
- Multiple device tags (`homelab` , `nas` , `registry` , `k8s-operator` )
2026-02-03 18:51:57 -08:00
- Group-based access for family members
- SSH access rules with authentication requirements
See [[tailscale|Tailscale Reference]] for full details.
## Troubleshooting
| Problem | Solution |
|---------|----------|
| Device won't connect | Check firewall allows UDP 41641 |
| Can't reach other devices | Verify ACLs don't block traffic |
| DNS not resolving | Enable MagicDNS in admin console |
| Tags not applying | Ensure tags defined in ACL policy |