Reticulum/README.md

97 lines
6.8 KiB
Markdown
Raw Normal View History

2021-05-17 18:06:58 +00:00
Reticulum Network Stack β
2018-04-04 12:22:30 +00:00
==========
2020-08-13 10:56:39 +00:00
Reticulum is a cryptography-based networking stack for wide-area networks built on readily available hardware, and can operate even with very high latency and extremely low bandwidth. Reticulum allows you to build very wide-area networks with off-the-shelf tools, and offers end-to-end encryption, autoconfiguring cryptographically backed multi-hop transport, efficient addressing, unforgeable packet acknowledgements and more.
2018-04-04 12:22:30 +00:00
2021-09-25 09:03:43 +00:00
Reticulum is a complete networking stack, and does not need IP or higher layers, although it is easy to use IP (with TCP or UDP) as the underlying carrier for Reticulum. It is therefore trivial to tunnel Reticulum over the Internet or private IP networks.
2020-06-14 16:33:01 +00:00
Having no dependencies on traditional networking stacks free up overhead that has been utilised to implement a networking stack built directly on cryptographic principles, allowing resilience and stable functionality in open and trustless networks.
2018-04-04 12:22:30 +00:00
2020-05-13 07:31:43 +00:00
No kernel modules or drivers are required. Reticulum runs completely in userland, and can run on practically any system that runs Python 3.
2020-03-07 22:05:03 +00:00
2021-05-17 18:06:58 +00:00
The full documentation for Reticulum is available at [markqvist.github.io/Reticulum/manual/](https://markqvist.github.io/Reticulum/manual/).
You can also [download the Reticulum manual as a PDF](https://github.com/markqvist/Reticulum/raw/master/docs/Reticulum%20Manual.pdf)
2018-04-04 12:22:30 +00:00
2021-05-17 18:06:58 +00:00
For more info, see [unsigned.io/projects/reticulum](https://unsigned.io/projects/reticulum/)
2021-05-16 22:03:56 +00:00
2020-06-14 09:26:11 +00:00
## Notable Features
- Coordination-less globally unique adressing and identification
- Fully self-configuring multi-hop routing
2021-05-20 13:31:58 +00:00
- Asymmetric X25519 encryption and Ed25519 signatures as a basis for all communication
2021-05-20 14:06:12 +00:00
- Forward Secrecy with ephemereal Elliptic Curve Diffie-Hellman keys on Curve25519
2021-09-18 16:10:58 +00:00
- Reticulum uses the [Fernet](https://github.com/fernet/spec/blob/master/Spec.md) specification for on-the-wire / over-the-air encryption
- Keys are ephemeral and derived from an ECDH key exchange on Curve25519
2020-06-14 09:26:11 +00:00
- AES-128 in CBC mode with PKCS7 padding
- HMAC using SHA256 for authentication
- IVs are generated through os.urandom()
- Unforgeable packet delivery confirmations
- A variety of supported interface types
2020-06-14 16:33:01 +00:00
- An intuitive and easy-to-use API
2020-08-13 10:56:39 +00:00
- Reliable and efficient transfer of arbritrary amounts of data
- Reticulum can handle a few bytes of data or files of many gigabytes
- Sequencing, transfer coordination and checksumming is automatic
- The API is very easy to use, and provides transfer progress
2021-08-21 13:32:30 +00:00
- Lightweight, flexible and expandable Request/Response mechanism
2021-05-20 15:18:38 +00:00
- Efficient link establishment
2021-09-02 18:35:42 +00:00
- Total bandwidth cost of setting up a link is 3 packets totalling 237 bytes
2021-05-20 15:18:38 +00:00
- Low cost of keeping links open at only 0.62 bits per second
2020-06-14 09:26:11 +00:00
2020-05-13 07:31:43 +00:00
## Where can Reticulum be used?
2021-05-20 08:28:58 +00:00
Over practically any medium that can support at least a half-duplex channel with 1.000 bits per second throughput, and an MTU of 500 bytes. Data radios, modems, LoRa radios, serial lines, AX.25 TNCs, amateur radio digital modes, ad-hoc WiFi, free-space optical links and similar systems are all examples of the types of interfaces Reticulum was designed for.
2018-04-04 12:32:29 +00:00
2020-08-13 10:56:39 +00:00
An open-source LoRa-based interface called [RNode](https://unsigned.io/projects/rnode/) has been designed specifically for use with Reticulum. It is possible to build yourself, or it can be purchased as a complete transceiver that just needs a USB connection to the host.
2018-04-04 12:32:29 +00:00
2020-05-13 07:31:43 +00:00
Reticulum can also be encapsulated over existing IP networks, so there's nothing stopping you from using it over wired ethernet or your local WiFi network, where it'll work just as well. In fact, one of the strengths of Reticulum is how easily it allows you to connect different mediums into a self-configuring, resilient and encrypted mesh.
2018-04-04 12:32:29 +00:00
2020-05-13 07:31:43 +00:00
As an example, it's possible to set up a Raspberry Pi connected to both a LoRa radio, a packet radio TNC and a WiFi network. Once the interfaces are configured, Reticulum will take care of the rest, and any device on the WiFi network can communicate with nodes on the LoRa and packet radio sides of the network, and vice versa.
2018-04-20 20:10:44 +00:00
2020-03-07 22:04:38 +00:00
## Current Status
2021-05-17 18:06:58 +00:00
Reticulum should currently be considered beta software. All core protocol features are implemented and functioning, but additions will probably occur as real-world use is explored. There will be bugs. The API and wire-format can be considered relatively stable at the moment, but could change if warranted.
2020-03-07 22:04:38 +00:00
2020-05-13 07:31:43 +00:00
## Supported interface types and devices
Reticulum implements a range of generalised interface types that covers most of the communications hardware that Reticulum can run over. If your hardware is not supported, it's relatively simple to implement an interface class. Currently, the following interfaces are supported:
2020-03-07 22:04:38 +00:00
2020-05-13 07:31:43 +00:00
- Any ethernet device
- LoRa using [RNode](https://unsigned.io/projects/rnode/)
- Packet Radio TNCs (with or without AX.25)
- Any device with a serial port
- TCP over IP networks
- UDP over IP networks
2020-03-07 22:04:38 +00:00
2021-09-25 15:35:51 +00:00
## Feature Roadmap
2021-09-26 10:34:19 +00:00
- A delay and disruption tolerant message transfer protocol built on Reticulum, see [LXMF](https://github.com/markqvist/lxmf)
- A few useful-in-the-real-world apps built with Reticulum, see [Nomad Network](https://github.com/markqvist/NomadNet)
2021-09-25 15:35:51 +00:00
- More interface types for even broader compatibility
- ESP32 devices (ESP-Now, Bluetooth, etc.)
2021-09-25 15:37:35 +00:00
- AT-compatible modems
- CAN-bus
2021-09-25 15:35:51 +00:00
- ZeroMQ
- MQTT
2021-09-25 15:37:35 +00:00
- SPI
- i²c
2018-04-04 12:32:29 +00:00
2018-04-04 12:22:30 +00:00
## Dependencies:
2020-04-22 15:07:40 +00:00
- Python 3
2018-04-04 12:22:30 +00:00
- cryptography.io
2020-04-22 15:07:40 +00:00
- pyserial
2018-04-04 12:22:30 +00:00
2020-03-07 21:49:24 +00:00
## How do I get started?
2021-07-25 21:48:18 +00:00
The best way to get started with the Reticulum Network Stack depends on what
you want to do. For full details and examples, have a look at the [Getting Started Fast](https://markqvist.github.io/Reticulum/manual/gettingstartedfast.html) section of the [Reticulum Manual](https://markqvist.github.io/Reticulum/manual/).
2020-03-07 21:49:24 +00:00
2021-07-25 21:48:18 +00:00
If you just need Reticulum as a dependency for another application, the easiest way is via pip:
2020-04-27 11:43:20 +00:00
```bash
pip3 install rns
```
2020-04-27 10:11:51 +00:00
The default config file contains examples for using Reticulum with LoRa transceivers (specifically [RNode](https://unsigned.io/projects/rnode/)), packet radio TNCs/modems and UDP. By default a UDP interface is already enabled in the default config, which will enable Reticulum communication in your local ethernet broadcast domain.
2020-04-27 10:18:05 +00:00
You can use the examples in the config file to expand communication over other mediums such as packet radio or LoRa, or over fast IP links using the UDP interface. I'll add in-depth tutorials and explanations on these topics later. For now, the included examples will hopefully be enough to get started.
2020-04-29 11:03:24 +00:00
## Caveat Emptor
2020-08-13 10:56:39 +00:00
Reticulum is experimental software, and should be considered as such. While it has been built with cryptography best-practices very foremost in mind, it _has not_ been externally security audited, and there could very well be privacy-breaking bugs. If you want to help out, or help sponsor an audit, please do get in touch.