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.
lokinet/readme.md

47 lines
1.1 KiB
Markdown

# LokiNet
LokiNet is the reference implementation of LLARP (low latency anonymous routing protocol), a layer 3 onion routing protocol.
7 years ago
You can learn more about the high level design of LLARP [here](docs/high-level.txt)
And you can read the LLARP protocol specification [here](docs/proto_v0.txt)
6 years ago
![build status](https://gitlab.com/lokiproject/loki-network/badges/master/pipeline.svg "build status")
6 years ago
## Building
6 years ago
Build requirements:
* GNU Make
6 years ago
* CMake
* C++ 17 capable C++ compiler
* rapidjson (if enabling jsonrpc server)
6 years ago
6 years ago
To 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 JSONRPC=ON
$ sudo make install
6 years ago
## Running
6 years ago
**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](https://loki-project.github.io/loki-docs/Lokinet/LokinetOverview/) on how to get started.