node

Lightning Node Setup with RaspiBlitz 2026: Complete Guide

RaspiBlitz is the most popular Raspberry Pi Bitcoin and Lightning node package. Here is how to set it up in 2026, manage channels, and start earning routing fees.

raspiblitzlightning nodelightning networkraspberry pibitcoin node

RaspiBlitz is the most popular open-source Bitcoin and Lightning Network node package for Raspberry Pi. It bundles Bitcoin Core, LND (Lightning Network Daemon), and a full management interface into a single bootable image.

Running a Lightning node with RaspiBlitz lets you:

  • Route Lightning payments and earn routing fees
  • Use Lightning for your own fast, cheap Bitcoin payments
  • Support the Lightning Network's decentralized payment infrastructure

Hardware Requirements

ComponentMinimumRecommended
Single-board computerRaspberry Pi 4 (4 GB)Raspberry Pi 5 (8 GB)
SSD1 TB2 TB (for future blockchain growth)
SSD connectionUSB 3.0NVMe HAT (faster)
Power supplyOfficial Pi power supplyOfficial Pi power supply
SD card16 GB32 GB (for OS)
CaseBasicWith active cooling
OptionalDisplay3.5" touch display

Total hardware cost: $150-250 for a complete setup.

The Raspberry Pi 5 with NVMe storage is noticeably faster for initial block download and LND operations than Pi 4 with USB SSD.

RaspiBlitz Setup Overview

The full setup process:

  1. Download RaspiBlitz image from GitHub (github.com/raspiblitz/raspiblitz)
  2. Flash to SD card using Balena Etcher
  3. Boot Pi, follow setup wizard
  4. Initial Block Download (~24-48 hours)
  5. LND wallet creation
  6. Fund Lightning channels
  7. Open channels to peers

Step-by-Step Installation

1. Download and Flash RaspiBlitz

# Download latest release from GitHub
# Verify SHA256 checksum before flashing
sha256sum raspiblitz-vX.X-arm64-ubuntu.img

# Flash to SD card using Balena Etcher (free)
# Select image → Select SD card → Flash

2. Initial Boot and Configuration

Insert SD card and SSD, power on the Pi. SSH in:

ssh admin@[pi-ip-address]
# Default password shown on Pi's display or: admin

# The setup wizard starts automatically
# Follow prompts to:
# - Format and mount SSD
# - Download blockchain (can take 1-3 days)
# - Configure Bitcoin node settings

3. Bitcoin Full Node Setup

The wizard sets up Bitcoin Core. Key decisions:

Pruned vs. Full node: Full node keeps entire blockchain (~600 GB). Pruned node keeps only recent data (~10-50 GB). For Lightning, a full node is recommended — it provides better routing data and reliability.

Tor: RaspiBlitz includes easy Tor configuration. Enable it for better privacy — your node's IP won't be publicly visible.

4. Create Your Lightning Wallet

After Bitcoin sync completes:

# In the RaspiBlitz menu:
# Lightning → LND → Create Wallet

# The system generates:
# - 24-word seed phrase (WRITE THIS DOWN)
# - Wallet password

Critical: Your LND seed phrase controls the funds in your Lightning channels. Back it up securely — on paper, in a fireproof location, just like your Bitcoin seed phrase.

5. Fund Your Node and Open Channels

To route payments, you need Bitcoin in Lightning channels. The workflow:

Get an on-chain address:

lncli newaddress p2wkh
# Shows a bc1q... address
# Send Bitcoin here (start with 0.01-0.1 BTC for testing)

Open channels to well-connected peers:

Good routing nodes to connect to first:

  • ACINQ (Breez, Phoenix wallet operator)
  • WalletOfSatoshi
  • Bitfinex
  • Large routing nodes visible on LNnodeInsight.com or amboss.space
# Open a channel (example: 2M sats / 0.02 BTC channel)
lncli openchannel --node_key=[peer_pubkey] --local_amt=2000000

Opening a channel costs an on-chain transaction fee (variable) and locks your Bitcoin until the channel is closed.

Channel Management Strategy

For a new routing node:

Total channel capacity: 0.05-0.2 BTC is a reasonable starting point. Too small and you can't route significant payments; too large ties up capital with uncertain returns.

