Skip to main content

RedundaNet - Distributed Encrypted Storage Network

CI PyPI License

RedundaNet is a distributed, encrypted storage system built on a secure mesh VPN network. It enables users to contribute storage resources to a collective grid while maintaining privacy through end-to-end encryption.

Website: https://redundanet.com

Features

  • Decentralized Architecture: No central authority or single point of failure
  • End-to-End Encryption: Data is encrypted before leaving your device using Tahoe-LAFS
  • GPG-Based Authentication: Secure node identity verification via public keyservers
  • Private Networking: Secure Tinc mesh VPN isolates the storage network
  • Erasure Coding: Data is split and distributed across multiple nodes using a configurable k-of-n scheme (3-of-10 by default)
  • Open Membership: Anyone can apply to join the network
  • Containerized Deployment: Easy setup with Docker Compose
  • Raspberry Pi Ready: Pre-built images for ARM devices

How It Works

┌─────────────────────────────────────────────────────────────────────────┐
│                         RedundaNet Network                              │
│                                                                         │
│    Your File                                                            │
│        │                                                                │
│        ▼                                                                │
│   ┌─────────┐     Encrypted      ┌─────────┐                           │
│   │ Encrypt │ ──────────────────►│  Split  │                           │
│   │  (AES)  │                    │(Erasure)│                           │
│   └─────────┘                    └────┬────┘                           │
│                                       │                                 │
│              ┌────────────────────────┼────────────────────────┐       │
│              ▼            ▼           ▼           ▼            ▼       │
│         ┌───────┐    ┌───────┐   ┌───────┐   ┌───────┐    ┌───────┐   │
│         │Share 1│    │Share 2│   │Share 3│   │  ...  │    │Share10│   │
│         └───┬───┘    └───┬───┘   └───┬───┘   └───┬───┘    └───┬───┘   │
│             │            │           │           │            │        │
│             ▼            ▼           ▼           ▼            ▼        │
│         ┌───────┐    ┌───────┐   ┌───────┐   ┌───────┐    ┌───────┐   │
│         │Node A │    │Node B │   │Node C │   │Node D │    │Node E │   │
│         │ (VPN) │◄──►│ (VPN) │◄─►│ (VPN) │◄─►│ (VPN) │◄──►│ (VPN) │   │
│         └───────┘    └───────┘   └───────┘   └───────┘    └───────┘   │
│                                                                         │
│         Only 3 of 10 shares needed to reconstruct your file            │
└─────────────────────────────────────────────────────────────────────────┘

Key Concepts:

  • Your data is encrypted on your device before upload - nodes cannot read your files
  • Erasure coding splits data across nodes - with the default 3-of-10, any 3 of the 10 shares reconstruct your file
  • Mesh VPN connects all nodes securely - no central server required
  • GPG keys verify node identity - published to public keyservers

Encoding is configurable per network. The k-of-n split (shares_needed / shares_happy / shares_total) is set in the network manifest; 3-of-10 above is the default example. A small network runs smaller parameters, and if shares_happy equals the number of storage nodes there is no write-redundancy headroom — losing any one node makes the grid read-only until another joins. Run redundanet validate <manifest> to surface this.

Join the Network

Want to contribute storage and join RedundaNet? Here's how:

1. Generate and Publish Your GPG Key

# Install the CLI
pip install redundanet

# Generate a GPG key for your node
redundanet node keys generate --name my-node --email you@example.com

# Publish your key to public keyservers
redundanet node keys publish --key-id YOUR_KEY_ID

2. Submit Your Application

