1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-12-20 19:09:07 +01:00
An open source, self-hosted implementation of the Tailscale control server
Go to file
Juan Font Alonso bb1f17f5af Added glossary
2021-10-21 20:46:19 +02:00
.github/workflows Contributors should be working 2021-10-21 20:36:26 +02:00
cmd/headscale Merge branch 'main' into doc-reorg-v1 2021-10-21 18:46:29 +01:00
docs Added glossary 2021-10-21 20:46:19 +02:00
integration_test
k8s
scripts
tests/acls
.dockerignore
.gitignore
.goreleaser.yml Fixed ARM64 compiler name 2021-10-21 17:47:10 +02:00
acls_test.go
acls_types.go
acls.go
api.go
app_test.go
app.go Apply suggestions from code review 2021-10-20 09:35:56 +02:00
apple_mobileconfig.go
cli_test.go
cli.go
config.yaml.postgres.example Separate config examples for sqlite and postgres for the time being 2021-10-20 23:27:59 +02:00
config.yaml.sqlite.example Separate config examples for sqlite and postgres for the time being 2021-10-20 23:27:59 +02:00
db.go
derp.yaml
dns_test.go
dns.go
Dockerfile
Dockerfile.tailscale
go.mod
go.sum
integration_test.go
LICENSE
machine_test.go
machine.go
Makefile
metrics.go
namespaces_test.go
namespaces.go
poll.go
preauth_keys_test.go
preauth_keys.go
README.md Contributors should be working 2021-10-21 20:36:26 +02:00
routes_test.go
routes.go
sharing_test.go Apply some DRY to the sharing tests. 2021-10-18 17:52:38 -04:00
sharing.go
utils_test.go
utils.go

headscale

ci

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
  • Multiple 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

  1. We have nothing to do with Tailscale, or Tailscale Inc.
  2. The purpose of writing this was to learn how Tailscale works.

Contributors