Channel size: 1-10 million sats per channel (0.01-0.1 BTC). Larger channels enable routing of larger payments.

Number of channels: Start with 5-10 channels to diverse peers. More channels = more routing opportunities.

Channel balance: Ideally balanced — half on your side (outbound), half on peer side (inbound). Heavily one-sided channels can't route in both directions.

Autopilot: RaspiBlitz includes LND autopilot, which automatically opens channels to well-connected peers. Good for beginners, though manual channel management offers better results.

Earning Routing Fees

Lightning routing fees have two components:

  • Base fee: Fixed amount per transaction (typically 1-1,000 msat, usually 1,000 msat = 0.1 cent)
  • Fee rate: Percentage of transaction amount (typically 0.0001-0.01%)

For small nodes, monthly routing income is modest:

  • Small node (5 channels, 0.1 BTC total): $1-5/month in fees
  • Medium node (20 channels, 0.5 BTC total): $15-50/month in fees
  • Large routing node (100+ channels, 10+ BTC): $200-500+/month

Routing fees are not the primary motivation for most home node operators. Running a node supports the network, improves your payment privacy, and gives you direct Lightning access.

Managing Your Node

RaspiBlitz includes a terminal management interface accessible via SSH:

ssh admin@[pi-ip-address]
# Main menu appears automatically

Key management functions:

  • Rebalance channels: Move funds from outbound-heavy to inbound-heavy channels
  • Set routing fees: Adjust base fee and rate for each channel
  • View forwarding history: See which payments routed through your node
  • Manage apps: Install RTL (Ride The Lightning) web UI, Thunderhub, BOS

RTL and Thunderhub are web-based management UIs that make channel management much more visual and accessible than command-line LND.

Backup Your Node

Lightning nodes require ongoing backups:

Static Channel Backups (SCB): Automatically backed up. In an emergency, SCB lets you recover channel funds on a new node.

LND database backup: Full node state. More complete than SCB but larger.

RaspiBlitz can automatically backup SCB to Google Drive, S3, or an external drive. Set this up immediately after installation — before opening channels.

Connecting Your Wallet to Your Node

Point your Lightning wallet to your RaspiBlitz node:

Zeus Wallet (mobile): Connects directly to your LND via Tor or local network. Full control of your Lightning channels from your phone.

Zap: Desktop Lightning wallet that connects to your node.

Thunderhub web UI: Browser-based management accessible from your home network.

Frequently Asked Questions

Can I run RaspiBlitz on a cloud server? Yes. You can run LND + Bitcoin Core on any Ubuntu server. RaspiBlitz is the most streamlined package for this, though it is designed for Raspberry Pi. For cloud, consider Umbrel Server or Citadel as alternatives.

How long does initial block download take? On a Pi 5 with NVMe: 6-18 hours. On a Pi 4 with USB SSD: 12-48 hours. On cloud VPS: 4-8 hours.

Do I need a Lightning node to use Lightning payments? No. Custodial Lightning wallets (Wallet of Satoshi, Strike) let you send and receive Lightning payments without running a node. A personal node gives you more control, privacy, and routing fee income.

What happens to my funds if my Pi dies? If you have your seed phrase and recent channel backups, you can recover all on-chain funds and force-close channels to recover Lightning funds. This process takes 1-2 days due to on-chain confirmation delays.

Is there an easier alternative to RaspiBlitz? Umbrel and Start9 offer similar functionality with friendlier GUIs. RaspiBlitz is favored by more technical users for its configuration flexibility.

Bottom Line

RaspiBlitz is the gold standard for self-sovereign Bitcoin and Lightning nodes on home hardware. The setup requires technical comfort with SSH and basic Linux — it is not a plug-and-play consumer product.

For those willing to invest 4-6 hours in initial setup, the result is a fully sovereign Bitcoin stack: your own full node validates every transaction, your own Lightning node routes your payments privately.

Start with the Pi 5 and a 2 TB SSD. You will not outgrow it for several years.

Stay Up to Date on Bitcoin

Get our free Beginners Guide to Buying Bitcoin plus weekly insights for long-term holders.

Related Posts