headscale/README.md

68 lines
3.2 KiB
Markdown
Raw Normal View History

2021-10-10 19:00:45 +08:00
# headscale
2021-04-25 05:26:38 +08:00
2021-10-10 19:00:45 +08:00
![ci](https://github.com/juanfont/headscale/actions/workflows/test.yml/badge.svg)
2021-04-25 05:26:38 +08:00
2021-07-03 22:10:22 +08:00
An open source, self-hosted implementation of the Tailscale coordination server.
2020-06-21 17:58:25 +08:00
2021-10-10 19:00:45 +08:00
Join our [Discord](https://discord.gg/XcQxk2VHjx) server for a chat.
2021-03-18 04:58:38 +08:00
## Overview
2021-05-08 22:56:27 +08:00
Tailscale is [a modern VPN](https://tailscale.com/) built on top of [Wireguard](https://www.wireguard.com/). It [works like an overlay network](https://tailscale.com/blog/how-tailscale-works/) between the computers of your networks - using all kinds of [NAT traversal sorcery](https://tailscale.com/blog/how-nat-traversal-works/).
2021-03-18 04:58:38 +08:00
2021-05-08 22:56:27 +08:00
Everything in Tailscale is Open Source, except the GUI clients for proprietary OS (Windows and macOS/iOS), and the 'coordination/control server'.
2021-03-18 04:58:38 +08:00
2021-07-03 18:01:19 +08:00
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.
2021-03-18 04:58:38 +08:00
Headscale implements this coordination server.
2020-06-21 17:58:25 +08:00
2021-02-25 05:23:36 +08:00
## Status
2021-07-03 18:01:19 +08:00
- [x] Base functionality (nodes can communicate with each other)
2021-02-25 05:23:36 +08:00
- [x] Node registration through the web flow
2021-09-19 18:07:17 +08:00
- [x] Network changes are relayed to the nodes
2021-10-20 03:01:36 +08:00
- [x] Multiple namespaces support (~tailnets in Tailscale.com naming)
2021-07-03 18:01:19 +08:00
- [x] Routing (advertise & accept, including exit nodes)
- [x] Node registration via pre-auth keys (including reusable keys, and ephemeral node support)
2021-09-27 03:47:39 +08:00
- [x] JSON-formatted output
- [x] ACLs
2021-09-27 03:51:07 +08:00
- [x] Taildrop (File Sharing)
2021-09-27 03:47:39 +08:00
- [x] Support for alternative IP ranges in the tailnets (default Tailscale's 100.64.0.0/10)
- [x] DNS (passing DNS servers to nodes)
2021-10-20 03:01:36 +08:00
- [x] Share nodes between namespaces
2021-10-05 02:27:45 +08:00
- [x] MagicDNS (see `docs/`)
2021-02-25 05:23:36 +08:00
2021-10-04 19:58:36 +08:00
## Client OS support
2021-10-05 02:27:45 +08:00
| OS | Supports headscale |
| ------- | ----------------------------------------------------------------------------------------------------------------- |
| Linux | Yes |
| OpenBSD | Yes |
| macOS | Yes (see `/apple` on your headscale for more information) |
| Windows | Yes |
2021-10-04 19:58:36 +08:00
| Android | [You need to compile the client yourself](https://github.com/juanfont/headscale/issues/58#issuecomment-885255270) |
2021-10-05 02:27:45 +08:00
| iOS | Not yet |
2021-10-04 19:58:36 +08:00
2021-02-25 05:23:36 +08:00
## Roadmap 🤷
Suggestions/PRs welcomed!
2020-06-21 17:58:25 +08:00
2021-07-11 19:04:33 +08:00
2021-10-20 03:02:45 +08:00
## Running headscale
Please have a look at the documentation under (`docs/`).
2021-02-25 05:23:36 +08:00
## Disclaimer
2021-05-08 22:56:27 +08:00
1. We have nothing to do with Tailscale, or Tailscale Inc.
2021-02-25 05:23:36 +08:00
2. The purpose of writing this was to learn how Tailscale works.
2021-05-08 22:56:27 +08:00
## More on Tailscale
- https://tailscale.com/blog/how-tailscale-works/
- https://tailscale.com/blog/tailscale-key-management/
2021-05-08 22:56:27 +08:00
- https://tailscale.com/blog/an-unlikely-database-migration/
2021-10-20 02:59:33 +08:00