2019-06-19 19:39:55 +00:00
# Lokinet
2017-09-22 21:06:48 +00:00
2022-06-07 20:45:56 +00:00
[Español ](readme_es.md ) [Русский ](readme_ru.md ) [Français ](readme_fr.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
2022-02-13 00:05:34 +00:00
You can learn more about the high level design of LLARP [here ](docs/ )
2021-04-21 13:56:50 +00:00
2021-06-30 09:46:03 +00: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)
2019-04-24 07:55:14 +00:00
2022-01-11 16:13:24 +00:00
## Installing
2022-02-13 00:05:34 +00:00
If you are simply looking to install Lokinet and don't want to compile it yourself we provide several options for platforms to run on:
Tier 1:
2022-02-12 19:50:43 +00:00
2022-02-12 19:51:20 +00:00
* [Linux ](#linux-install )
2022-02-13 00:05:34 +00:00
* [Android ](#apk-install )
Tier 2:
2022-02-12 19:51:20 +00:00
* [Windows ](#windows-install )
2022-02-13 00:05:34 +00:00
* [MacOS ](#mac-install )
* [FreeBSD ](#freebsd-install )
2022-03-14 12:04:58 +00:00
Currently Unsupported Platforms: (maintainers welcome)
2022-02-13 00:05:34 +00:00
* Apple iPhone
* Homebrew
* \[Insert Flavor of the Month windows package manager here\]
2022-01-11 16:13:24 +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-12-14 03:53:53 +00:00
* libssl (for lokinet-bootstrap)
2021-04-15 17:39:45 +00:00
* libcurl (for lokinet-bootstrap)
2020-10-02 10:16:01 +00:00
* libunbound
* libzmq
2021-10-07 15:54:59 +00:00
* cppzmq
2020-10-02 10:16:01 +00:00
* sqlite3
2018-08-13 08:47:24 +00:00
2022-02-12 19:50:43 +00:00
### Linux <span id="linux-install" />
2018-10-28 14:28:13 +00:00
2022-02-13 00:05:34 +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` or `rpm.oxen.io` .
2021-01-25 15:06:36 +00:00
2022-02-13 00:05:34 +00:00
You can install debian packages using:
2021-01-25 15:06:36 +00:00
$ 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
2021-12-14 03:55:51 +00:00
If you want to build from source:
2018-10-23 11:54:04 +00:00
2022-02-13 00:05:34 +00:00
$ sudo apt install build-essential cmake git libcap-dev pkg-config automake libtool libuv1-dev libsodium-dev libzmq3-dev libcurl4-openssl-dev libevent-dev nettle-dev libunbound-dev libsqlite3-dev libssl-dev nlohmann-json3-dev
2021-06-30 09:46:03 +00:00
$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
2020-10-02 10:16:01 +00:00
$ mkdir build
2020-06-12 18:32:13 +00:00
$ cd build
2021-09-14 21:21:13 +00:00
$ cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF
2021-09-14 21:23:49 +00:00
$ make -j$(nproc)
2018-10-24 11:57:21 +00:00
$ sudo make install
2018-09-19 12:07:13 +00:00
2022-04-05 23:13:11 +00:00
#### Arch Linux <span id="mom-cancel-my-meetings-arch-linux-broke-again" />
Due to [circumstances beyond our control ](https://github.com/oxen-io/lokinet/discussions/1823 ) a working `PKGBUILD` can be found [here ](https://raw.githubusercontent.com/oxen-io/lokinet/makepkg/contrib/archlinux/PKGBUILD ).
2022-02-02 14:07:47 +00:00
2022-02-13 00:05:34 +00:00
#### Cross Compile For Linux <span id="linux-cross" />
2022-02-02 12:35:39 +00:00
2022-02-02 14:07:47 +00:00
current cross targets:
* aarch64-linux-gnu
* arm-linux-gnueabihf
* mips-linux-gnu
* mips64-linux-gnuabi64
* mipsel-linux-gnu
* powerpc64le-linux-gnu
2022-02-02 15:23:07 +00:00
install the toolchain (this one is for `aarch64-linux-gnu` , you can provide your own toolchain if you want)
2022-02-02 12:35:39 +00:00
$ sudo apt install g{cc,++}-aarch64-linux-gnu
build 1 or many cross targets:
$ ./contrib/cross.sh arch_1 arch_2 ... arch_n
2022-02-13 00:05:34 +00:00
### MacOS <span id="mac-install" />
2019-04-24 07:55:14 +00:00
2022-02-02 12:35:39 +00:00
Lokinet ~~is~~ will be available on the Apple App store.
2021-09-14 21:23:49 +00:00
2021-09-14 21:26:53 +00:00
Source code compilation of Lokinet by end users is not supported or permitted by apple on their platforms, see [this ](contrib/macos/README.txt ) for more information. If you find this disagreeable consider using a platform that permits compiling from source.
2019-04-24 07:55:14 +00:00
2022-02-12 19:50:43 +00:00
### Windows <span id="windows-install" />
2019-04-24 07:55:14 +00:00
2022-02-13 00:05:34 +00:00
You can get the latest stable windows release from https://lokinet.org/ or check the [releases page on github ](https://github.com/oxen-io/lokinet/releases ).
nightly builds for the brave or impatient can be found from our CI pipeline [here ](https://oxen.rocks/oxen-io/lokinet/ )
#### Building For Windows <span id="win32-cross" />
2021-01-25 15:06:36 +00:00
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-09-14 21:29:36 +00:00
$ sudo apt install build-essential cmake git pkg-config mingw-w64 nsis cpack automake libtool
2022-03-16 01:37:55 +00:00
$ sudo update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix
$ sudo update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix
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
2021-06-30 09:46:03 +00:00
$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
2021-01-25 15:06:36 +00:00
$ ./contrib/windows.sh
2019-04-24 07:55:14 +00:00
2022-02-13 00:05:34 +00:00
### FreeBSD <span id="freebsd-install" />
Currently has no VPN Platform code, see #1513
2018-10-28 14:28:13 +00:00
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
2021-06-30 09:46:03 +00:00
$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
2019-12-16 13:59:38 +00:00
$ mkdir build
2021-01-15 02:57:29 +00:00
$ cd build
2021-12-14 03:57:11 +00:00
$ cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DSTATIC_LINK=ON -DBUILD_STATIC_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
2022-02-13 00:05:34 +00:00
### Android <span id="apk-install" />
We have an Android APK for lokinet VPN via android VPN API.
Coming to F-Droid whenever that happens. [[issue]](https://github.com/oxen-io/lokinet-flutter-app/issues/8)
* [source code ](https://github.com/oxen-io/lokinet-flutter-app )
* [CI builds ](https://oxen.rocks/oxen-io/lokinet/ )
2021-01-25 15:06:36 +00:00
## Usage
2022-02-13 00:05:34 +00:00
### Debian / Ubuntu packages <span id="systemd-linux-usage" />
2021-01-25 15:06:36 +00:00
2022-01-11 16:13:24 +00:00
When running from debian package the following steps are not needed as it is already running and
ready to use. You can stop/start/restart it using `systemctl start lokinet` , `systemctl stop
lokinet`, etc.
2021-01-25 15:06:36 +00:00
2022-02-13 00:05:34 +00:00
### Running on Linux (without debs) <span id="arcane-linux-usage" />
2021-01-25 15:06:36 +00:00
2022-02-02 12:35:39 +00:00
**DO NOT RUN AS ROOT**, run as normal user.
2021-01-25 15:06:36 +00:00
2021-09-14 21:16:37 +00:00
set up the initial configs:
2021-01-25 15:06:36 +00:00
2022-02-02 12:35:39 +00:00
$ lokinet -g
2021-01-25 15:06:36 +00:00
$ lokinet-bootstrap
2021-09-14 21:16:37 +00:00
after you create default config, run it:
2021-01-25 15:06:36 +00:00
$ lokinet
2021-07-29 05:51:19 +00: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
2022-01-28 16:10:03 +00:00
----
# License
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
```
Copyright © 2018-2022 The Oxen Project
Copyright © 2018-2022 Jeff Becker
Copyright © 2018-2020 Rick V. (Historical Windows NT port and portions)
```