Visit redundanet.com/join.html and fill out the application form with:

  • Your GPG Key ID
  • Storage contribution (how much space you'll share)
  • Your region
  • Device type

This creates a GitHub issue that's automatically processed.

3. Wait for Approval

A maintainer will review your application and merge the PR that adds your node to the network manifest.

4. Set Up Your Node

Once approved:

# Initialize your node (use the name assigned to you)
redundanet init --name node-XXXXXXXX

# Join the network: clones the manifest repo, installs the docker files and
# generates /opt/redundanet/.env from your manifest entry
redundanet network join --repo https://github.com/adefilippo83/redundanet.git --name node-XXXXXXXX

# Start services (storage node)
cd /opt/redundanet/docker
docker compose --env-file /opt/redundanet/.env --profile storage up -d

# Check status
redundanet status

Quick Start (Existing Network Members)

Prerequisites

  • Python 3.11+
  • Docker and Docker Compose
  • GPG (for key management)

Installation

pip install redundanet

Start Services

Run from /opt/redundanet/docker (installed by redundanet network join, which also generates the required env file):

# As a storage node (contributes storage)
docker compose --env-file /opt/redundanet/.env --profile storage up -d

# As a client only (uses storage)
docker compose --env-file /opt/redundanet/.env --profile client up -d

Upload and Download Files

# Upload a file
redundanet storage upload /path/to/file.txt
# Returns: URI:CHK:abc123...

# Download a file
redundanet storage download URI:CHK:abc123... /path/to/output.txt

CLI Commands

redundanet --help

Commands:
  init        Initialize a new node
  status      Show node and network status
  sync        Sync manifest from repository
  validate    Validate manifest file

  node        Node management commands
    list      List all nodes in the network
    info      Show detailed node information
    add       Add a new node to manifest
    remove    Remove a node from manifest
    keys      Manage GPG keys (generate, export, import, publish, fetch, list)

  network     Network management
    join      Join an existing network
    leave     Leave the network
    peers     Show connected peers
    vpn       VPN management (start/stop/status)

  storage     Storage management
    status    Show storage status
    upload    Upload a file
    download  Download a file
    mkdir     Create an aliased directory on the grid
    ls        List a directory capability or alias
    repair    Check/repair the redundancy of a capability

Raspberry Pi

Pre-built images are available for Raspberry Pi:

  1. Download from GitHub Releases
  2. Flash to SD card using Raspberry Pi Imager
  3. Boot and SSH in: ssh redundanet@redundanet.local (password: redundanet)
  4. Run redundanet init to configure

Architecture

graph TD
    subgraph "Your Device"
        A[redundanet CLI] --> B[Tahoe Client]
        B --> C[Tinc VPN]
    end

    subgraph "Network Nodes"
        D[Tinc VPN] --> E[Tahoe Storage]
        F[Tinc VPN] --> G[Tahoe Storage]
        H[Tinc VPN] --> I[Tahoe Introducer]
    end

    C -->|Encrypted Mesh| D
    C -->|Encrypted Mesh| F
    C -->|Encrypted Mesh| H

Components:

  • Tinc VPN: Creates encrypted mesh network between all nodes
  • Tahoe-LAFS: Handles encryption, erasure coding, and distributed storage
  • GPG: Authenticates node identity via public keyservers
  • Manifest: YAML file in Git defining network configuration

Documentation

Development

# Clone repository
git clone https://github.com/adefilippo83/redundanet.git
cd redundanet

# Install dependencies
make install

# Run tests
make test

# Run linting
make lint

# Run type checking
make type-check

AI-assisted development

RedundaNet is designed and maintained by Alessandro De Filippo. Substantial parts of the code are written with AI assistance (Claude); every change is human-reviewed, gated by CI (lint, types, 250+ unit tests, end-to-end grid tests), and proven on the live production network before release. Bugs, like credit, land on the human.

Project instructions for AI coding tools live in CLAUDE.md.

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Run tests (make test) and linting (make lint)
  5. Commit your changes
  6. Push to the branch (git push origin feature/amazing-feature)
  7. Open a Pull Request

AI-assisted contributions are welcome under the same rule as everything else: you review, test, and own what you submit.

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.

Acknowledgments

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

redundanet-2.7.20.tar.gz (90.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

redundanet-2.7.20-py3-none-any.whl (103.9 kB view details)

Uploaded Python 3

File details

Details for the file redundanet-2.7.20.tar.gz.

File metadata

  • Download URL: redundanet-2.7.20.tar.gz
  • Upload date:
  • Size: 90.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for redundanet-2.7.20.tar.gz
Algorithm Hash digest
SHA256 bb944dc90882e91692b2cc7d178dad8ba263090f6bf39db43e40cd29fff46f60
MD5 37e1b70e68a0347cba86a767019e8208
BLAKE2b-256 42a317b9569f89e57455f20c3b239a8428067b8b845e955f399c40d73fb26e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for redundanet-2.7.20.tar.gz:

Publisher: release.yml on adefilippo83/redundanet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file redundanet-2.7.20-py3-none-any.whl.

File metadata

  • Download URL: redundanet-2.7.20-py3-none-any.whl
  • Upload date:
  • Size: 103.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for redundanet-2.7.20-py3-none-any.whl
Algorithm Hash digest
SHA256 1d671009d746fb4e5963611c348533432aec346a9a2b300d0d38afcb3991b0c7
MD5 3d0eab4fd8dc13594729807779759191
BLAKE2b-256 2c8cbc04626f854f99e6759a05a96ae115a8e42457ee7fb6b7477abc8407ef38

See more details on using hashes here.

Provenance

The following attestation bundles were made for redundanet-2.7.20-py3-none-any.whl:

Publisher: release.yml on adefilippo83/redundanet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.7.20 This release

2 files

2.7.19

2 files

2.7.18

2 files

2.7.17

2 files

2.7.16

2 files

2.7.15

2 files

2.7.14

2 files

2.7.13

2 files

2.7.12

2 files

2.7.11

2 files

2.7.10

2 files

2.7.9

2 files

2.7.8

2 files

2.7.7

2 files

2.7.6

2 files

2.7.5

2 files

2.7.4

2 files

2.7.3

2 files

2.7.2

2 files

2.7.1

2 files

2.7.0

2 files

2.6.1

2 files

2.5.1

2 files

2.5.0

2 files

2.4.2

2 files

2.4.1

2 files

2.4.0

2 files

2.3.1

2 files

2.3.0

2 files

2.2.0

2 files

2.0.13

2 files

2.0.11

2 files

2.0.10

2 files

2.0.9

2 files

2.0.8

2 files

2.0.7

2 files

2.0.6

2 files

2.0.4

2 files

2.0.3

2 files

2.0.2

2 files

2.0.1

2 files

2.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page