Lokinet is an anonymous, decentralized and IP based overlay network for the internet.
Go to file
cathugger 838d28c6ed
contrib: NetworkManager dnsmasq config (#1335)
2020-09-04 14:58:11 -04:00
.github Update issue templates 2019-04-17 13:33:37 +10:00
android pull in libsodium if local version sucks 2019-10-31 15:30:02 -04:00
cmake change what patches are applied 2020-08-25 09:44:12 -04:00
contrib contrib: NetworkManager dnsmasq config (#1335) 2020-09-04 14:58:11 -04:00
crypto move sodium cmake target about so that it is detected earlier 2020-07-02 11:13:31 -04:00
daemon fix windows build typo 2020-08-27 16:48:27 +00:00
debian add lokinet-vpn systemd service file 2020-05-29 12:37:34 -04:00
docker DOWNLOAD_SODIUM in docker travis builds 2020-02-07 00:17:36 -04:00
docs add docs for exit setup 2020-08-24 20:19:50 -04:00
external SRV Record handling for introsets (#1331) 2020-08-31 16:07:17 -04:00
include initial config overriding on runtime 2020-08-27 12:43:53 +00:00
jni cmake refactor 2020-05-17 23:31:23 -03:00
llarp macos route poking (#1333) 2020-09-03 18:22:22 -04:00
pybind initial route poking 2020-08-24 20:21:55 -04:00
test proper route poking (#1330) 2020-09-01 17:22:22 -04:00
vendor make x.x.x.y+1 the default router on windows 2020-08-24 20:19:50 -04:00
win32-setup move win32 lokimq patch 2020-08-10 13:51:48 -05:00
.clang-format Clang-format changes to pointer/reference positioning 2020-04-07 12:36:43 -06:00
.clang-tidy clang-tidy modernize pass 2019-08-12 16:52:58 +01:00
.dir-locals.el add emacs dir-locals 2018-05-21 10:52:30 -04:00
.dockerignore Add fail-able docker build for gcc trunk 2019-08-02 10:28:09 +01:00
.drone.jsonnet disable running router hive just build it 2020-08-28 13:59:29 +00:00
.gitattributes Don't ignore .exe, .png, .gif 2020-03-05 19:09:27 -04:00
.gitignore hive pytest framework in place (and path build test works)! 2020-03-03 19:57:09 -05:00
.gitlab-ci.yml track libcurl and libuv with cmake, add libuv submodule 2020-05-17 14:53:28 -03:00
.gitmodules Begin peer stats infrastructure 2020-07-02 10:12:11 -06:00
CMakeLists.txt working on linux with root 2020-08-24 20:19:48 -04:00
CMakeSettings.json Fixup MSVC build 2019-05-15 23:03:24 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md 2019-07-19 22:08:47 -05:00
CONTRIBUTING_es.md Create CONTRIBUTING_es.md 2019-07-19 22:04:50 -05:00
CROSSCOMPILE.md update cross compiler docs 2019-07-16 10:11:05 -04:00
LICENSE.txt update license preamble 2020-05-17 11:27:41 -04:00
lokinet-bootstrap Fix for macos's decrepit old bash 3.x 2019-12-29 21:12:54 -04:00
lokinet-bootstrap.ps1 update lokinet-bootstrap 2020-04-21 16:11:39 -03:00
lokinet-docker.ini got router working in docker 2019-04-24 02:10:21 +00:00
module.modulemap Initial swift module.modulemap file for LLARP 2018-12-15 01:23:06 +10:00
readme.md address feedback from jason 2020-07-02 11:13:32 -04:00
readme_es.md Bump libsodium required version to 1.0.18 2020-02-02 16:38:48 -04:00
release.md add release key files 2019-06-12 19:31:12 -04:00
release_es.md Create release_es.md 2019-07-19 21:44:17 -05:00
run-lokinet.bat add run-lokinet.bat super duper simple wrapper thingydoo for windows 2018-12-21 08:11:59 -05:00
testnet_readme.md update testnet docs and add more tuneable paramters 2019-02-07 08:20:03 -05:00

readme.md

Lokinet

Español

Lokinet is the reference implementation of LLARP (low latency anonymous routing protocol), a layer 3 onion routing protocol.

You can learn more about the high level design of LLARP here

And you can read the LLARP protocol specification here

You can view documentation on how to get started here .

Build Status

Usage

See the documentation on how to get started.

Also read the Public Testing Guide for installation and other helpful information.

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 as client:

$ lokinet -g
$ lokinet-bootstrap
$ lokinet

to run as relay:

$ lokinet -r -g
$ lokinet-bootstrap
$ 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 as client:

$ lokinet -g
$ lokinet-bootstrap
$ sudo lokinet

to run as relay:

$ lokinet -r -g
$ lokinet-bootstrap
$ sudo lokinet

Running on Windows

DO NOT RUN AS ELEVATED USER, run as normal user.

Building

Build requirements:

  • CMake
  • C++ 17 capable C++ compiler
  • gcovr (if generating test coverage with gcc)
  • libuv >= 1.27.0
  • libsodium >= 1.0.18

Linux

build:

$ sudo apt install build-essential cmake git libcap-dev curl libuv1-dev libsodium-dev libcurl4-openssl-dev pkg-config
$ git clone --recursive https://github.com/loki-project/loki-network
$ cd loki-network
$ mkdir build 
$ cd build
$ cmake .. 
$ make -j$(nproc)

install:

$ sudo make install

MacOS

build: make sure you have cmake, libuv and xcode command line tools installed

$ git clone --recursive https://github.com/loki-project/loki-network
$ cd loki-network
$ mkdir build 
$ cd build
$ cmake .. 
$ make -j$(nproc)

install:

$ sudo make install

Windows

windows builds are cross compiled from ubuntu linux

build requirements:

  • CMake
  • C++ 17 capable C++ compiler
  • gcovr (if generating test coverage with gcc)
  • libuv >= 1.27.0
  • libsodium >= 1.0.18
  • libcurl
  • nsis
  • cpack

setup:

$ sudo apt install build-essential cmake git pkg-config mingw-w64 nsis

building:

$ git clone --recursive https://github.com/loki-project/loki-network
$ cd loki-network
$ mkdir build-windows
$ cd build-windows
$ cmake -DNATIVE_BUILD=OFF -DCMAKE_BUILD_TYPE=Release -DBUILD_PACKAGE=ON -DCMAKE_TOOLCHAIN_FILE='../contrib/cross/mingw64.cmake' -DWITH_TESTS=OFF -DCMAKE_CROSSCOMPILING=ON ..
$ cpack -D CPACK_MONOLITHIC_INSTALL=1 -G NSIS ..

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)
$ git clone https://github.com/loki-project/loki-network
$ cd loki-network
$ mkdir build
$ cd build
$ cmake ..
$ make -j8

install:

$ sudo make install

FreeBSD

build:

$ pkg install cmake git curl libuv libsodium pkgconf
$ git clone https://github.com/loki-project/loki-network
$ cd loki-network
$ mkdir build
$ cmake -DCMAKE_BUILD_TYPE=Release ..
$ make

install (root):

# make install