Lokinet is an anonymous, decentralized and IP based overlay network for the internet.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Nuc1eoN 8989910881
Add missing dep 'cppzmq' (#1764)
* Add missing dep to cppzmq
3 years ago
.github Update issue templates 5 years ago
cmake Merge pull request #1638 from majestrate/log-refactor-source-location-2021-05-11 3 years ago
contrib Add mainnet/testnet bootstrap files into repo 3 years ago
crypto redo cmake parts 3 years ago
daemon refactor logging to use std::source_location 3 years ago
docs Update exit-setup.md 3 years ago
external update submodule 3 years ago
include Remove obsolete bigs 3 years ago
jni add new JNI function: LokinetDaemon DumpStatus 3 years ago
llarp set base v6 address to nullopt when explicit empty string is provided 3 years ago
pybind refactor logging to use std::source_location 3 years ago
test refactor logging to use std::source_location 3 years ago
win32-setup rebrand and bump version 3 years ago
.clang-format Config file improvements (#1397) 4 years ago
.clang-tidy Tweak clang-tidy rules 3 years ago
.dir-locals.el add emacs dir-locals 6 years ago
.dockerignore Add fail-able docker build for gcc trunk 5 years ago
.drone.jsonnet update ci to use main lokinet mobile repo 3 years ago
.gitattributes Add mainnet/testnet bootstrap files into repo 3 years ago
.gitignore Add mainnet/testnet bootstrap files into repo 3 years ago
.gitmodules Remove double cpr submodule 3 years ago
.swift-version add swift version bullshit file and additional bullshittery 3 years ago
CMakeLists.txt Remove duplicate handling of jemalloc 3 years ago
CMakeSettings.json Fixup MSVC build 5 years ago
CONTRIBUTING.md Update CONTRIBUTING.md 5 years ago
CONTRIBUTING_es.md Create CONTRIBUTING_es.md 5 years ago
LICENSE.txt update license preamble 4 years ago
lokinet-docker.ini got router working in docker 5 years ago
readme.md Add missing dep 'cppzmq' (#1764) 3 years ago
readme_es.md Add missing dep 'cppzmq' (#1764) 3 years ago
readme_ru.md Add missing dep 'cppzmq' (#1764) 3 years ago
release.md add release key files 5 years ago
release_es.md Create release_es.md 5 years ago
release_ru.md Adding Russian translation (#1447) 4 years ago

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 .

A simple demo application that is lokinet "aware" can be found here

Build Status

Building

Build requirements:

  • Git
  • CMake
  • C++ 17 capable C++ compiler
  • libuv >= 1.27.0
  • libsodium >= 1.0.18
  • libcurl (for lokinet-bootstrap)
  • libunbound
  • libzmq
  • cppzmq
  • sqlite3

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:

$ 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
$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
$ mkdir build
$ cd build
$ cmake .. -DBUILD_STATIC_DEPS=ON -DBUILD_SHARED_LIBS=OFF -DSTATIC_LINK=ON -DCMAKE_BUILD_TYPE=Release
$ make -j$(nproc)

If you dont want to do a static build install the dependancies and run:

$ cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF
$ make -j$(nproc)

install:

$ sudo make install

macOS

Lokinet is will be available on the Apple App store.

Source code compilation of Lokinet by end users is not supported or permitted by apple on their platforms, see this for more information. If you find this disagreeable consider using a platform that permits compiling from source.

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:

  • nsis
  • cpack

setup:

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

building:

$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
$ ./contrib/windows.sh

FreeBSD

build:

$ pkg install cmake git pkgconf
$ git clone --recursive https://github.com/oxen-io/lokinet
$ cd lokinet
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DSTATIC_LINK=ON -DBUILD_SHARED_DEPS=ON ..
$ make

install (root):

# make install

Usage

Debian / Ubuntu packages

When running from debian package the following steps are not needed as it is already ready to use.

Running on Linux (without debs)

DO NOT RUN AS ROOT, run as normal user.

set up the initial configs:

$ lokinet -g 
$ lokinet-bootstrap

after you create default config, run it:

$ lokinet

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