5
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2024-09-20 03:42:32 +00:00
yggdrasil-network.github.io/platform-linux.md

184 lines
5.7 KiB
Markdown
Raw Normal View History

2018-06-21 12:49:57 +00:00
---
tags: dontlink
2018-07-23 16:39:34 +00:00
sitemap: true
2018-06-21 12:49:57 +00:00
---
# Linux
Yggdrasil is well supported on Linux.
## Notes
- Should work with any kernel that includes `tun` and/or `tap`.
2018-07-19 08:39:42 +00:00
- The maximum MTU size supported on Linux is 65535 in TUN mode and 65521 in TAP mode.
2018-06-29 23:19:14 +00:00
- Binary `.deb` packages are available for Debian, Ubuntu, elementaryOS and similar distributions.
- Binary `.rpm` packages are available for Red Hat Enterprise Linux, Fedora, CentOS and similar distributions.
2018-07-18 22:55:40 +00:00
- IPv6 needs to be enabled in order for Yggdrasil to work - IPv6 is usually enabled by default, but if not, enable using `sysctl -w net.ipv6.conf.all.disable_ipv6=0` or similar.
- If using TUN/TAP then `/dev/net/tun` should be present on your system.
2018-06-21 12:49:57 +00:00
2018-07-20 08:53:46 +00:00
## Debian, Ubuntu, elementaryOS (with systemd)
2018-06-21 12:49:57 +00:00
Debian binary packages exist to simplify the installation of Yggdrasil. These
2018-06-29 23:17:11 +00:00
will also work on any Debian-based distribution.
2018-06-21 12:49:57 +00:00
### From CircleCI
Visit our [Builds](builds.md) page and download the relevant `.deb` file, then
2018-10-11 08:31:01 +00:00
install it on your system. If you want to install the latest `.deb` from the
`master` branch:
2018-06-21 12:49:57 +00:00
```
2018-10-11 08:30:06 +00:00
curl -so- "https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts?branch=master&filter=successful" | \
egrep -o "https.*yggdrasil\-.*$(dpkg --print-architecture).deb" | \
while read line; do curl -O $line && dpkg -i $(basename $line); done
2018-06-21 12:49:57 +00:00
```
2018-06-29 23:20:15 +00:00
Configuration will be generated automatically into `/etc/yggdrasil.conf` when
the package is installed, and the Yggdrasil service will automatically be
installed into systemd and started.
2018-06-21 12:49:57 +00:00
### From an Internet repository
To start with, import the repository key to your gpg keyring and export it
to your apt keyring:
2018-06-21 12:49:57 +00:00
```
gpg --fetch-keys https://neilalexander.s3.eu-west-2.amazonaws.com/deb/key.txt
gpg --export 569130E8CA20FBC4CB3FDE555898470A764B32C9 | sudo apt-key add -
2018-06-21 12:49:57 +00:00
```
Add the repository:
```
echo 'deb http://neilalexander.s3.eu-west-2.amazonaws.com/deb/ debian yggdrasil' | sudo tee /etc/apt/sources.list.d/yggdrasil.list
sudo apt-get update
```
2019-01-23 08:38:55 +00:00
**Note**: The repository also works over HTTPS - you will need to `sudo apt-get install apt-transport-https` and then edit the above URL so that it starts with `https://` instead of `http://` in `/etc/apt/sources.list.d/yggdrasil.list`.
2018-06-21 12:49:57 +00:00
Install Yggdrasil:
```
sudo apt-get install yggdrasil
```
Configuration will be generated automatically into `/etc/yggdrasil.conf` when
the package is installed, and the Yggdrasil service will automatically be
installed into systemd and started.
2018-07-20 08:53:46 +00:00
## Red Hat Enterprise Linux, Fedora, CentOS (with systemd)
2018-06-29 23:17:11 +00:00
RPM binary packages exist to simplify the installation of Yggdrasil. These
will also work on any other RPM-based distribution.
### From CircleCI
Visit our [Builds](builds.md) page and download the relevant `.rpm` file, then
install it on your system:
```
2019-01-09 23:01:50 +00:00
sudo groupadd --system yggdrasil
2018-06-29 23:17:11 +00:00
sudo rpm -i yggdrasil...rpm
```
2018-06-29 23:20:15 +00:00
Configuration will be generated automatically into `/etc/yggdrasil.conf` when
the package is installed, and the Yggdrasil service will automatically be
installed into systemd and started.
2018-06-29 23:17:11 +00:00
2018-07-20 08:31:16 +00:00
### From an Internet repository
To start with, download the repository key:
```
gpg --fetch-keys https://neilalexander.s3.eu-west-2.amazonaws.com/deb/key.txt
gpg --armor --no-comment --export-options export-minimal --export 569130E8CA20FBC4CB3FDE555898470A764B32C9 | sudo tee /etc/pki/rpm-gpg/RPM-GPG-KEY-yggdrasil
2018-07-20 08:31:16 +00:00
```
Add the repository:
```
sudo cat > /etc/yum.repos.d/yggdrasil.repo << EOF
[yggdrasil]
name = Yggdrasil
baseurl = https://neilalexander.s3.eu-west-2.amazonaws.com/rpm/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-yggdrasil
2018-07-20 08:31:16 +00:00
EOF
```
2018-12-18 11:05:12 +00:00
Create the `yggdrasil` group:
```
2019-01-09 23:01:24 +00:00
sudo groupadd --system yggdrasil
2018-12-18 11:05:12 +00:00
```
2018-07-20 08:31:16 +00:00
Install Yggdrasil:
```
sudo dnf install yggdrasil
```
2018-07-20 08:47:12 +00:00
Enable and start the service after install/upgrade:
2018-07-20 08:31:16 +00:00
```
sudo systemctl enable yggdrasil
sudo systemctl start yggdrasil
```
2018-06-21 12:49:57 +00:00
## Other Distributions
[Download the latest Yggdrasil binary](https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts) and install it:
```
sudo cp ~/yggdrasil-x.x.xx-linux-amd64 /usr/local/bin/yggdrasil
sudo chmod +x /usr/local/bin/yggdrasil
2018-06-21 12:49:57 +00:00
```
Alternatively, compile Yggdrasil from source (below) and install:
```
sudo cp /path/to/yggdrasil-go/yggdrasil /usr/local/bin/yggdrasil
sudo chmod +x /usr/local/bin/yggdrasil
2018-06-21 12:49:57 +00:00
```
## Generate configuration
If you do not have a configuration file, you should generate configuration
before starting Yggdrasil:
```
sudo yggdrasil -genconf > /etc/yggdrasil.conf
```
## Run Yggdrasil
### Run once
Open a shell and start Yggdrasil using your generated configuration:
```
sudo nohup yggdrasil -useconffile /etc/yggdrasil.conf &
```
Alternatively, start Yggdrasil in auto-configuration mode:
```
sudo nohup yggdrasil -autoconf &
```
### Run with systemd
systemd service scripts are included in the `contrib/systemd/` folder so that it
runs automatically in the background (using `/etc/yggdrasil.conf` for
configuration).
Copy the service files into `/etc/systemd/system`, copy `yggdrasil` into your
`$PATH`, i.e. `/usr/bin`, and then enable the service:
```
systemctl enable yggdrasil
systemctl start yggdrasil
```
Once installed as a systemd service, you can read the `yggdrasil` output:
```
systemctl status yggdrasil
journalctl -u yggdrasil
```
## Build instructions
Linux has most of the tools needed to build Yggdrasil from source - you just
2018-12-09 12:08:59 +00:00
need to install Go 1.11 or later.
2018-06-21 12:49:57 +00:00
2018-12-09 12:08:59 +00:00
1. Install Go 1.11 or later, [godeb](https://github.com/niemeyer/godeb) is
2018-06-21 12:49:57 +00:00
recommended for Debian-based distributions).
1. Open a shell, clone the repository and build:
```
cd /path/to
git clone https://github.com/yggdrasil-network/yggdrasil-go
cd yggdrasil-go
./build
```
1. The resulting `yggdrasil` file is your build - optionally install it into
your system, as above.