.github/workflows | ||
cmd/headscale | ||
docs | ||
integration_test | ||
k8s | ||
scripts | ||
tests/acls | ||
.dockerignore | ||
.gitignore | ||
.goreleaser.yml | ||
acls.go | ||
acls_test.go | ||
acls_types.go | ||
api.go | ||
app.go | ||
app_test.go | ||
apple_mobileconfig.go | ||
cli.go | ||
cli_test.go | ||
config-example.yaml | ||
db.go | ||
derp.yaml | ||
dns.go | ||
dns_test.go | ||
Dockerfile | ||
Dockerfile.tailscale | ||
go.mod | ||
go.sum | ||
integration_test.go | ||
LICENSE | ||
machine.go | ||
machine_test.go | ||
Makefile | ||
metrics.go | ||
namespaces.go | ||
namespaces_test.go | ||
poll.go | ||
preauth_keys.go | ||
preauth_keys_test.go | ||
README.md | ||
routes.go | ||
routes_test.go | ||
sharing.go | ||
sharing_test.go | ||
utils.go | ||
utils_test.go |
headscale
An open source, self-hosted implementation of the Tailscale coordination server.
Join our Discord server for a chat.
Overview
Tailscale is a modern VPN built on top of Wireguard. It works like an overlay network between the computers of your networks - using all kinds of NAT traversal sorcery.
Everything in Tailscale is Open Source, except the GUI clients for proprietary OS (Windows and macOS/iOS), and the 'coordination/control server'.
The control server works as an exchange point of Wireguard public keys for the nodes in the Tailscale network. It also assigns the IP addresses of the clients, creates the boundaries between each user, enables sharing machines between users, and exposes the advertised routes of your nodes.
headscale implements this coordination server.
Status
- Base functionality (nodes can communicate with each other)
- Node registration through the web flow
- Network changes are relayed to the nodes
- Namespaces support (~tailnets in Tailscale.com naming)
- Routing (advertise & accept, including exit nodes)
- Node registration via pre-auth keys (including reusable keys, and ephemeral node support)
- JSON-formatted output
- ACLs
- Taildrop (File Sharing)
- Support for alternative IP ranges in the tailnets (default Tailscale's 100.64.0.0/10)
- DNS (passing DNS servers to nodes)
- Share nodes between namespaces
- MagicDNS (see
docs/
)
Client OS support
OS | Supports headscale |
---|---|
Linux | Yes |
OpenBSD | Yes |
macOS | Yes (see /apple on your headscale for more information) |
Windows | Yes |
Android | You need to compile the client yourself |
iOS | Not yet |
Roadmap 🤷
Suggestions/PRs welcomed!
Running headscale
Please have a look at the documentation under docs/
.
Disclaimer
- We have nothing to do with Tailscale, or Tailscale Inc.
- The purpose of writing this was to learn how Tailscale works.