Skip to content

An open source implementation of the Tailscale coordination server

License

Notifications You must be signed in to change notification settings

awsong/headscale

 
 

Repository files navigation

headscale

An open source implementation of the Tailscale coordination server.

Disclaimer

  1. I have nothing to do with Tailscale, or Tailscale Inc. Just a fan of their tech.
  2. The purpose of writing this was to learn a bit how Tailscale works. Hence the emojis in the log messages and other terrible code.
  3. I don't use Headscale myself (their Solo plan + DERP infra is way more convenient).
  4. Headscale adds all the machines under the same user. Be careful!

Running it

  1. Compile the headscale binary
go build cmd/headscale/headscale.go 
  1. Get youself a PostgreSQL DB running.
docker run --name headscale -e POSTGRES_DB=headscale -e \
  POSTGRES_USER=foo -e POSTGRES_PASSWORD=bar -p 5432:5432 -d postgres
  1. Sort some stuff up (headscale Wireguard keys & the config.json file)
wg genkey > private.key
wg pubkey < private.key > public.key
cp config.json.example config.json
  1. Run it
./headscale
  1. Add your first machine
tailscale up -login-server YOUR_HEADSCALE_URL

About

An open source implementation of the Tailscale coordination server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 60.5%
  • TypeScript 18.7%
  • Shell 6.9%
  • Dockerfile 4.7%
  • HTML 4.7%
  • CSS 2.5%
  • Other 2.0%