reticulum/README.md

101 wiersze
6.0 KiB
Markdown
Czysty Zwykły widok Historia

2018-04-04 12:22:30 +00:00
Reticulum Network Stack α
==========
2020-03-07 21:49:24 +00:00
Reticulum is a cryptography-based networking stack for low-bandwidth, high-latency, wide-area networks built on cheap and readily available hardware. Reticulum allows you to build very wide-area networks with cheap off-the-shelf tools, and offers end-to-end encryption, autoconfiguring cryptographically backed multi-hop transport, efficient addressing, resource caching, unforgeable packet acknowledgements and much more.
2018-04-04 12:22:30 +00:00
Reticulum is a complete networking stack, and does not use IP or higher layers, although it can be easily tunnelled through conventional IP networks. This frees up a lot of 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.
2020-04-22 15:07:40 +00:00
Reticulum runs completely in userland, and can run on practically any system that runs Python 3.
2020-03-07 22:05:03 +00:00
2020-03-07 22:06:29 +00:00
For more info, see [unsigned.io/projects/reticulum](https://unsigned.io/projects/reticulum/)
2018-04-04 12:22:30 +00:00
2018-04-04 12:32:29 +00:00
## What hardware does Reticulum work with?
2020-01-26 12:45:49 +00:00
Practically any hardware 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, HAM radio digital modes, 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
2018-11-28 23:02:44 +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 easy to build yourself, or can be purchased as a complete radio that just needs a USB connection to the host.
2018-04-04 12:32:29 +00:00
2020-03-07 21:49:24 +00:00
Reticulum can also be tunneled over existing IP networks, so there's nothing stopping you from using it over gigabit fiber 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-03-07 21:49:24 +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 your home WiFi. Once the interfaces are configured, Reticulum will take care of the rest, and any device on your home WiFi can communicate with nodes on the LoRa and packet radio sides of the network.
2018-04-20 20:10:44 +00:00
2020-03-07 22:04:38 +00:00
## Current Status
2020-03-07 22:08:15 +00:00
Consider Reticulum experimental at this stage. Most features are implemented and working, but at this point the protocol may still change significantly, and is made publicly available for development collaboration, previewing and testing.
2020-03-07 22:04:38 +00:00
An API- and wireformat-stable alpha release is coming in the near future. Until then expect things to change unexpectedly if something warrants it.
## What is implemented at this point?
- All basic adressing and identification features
- RSA assymetric encryption and signatures as basis for all communication
- Elliptic curve encryption for links (on the SECP256R1 curve)
- Unforgeable packet delivery confirmations
- Fully self-configuring multi-hop routing
- A variety of supported interface types
- Efficient and easy resource transfers
- A simple and easy-to-use API
- A few basic examples
## What features are still missing?
- On-network caching and cache queries
## What is currently being worked on?
- Useful example programs and utilities
- API documentation
- Cleanup and code commenting
2020-03-07 22:34:04 +00:00
- A few useful-in-the-real-world apps built with Reticulum
2020-03-07 22:04:38 +00:00
2020-03-07 21:49:24 +00:00
## Can I use Reticulum on amateur radio spectrum?
Some countries still ban the use of encryption when operating under an amateur radio license. Reticulum offers several encryptionless modes, while still using cryptographic principles for station verification, link establishment, data integrity verification, acknowledgements and routing. It is therefore perfectly possible to include Reticulum in amateur radio use, even if your country bans encryption.
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?
Full documentation and video tutorials are coming with the stable alpha release. Until then, you are mostly on your own. If you really want to experiment already, you could take a look in the "Examples" folder, for some well-documented example programs. Be sure to also read the [Reticulum Overview Document](http://unsigned.io/wp-content/uploads/2018/04/Reticulum_Overview_v0.4.pdf).
2020-04-27 11:43:20 +00:00
If you just need Reticulum as a dependency for another application, the easiest way is probably via pip:
```bash
pip3 install rns
```
2020-04-27 11:44:27 +00:00
For development, you might want to get the latest source from GitHub. In that case, don't use pip, but try this recipe:
2020-03-07 21:49:24 +00:00
2020-04-27 10:18:05 +00:00
```bash
2020-03-07 21:49:24 +00:00
# Install dependencies
2020-04-22 15:07:40 +00:00
pip3 install cryptography pyserial
2020-03-07 21:49:24 +00:00
# Clone repository
git clone https://github.com/markqvist/Reticulum.git
# Move into Reticulum folder and symlink library to examples folder
cd Reticulum
ln -s ../RNS ./Examples/
# Run an example
2020-04-22 15:11:36 +00:00
python3 Examples/Echo.py -s
2020-03-07 21:49:24 +00:00
2020-04-27 10:16:08 +00:00
# Unless you've manually created a config file, Reticulum will do so now,
# and immediately exit. Make any necessary changes to the file:
2020-04-27 10:11:51 +00:00
nano ~/.reticulum/config
# ... and launch the example again.
2020-04-22 15:11:36 +00:00
python3 Examples/Echo.py -s
2020-03-07 21:49:24 +00:00
2020-04-27 10:16:08 +00:00
# You can now repeat the process on another computer,
# and run the same example with -h to get command line options.
2020-04-22 15:11:36 +00:00
python3 Examples/Echo.py -h
2020-03-07 21:49:24 +00:00
2020-04-27 10:16:08 +00:00
# Run the example in client mode to "ping" the server.
# Replace the hash below with the actual destination hash of your server.
2020-04-22 15:11:36 +00:00
python3 Examples/Echo.py 3e12fc71692f8ec47bc5
2020-03-07 21:49:24 +00:00
# Have a look at another example
2020-04-22 15:11:36 +00:00
python3 Examples/Filetransfer.py -h
2020-03-07 21:49:24 +00:00
```
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.