headscale/README.md

175 lines
6.1 KiB
Markdown
Raw Permalink Normal View History

2022-09-05 09:31:03 -04:00
![headscale logo](./docs/logo/headscale3_header_stacked_left.png)
2021-04-24 17:26:38 -04:00
2021-10-10 07:00:45 -04:00
![ci](https://github.com/juanfont/headscale/actions/workflows/test.yml/badge.svg)
2021-04-24 17:26:38 -04:00
An open source, self-hosted implementation of the Tailscale control server.
2020-06-21 05:58:25 -04:00
Join our [Discord](https://discord.gg/c84AZQhmpx) server for a chat.
2021-10-10 07:00:45 -04:00
**Note:** Always select the same GitHub tag as the released version you use
to ensure you have the correct example configuration and documentation.
The `main` branch might contain unreleased changes.
## What is Tailscale
2021-03-17 16:58:38 -04: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
[NAT traversal](https://tailscale.com/blog/how-nat-traversal-works/).
2021-03-17 16:58:38 -04:00
Everything in Tailscale is Open Source, except the GUI clients for proprietary OS
(Windows and macOS/iOS), and the control server.
2021-03-17 16:58:38 -04:00
The control server works as an exchange point of Wireguard public keys for the
nodes in the Tailscale network. It 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-17 16:58:38 -04:00
A [Tailscale network (tailnet)](https://tailscale.com/kb/1136/tailnet/) is private
network which Tailscale assigns to a user in terms of private users or an
2022-05-28 13:46:01 -04:00
organisation.
## Design goal
Headscale aims to implement a self-hosted, open source alternative to the Tailscale
control server.
Headscale's goal is to provide self-hosters and hobbyists with an open-source
server they can use for their projects and labs.
It implements a narrow scope, a single Tailnet, suitable for a personal use, or a small
open-source organisation.
## Supporting Headscale
2022-02-13 06:07:45 -05:00
If you like `headscale` and find it useful, there is a sponsorship and donation
buttons available in the repo.
2022-02-13 06:07:45 -05:00
## Features
2021-02-24 16:23:36 -05:00
- Full "base" support of Tailscale's features
- Configurable DNS
- [Split DNS](https://tailscale.com/kb/1054/dns/#using-dns-settings-in-the-admin-console)
- Node registration
- Single-Sign-On (via Open ID Connect)
- Pre authenticated key
- Taildrop (File Sharing)
- [Access control lists](https://tailscale.com/kb/1018/acls/)
- [MagicDNS](https://tailscale.com/kb/1081/magicdns)
- Support for multiple IP ranges in the tailnet
- Dual stack (IPv4 and IPv6)
- Routing advertising (including exit nodes)
- Ephemeral nodes
2022-03-08 06:15:05 -05:00
- Embedded [DERP server](https://tailscale.com/blog/how-tailscale-works/#encrypted-tcp-relays-derp)
2021-02-24 16:23:36 -05:00
2021-10-04 07:58:36 -04:00
## Client OS support
| OS | Supports headscale |
| ------- | --------------------------------------------------------- |
| Linux | Yes |
| OpenBSD | Yes |
| FreeBSD | Yes |
| macOS | Yes (see `/apple` on your headscale for more information) |
| Windows | Yes [docs](./docs/windows-client.md) |
| Android | Yes [docs](./docs/android-client.md) |
| iOS | Yes [docs](./docs/iOS-client.md) |
2021-10-04 07:58:36 -04:00
2021-10-19 15:02:45 -04:00
## Running headscale
**Please note that we do not support nor encourage the use of reverse proxies
and container to run Headscale.**
Please have a look at the [`documentation`](https://headscale.net/).
2021-10-19 15:02:45 -04:00
## Talks
- Fosdem 2023 (video): [Headscale: How we are using integration testing to reimplement Tailscale](https://fosdem.org/2023/schedule/event/goheadscale/)
- presented by Juan Font Alonso and Kristoffer Dalby
2021-02-24 16:23:36 -05:00
## Disclaimer
This project is not associated with Tailscale Inc.
However, one of the active maintainers for Headscale [is employed by Tailscale](https://tailscale.com/blog/opensource) and he is allowed to spend work hours contributing to the project. Contributions from this maintainer are reviewed by other maintainers.
The maintainers work together on setting the direction for the project. The underlying principle is to serve the community of self-hosters, enthusiasts and hobbyists - while having a sustainable project.
## Contributing
2021-09-26 15:47:39 -04:00
2024-04-22 06:00:20 -04:00
Please read the [CONTRIBUTING.md](./CONTRIBUTING.md) file.
### Requirements
To contribute to headscale you would need the lastest version of [Go](https://golang.org)
and [Buf](https://buf.build)(Protobuf generator).
2022-03-07 11:58:07 -05:00
We recommend using [Nix](https://nixos.org/) to setup a development environment. This can
be done with `nix develop`, which will install the tools and give you a shell.
This guarantees that you will have the same dev env as `headscale` maintainers.
2021-11-14 03:08:03 -05:00
### Code style
To ensure we have some consistency with a growing number of contributions,
this project has adopted linting and style/formatting rules:
2021-11-14 03:08:03 -05:00
2021-11-14 03:09:33 -05:00
The **Go** code is linted with [`golangci-lint`](https://golangci-lint.run) and
formatted with [`golines`](https://github.com/segmentio/golines) (width 88) and
2021-11-14 03:08:03 -05:00
[`gofumpt`](https://github.com/mvdan/gofumpt).
2021-11-14 03:09:33 -05:00
Please configure your editor to run the tools while developing and make sure to
2021-11-14 03:08:03 -05:00
run `make lint` and `make fmt` before committing any code.
2021-11-14 03:09:33 -05:00
The **Proto** code is linted with [`buf`](https://docs.buf.build/lint/overview) and
2021-11-14 03:08:03 -05:00
formatted with [`clang-format`](https://clang.llvm.org/docs/ClangFormat.html).
2022-01-15 02:32:52 -05:00
The **rest** (Markdown, YAML, etc) is formatted with [`prettier`](https://prettier.io).
2021-11-14 03:08:03 -05:00
Check out the `.golangci.yaml` and `Makefile` to see the specific configuration.
### Install development tools
- Go
- Buf
2022-03-07 11:58:07 -05:00
- Protobuf tools
Install and activate:
2021-11-13 03:11:55 -05:00
```shell
2022-03-07 11:58:07 -05:00
nix develop
```
2021-10-27 02:40:39 -04:00
### Testing and building
Some parts of the project require the generation of Go code from Protobuf
(if changes are made in `proto/`) and it must be (re-)generated with:
```shell
make generate
2021-10-10 10:52:30 -04:00
```
2021-11-13 03:11:55 -05:00
2021-10-27 02:40:39 -04:00
**Note**: Please check in changes from `gen/` in a separate commit to make it easier to review.
2021-10-10 10:52:30 -04:00
To run the tests:
2021-10-10 10:52:30 -04:00
```shell
make test
```
To build the program:
2022-03-07 11:58:07 -05:00
```shell
nix build
```
or
```shell
make build
```
2021-10-21 14:36:26 -04:00
## Contributors
2021-10-19 14:59:33 -04:00
<a href="https://github.com/juanfont/headscale/graphs/contributors">
<img src="https://contrib.rocks/image?repo=juanfont/headscale" />
</a>
Made with [contrib.rocks](https://contrib.rocks).