lokinet/readme.md

169 lines
5.2 KiB
Markdown
Raw Normal View History

2019-06-19 21:39:55 +02:00
# Lokinet
[Español](readme_es.md) [Русский](readme_ru.md)
2019-06-19 21:38:10 +02:00
Lokinet is the reference implementation of LLARP (low latency anonymous routing protocol), a layer 3 onion routing protocol.
2017-10-03 21:14:46 +02:00
2018-10-08 14:21:29 +02:00
You can learn more about the high level design of LLARP [here](docs/high-level.txt)
2018-10-08 14:21:29 +02:00
And you can read the LLARP protocol specification [here](docs/proto_v0.txt)
2018-06-01 20:23:01 +02:00
2021-02-09 17:09:53 +01:00
You can view documentation on how to get started [here](https://docs.oxen.io/products-built-on-oxen/lokinet) .
A simple demo application that is lokinet "aware" can be found [here](https://github.com/majestrate/lokinet-aware-demos)
2021-06-30 11:46:03 +02:00
[![Build Status](https://ci.oxen.rocks/api/badges/oxen-io/lokinet/status.svg?ref=refs/heads/dev)](https://ci.oxen.rocks/oxen-io/lokinet)
## Building
2018-08-13 10:47:24 +02:00
Build requirements:
* Git
2018-08-13 10:47:24 +02:00
* CMake
* C++ 17 capable C++ compiler
2019-06-19 21:31:35 +02:00
* libuv >= 1.27.0
* libsodium >= 1.0.18
2021-04-15 19:39:45 +02:00
* libcurl (for lokinet-bootstrap)
2020-10-02 12:16:01 +02:00
* libunbound
* libzmq
* sqlite3
2018-08-13 10:47:24 +02:00
2018-10-28 15:28:13 +01:00
### Linux
You do not have to build from source if you are on debian or ubuntu as we have apt repositories with pre-built lokinet packages on `deb.oxen.io`.
You can install these using:
$ sudo curl -so /etc/apt/trusted.gpg.d/oxen.gpg https://deb.oxen.io/pub.gpg
$ echo "deb https://deb.oxen.io $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/oxen.list
$ sudo apt update
$ sudo apt install lokinet
If you are not on a platform supported by the debian packages or if you want to build a dev build, this is the most "portable" way to do it:
2018-10-23 13:54:04 +02:00
$ sudo apt install build-essential cmake git libcap-dev pkg-config automake libtool
2021-06-30 11:46:03 +02:00
$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
2020-10-02 12:16:01 +02:00
$ mkdir build
$ cd build
2020-10-02 12:16:01 +02:00
$ cmake .. -DBUILD_STATIC_DEPS=ON -DBUILD_SHARED_LIBS=OFF -DSTATIC_LINK=ON
$ make -j$(nproc)
2018-10-28 15:28:13 +01:00
install:
2019-01-13 02:41:25 +01:00
2018-10-24 13:57:21 +02:00
$ sudo make install
2018-09-19 14:07:13 +02:00
2021-01-09 20:49:31 +01:00
### macOS
You can get the latest stable macos relase from https://lokinet.org/ or check the releases page on github.
alternatively you can build from source, make sure you have cmake, libuv and xcode command line tools installed:
2020-10-02 12:16:01 +02:00
2021-06-30 11:46:03 +02:00
$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
$ ./contrib/mac.sh -DCODESIGN_KEY='insert your key identity here' -DCODESIGN_TEAM_ID='team id here'
### Windows
You can get the latest stable windows release from https://lokinet.org/ or check the releases page on github.
windows builds are cross compiled from debian/ubuntu linux
additional build requirements:
2020-01-10 20:59:45 +01:00
* nsis
* cpack
2020-01-10 20:59:45 +01:00
setup:
2020-10-02 12:16:01 +02:00
$ sudo apt install build-essential cmake git pkg-config mingw-w64 nsis ninja-build
2020-10-02 12:16:01 +02:00
2020-01-10 20:59:45 +01:00
building:
2021-06-30 11:46:03 +02:00
$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
$ ./contrib/windows.sh
2019-03-24 09:02:06 +01:00
### Solaris 2.10+
NOTE: Oracle Solaris users need to download/compile the TAP driver from http://www.whiteboard.ne.jp/~admin2/tuntap/
The generated binaries _may_ work on Solaris 2.10 or earlier, you're on your own. (Recommended: `-static-libstdc++ -static-libgcc`, and the TAP driver if not already installed on the target system.)
Building on a v2.10 or earlier system is unsupported, and may not even work; recent GCC releases have progressively dropped support for older system releases.
build:
$ sudo pkg install build-essential gcc8 wget tuntap cmake (optional: ninja ccache - from omnios extra) (OmniOS CE)
$ sudo pkg install base-developer-utilities developer-gnu developer-studio-utilities gcc-7 wget cmake (Oracle Solaris, see note)
$ sudo pkg install build-essential wget gcc-8 documentation/tuntap header-tun tun (optional: ninja ccache) (all other SunOS)
2021-06-30 11:46:03 +02:00
$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
$ mkdir build
$ cd build
$ cmake ..
$ make -j$(nproc)
2019-03-24 09:02:06 +01:00
install:
$ sudo make install
2018-10-28 15:28:13 +01:00
### FreeBSD
2019-01-13 02:41:25 +01:00
build:
2018-10-28 15:28:13 +01:00
$ pkg install cmake git pkgconf
2021-06-30 11:46:03 +02:00
$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
2019-12-16 14:59:38 +01:00
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DSTATIC_LINK=ON -DBUILD_SHARED_DEPS=ON ..
2019-12-16 14:59:38 +01:00
$ make
2019-01-13 02:41:25 +01:00
2018-10-28 15:28:13 +01:00
install (root):
2019-01-13 02:41:25 +01:00
2019-12-16 14:59:38 +01:00
# make install
## Usage
### Debian / Ubuntu packages
When running from debian package the following steps are not needed as it is already ready to use.
## Create default config
to configure as client:
$ lokinet -g
$ lokinet-bootstrap
to configure as relay:
$ lokinet -r -g
$ lokinet-bootstrap
## Running on Linux
2021-07-29 07:51:19 +02:00
**DO NOT RUN AS ROOT**, run as normal user.
to run, after you create default config:
$ lokinet
2021-07-29 07:51:19 +02:00
This requires the binary to have the proper capabilities which is usually set by `make install` on the binary. If you have errors regarding permissions to open a new interface this can be resolved using:
$ sudo setcap cap_net_admin,cap_net_bind_service=+eip /usr/local/bin/lokinet
## Running on macOS/UNIX/BSD
**YOU HAVE TO RUN AS ROOT**, run using sudo. Elevated privileges are needed to create the virtual tunnel interface.
The macOS installer places the normal binaries (`lokinet` and `lokinet-bootstrap`) in `/usr/local/bin` which should be in your path, so you can easily use the binaries from your terminal. The installer also nukes your previous config and keys and sets up a fresh config and downloads the latest bootstrap seed.
to run, after you create default config:
$ sudo lokinet