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
Ryan Tharp 917edfbd4e update llarp::Addr changes 6 years ago
.github add contributing template 6 years ago
.vscode update tests 6 years ago
android add more stuff from builder repo 6 years ago
client initial admin api infra 6 years ago
contrib grabbed packaging scripts and fluff from abandoned repo 6 years ago
crypto scan-build fixes on win32 code paths 6 years ago
daemon format 6 years ago
debian typofix from fediverse, thnx m4iler 6 years ago
docker Add initial dockerfile support 6 years ago
docs update docs 6 years ago
include update llarp::Addr changes 6 years ago
jni ensure config 6 years ago
libabyss remvoe const requirement and update unit tests for jsonrpc server 6 years ago
libutp fix windows build 6 years ago
llarp update llarp::Addr changes 6 years ago
test Merge branch 'master' of https://github.com/loki-project/loki-network 6 years ago
vendor fixed race condition in event loop....dns seems to work now :DDD 6 years ago
win32-setup update install script 6 years ago
.clang-format more netns code 6 years ago
.dir-locals.el add emacs dir-locals 6 years ago
.dockerignore Add initial dockerfile support 6 years ago
.gitignore Merge branch 'dev' 6 years ago
.gitlab-ci.yml update ci scripts 6 years ago
CMakeLists.txt re-import missing addr functionality, make compile 6 years ago
CODE_OF_CONDUCT.md add file to check a github checkbox 6 years ago
LICENSE place protocol spec into public domain with CC0 6 years ago
Makefile Merge branch 'master' of https://github.com/loki-project/loki-network 6 years ago
README-windows.md add intel intrinsics for 32-bit avx build 6 years ago
doc place protocol spec into public domain with CC0 6 years ago
lokinet-bootstrap port bootstrap script to sh 6 years ago
lokinet-bootstrap.exe grabbed packaging scripts and fluff from abandoned repo 6 years ago
motto.txt bundle relevent libsodium parts 6 years ago
readme.md freebsd stuff 6 years ago

readme.md

LokiNet

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

build status

Building

Build requirements:

  • GNU Make
  • CMake
  • C++ 17 capable C++ compiler
  • rapidjson (if enabling jsonrpc server)

Linux

build:

$ sudo apt install build-essential cmake git libcap-dev wget rapidjson-dev
$ git clone https://github.com/loki-project/loki-network
$ cd loki-network
$ make -j8

install:

$ sudo make install

FreeBSD

build:

$ pkg install wget cmake git
$ git clone https://github.com/loki-project/loki-network
$ cd loki-network
$ gmake -j8

install (root):

# gmake install 

Running

DO NOT RUN AS ROOT, run as normal user.

to run as client:

$ lokinet -g
$ lokinet-bootstrap
$ lokinet

to run as relay:

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

Usage

see the documentation on how to get started.