2019-06-19 19:39:55 +00:00
# Lokinet
2017-09-22 21:06:48 +00:00
2020-11-03 14:11:18 +00:00
[Español ](readme_es.md ) [Русский ](readme_ru.md )
2019-07-16 03:52:56 +00:00
2019-06-19 19:38:10 +00:00
Lokinet is the reference implementation of LLARP (low latency anonymous routing protocol), a layer 3 onion routing protocol.
2017-10-03 19:14:46 +00:00
2018-10-08 12:21:29 +00:00
You can learn more about the high level design of LLARP [here ](docs/high-level.txt )
2018-07-30 04:38:14 +00:00
2018-10-08 12:21:29 +00:00
And you can read the LLARP protocol specification [here ](docs/proto_v0.txt )
2018-06-01 18:23:01 +00:00
2021-02-09 16:09:53 +00:00
You can view documentation on how to get started [here ](https://docs.oxen.io/products-built-on-oxen/lokinet ) .
2019-03-29 15:56:51 +00:00
2021-04-21 13:56:50 +00:00
A simple demo application that is lokinet "aware" can be found [here ](https://github.com/majestrate/lokinet-aware-demos )
2021-02-09 16:09:53 +00:00
[![Build Status ](https://ci.oxen.rocks/api/badges/oxen-io/loki-network/status.svg?ref=refs/heads/dev )](https://ci.oxen.rocks/oxen-io/loki-network)
2019-04-24 07:55:14 +00:00
2018-10-23 11:51:11 +00:00
## Building
2018-08-13 08:47:24 +00:00
Build requirements:
2020-09-18 14:36:57 +00:00
* Git
2018-08-13 08:47:24 +00:00
* CMake
2020-06-12 18:32:13 +00:00
* C++ 17 capable C++ compiler
2019-06-19 19:31:35 +00:00
* libuv >= 1.27.0
2020-02-02 20:34:51 +00:00
* libsodium >= 1.0.18
2021-04-15 17:39:45 +00:00
* libcurl (for lokinet-bootstrap)
2020-10-02 10:16:01 +00:00
* libunbound
* libzmq
* sqlite3
2018-08-13 08:47:24 +00:00
2018-10-28 14:28:13 +00:00
### Linux
2021-01-25 15:06:36 +00:00
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 want to build a dev build you can do the following:
2018-10-23 11:54:04 +00:00
2021-04-15 17:39:45 +00:00
$ sudo apt install build-essential cmake git libcap-dev libcurl4-openssl-dev libuv1-dev libsodium-dev pkg-config
2020-06-12 18:32:13 +00:00
$ git clone --recursive https://github.com/loki-project/loki-network
2018-10-23 11:51:11 +00:00
$ cd loki-network
2020-10-02 10:16:01 +00:00
$ mkdir build
2020-06-12 18:32:13 +00:00
$ cd build
2020-10-02 10:16:01 +00:00
$ cmake .. -DBUILD_STATIC_DEPS=ON -DBUILD_SHARED_LIBS=OFF -DSTATIC_LINK=ON
2020-07-01 14:14:45 +00:00
$ make -j$(nproc)
2018-10-28 14:28:13 +00:00
install:
2019-01-13 01:41:25 +00:00
2018-10-24 11:57:21 +00:00
$ sudo make install
2018-09-19 12:07:13 +00:00
2021-01-09 19:49:31 +00:00
### macOS
2019-04-24 07:55:14 +00:00
2021-01-25 15:06:36 +00:00
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 10:16:01 +00:00
2020-06-12 18:32:13 +00:00
$ git clone --recursive https://github.com/loki-project/loki-network
2019-04-24 07:55:14 +00:00
$ cd loki-network
2020-10-02 10:16:01 +00:00
$ mkdir build
2020-06-12 18:32:13 +00:00
$ cd build
2020-10-02 10:16:01 +00:00
$ cmake .. -DBUILD_STATIC_DEPS=ON -DBUILD_SHARED_LIBS=OFF -DSTATIC_LINK=ON
2021-01-09 19:49:31 +00:00
$ make -j$(sysctl -n hw.ncpu)
2020-10-02 10:16:01 +00:00
2019-04-24 07:55:14 +00:00
install:
$ sudo make install
### Windows
2021-01-25 15:06:36 +00:00
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
2019-04-24 07:55:14 +00:00
2020-09-18 14:36:57 +00:00
additional build requirements:
2019-04-24 07:55:14 +00:00
2020-01-10 19:59:45 +00:00
* nsis
* cpack
2019-04-24 07:55:14 +00:00
2020-01-10 19:59:45 +00:00
setup:
2020-10-02 10:16:01 +00:00
2021-01-25 16:46:00 +00:00
$ sudo apt install build-essential cmake git pkg-config mingw-w64 nsis ninja-build
2020-10-02 10:16:01 +00:00
2020-01-10 19:59:45 +00:00
building:
2019-04-24 07:55:14 +00:00
2020-06-12 18:32:13 +00:00
$ git clone --recursive https://github.com/loki-project/loki-network
$ cd loki-network
2021-01-25 15:06:36 +00:00
$ ./contrib/windows.sh
2019-04-24 07:55:14 +00:00
2019-03-24 08:02:06 +00: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)
2020-09-18 14:36:57 +00:00
$ git clone --recursive https://github.com/loki-project/loki-network
2019-03-24 08:02:06 +00:00
$ cd loki-network
2020-06-12 18:32:13 +00:00
$ mkdir build
$ cd build
$ cmake ..
2020-09-18 14:36:57 +00:00
$ make -j$(nproc)
2019-03-24 08:02:06 +00:00
install:
$ sudo make install
2018-10-28 14:28:13 +00:00
### FreeBSD
2019-01-13 01:41:25 +00:00
build:
2018-10-28 14:28:13 +00:00
2021-01-25 15:06:36 +00:00
$ pkg install cmake git pkgconf
2020-09-18 14:36:57 +00:00
$ git clone --recursive https://github.com/loki-project/loki-network
2018-10-28 14:28:13 +00:00
$ cd loki-network
2019-12-16 13:59:38 +00:00
$ mkdir build
2021-01-15 02:57:29 +00:00
$ cd build
2021-01-25 15:06:36 +00:00
$ cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DSTATIC_LINK=ON -DBUILD_SHARED_DEPS=ON ..
2019-12-16 13:59:38 +00:00
$ make
2019-01-13 01:41:25 +00:00
2018-10-28 14:28:13 +00:00
install (root):
2019-01-13 01:41:25 +00:00
2019-12-16 13:59:38 +00:00
# make install
2021-01-25 15:06:36 +00:00
## 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
**DO NOT RUN AS ROOT**, run as normal user. This requires the binary to have the proper setcaps set by `make install` on the binary.
to run, after you create default config:
$ 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