Skip to content

Latest commit

 

History

History
413 lines (284 loc) · 20.1 KB

raspibolt_20_pi.md

File metadata and controls

413 lines (284 loc) · 20.1 KB

[ Intro ] -- [ Preparations ] -- [ Raspberry Pi ] -- [ Bitcoin ] -- [ Lightning ] -- [ c-lightning ] -- [ Mainnet ] -- [ Bonus ] -- [ Troubleshooting ]


Beginner’s Guide to ️⚡Lightning️⚡ on a Raspberry Pi


Raspberry Pi

Write down your passwords

You will need several passwords and I find it easiest to write them all down in the beginning, instead of bumping into them throughout the guide. They should be unique and very secure, at least 12 characters in length. Do not use uncommon special characters, spaces or quotes (‘ or “).

[ A ] Master user password
[ B ] Bitcoin RPC password
[ C ] LND wallet password
[ D ] LND seed password (optional)

xkcd: Password Strength

If you need inspiration for creating your passwords: the xkcd: Password Strength comic is funny and contains a lot of truth. Store a copy of your passwords somewhere safe (preferably in a password manager like KeePass) and keep your original notes out of sight once your system is up and running.

Preparing the operating system

The node runs headless, that means without keyboard or display, so the operating system Raspbian Stretch Lite is used.

  1. Download the Raspbian Stretch Lite disk image
  2. Write the disk image to your SD card with this guide

Enable Secure Shell

Without keyboard or screen, no direct interaction with the Pi is possible during the initial setup. After writing the image to the Micro SD card, create an empty file called “ssh” (without extension) in the main directory of the card. This causes the Secure Shell (ssh) to be enabled from the start and we will be able to login remotely.

  • Create a file ssh in the boot partition of the MicroSD card

Prepare Wifi

I would not recommend it, but you can run your RaspiBolt with a wireless network connection. To avoid using a network cable for the initial setup, you can pre-configure the wireless settings:

  • Create a file wpa_supplicant.conf on the MicroSD card with the following content. Note that the network name (ssid) and password need to be in double-quotes (like psk="password")
country=[COUNTRY_CODE]
ctrl_interface=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
    ssid="[WIFI_SSID]"
    psk="[WIFI_PASSWORD]"
}
  • Replace [COUNTRY_CODE] with the ISO2 code of your country (eg. US)
  • Replace [WIFI_SSID] and [WIFI_PASSWORD] with the credentials for your own WiFi.

Start your Pi

  • Safely eject the sd card from your computer
  • Insert the sd card into the Pi
  • If you did not already setup Wifi: connect the Pi to your network with an ethernet cable
  • Start the Pi by connecting it to the mobile phone charger using the Micro USB cable

Connecting to the network

The Pi is starting and getting a new address from your home network. This address can change over time. To make the Pi reachable from the internet, we assign it a fixed address.

Accessing your router

The fixed address is configured in your network router: this can be the cable modem or the Wifi access point. So we first need to access the router. To find out its address,

  • start the Command Prompt on a computer that is connected to your home network (in Windows, click on the Start Menu and type cmd directly or in the search box, and hit Enter)
  • enter the command ipconfig (or ifconfig on Mac / Linux)
  • look for “Default Gateway” and note the address (eg. “192.168.0.1")

👉 additional information: accessing your router.

Now open your web browser and access your router by entering the address, like a regular web address. You need so sign in, and now you can look up all network clients in your home network. One of these should be listed as “raspberrypi”, together with its address (eg. “192.168.0.240”).

Router client list

👉 don’t know your router password? Try routerpasswords.com.
⚠️ If your router still uses the initial password: change it!

Setting a fixed address

We now need to set the fixed (static) IP address for the Pi. Normally, you can find this setting under “DHCP server”. The manual address should be the same as the current address, just change the last part to a lower number (e.g. 192.168.0.240 → 192.168.0.20).

👉 need additional information? Google “[your router brand] configure static dhcp ip address”

Port Forwarding / UPnP

Next, “Port Forwarding” needs to be configured. Different applications use different network ports, and the router needs to know to which internal network device the traffic of a specific port has to be directed. The port forwarding needs to be set up as follows:

Application name External port Internal port Internal IP address Protocol (TCP or UDP)
bitcoin 8333 8333 192.168.0.20 BOTH
bitcoin test 18333 18333 192.168.0.20 BOTH

👉 additional information: setting up port forwarding.

The Lightning Network Daemon (LND) supports UPnP to configure the port-forwarding automatically and also advertise its own external IP address to the network.

  • Enable UPnP for your router.

👉 If you're not sure how, search "enable upnp router MY-ROUTER-MODEL" for your own router model.

Save and apply these router settings, we will check them later. Disconnect the Pi from the power supply, wait a few seconds, and plug it in again. The node should now get the new fixed IP address.

Fixed network address

Working on the Raspberry Pi

Introduction to the command line

We are going to work on the command line of the Pi, which may be new to you. Find some basic information below, it will help you navigate and interact with your Pi.

Entering commands

You enter commands and the Pi answers by printing the results below your command. To make it clear where a command begins, every command in this guide starts with the $ sign. The system response is marked with the > character.

In the following example, just enter ls -la and press the enter/return key:

$ ls -la
> example system response

command ls -la

  • Auto-complete commands: When you enter commands, you can use the Tab key for auto-completion, eg. for commands, directories or filenames.

  • Command history: by pressing ⬆️ and ⬇️ on your keyboard, you can recall your previously entered commands.

  • Common Linux commands: For a very selective reference list of Linux commands, please refer to the FAQ page.

  • Use admin privileges: Our regular user has no admin privileges. If a command needs to edit the system configuration, we need to use the sudo ("superuser do") command as prefix. Instead of editing a system file with nano /etc/fstab, we use sudo nano /etc/fstab.
    For security reasons, the user "bitcoin" cannot use the sudo command.

  • Using the Nano text editor: We use the Nano editor to create new text files or edit existing ones. It's not complicated, but to save and exit is not intuitive.

    • Save: hit Ctrl-O (for Output), confirm the filename, and hit the Enter key
    • Exit: hit Ctrl-X
  • Copy / Paste: If you are using Windows and the PuTTY SSH client, you can copy text from the shell by selecting it with your mouse (no need to click anything), and paste stuff at the cursor position with a right-click anywhere in the ssh window.

Connecting to the Pi

Now it’s time to connect to the Pi via SSH and get to work. For that, a Secure Shell (SSH) client is needed. Install, start and connect:

  • Windows: PuTTY (Website)
  • Mac OS: built-in SSH client (see this article)
  • Linux: just use the native command, eg. ssh [email protected]
  • Use the following SSH connection settings:
    • host name: the static address you set in the router, eg. 192.168.0.20
    • port: 22
    • username: pi
    • password: raspberry.

login

👉 additional information: using SSH with Raspberry Pi

Raspi-Config

You are now on the command line of your own Bitcoin node. First we finish the Pi configuration. Enter the following command:
$ sudo raspi-config

raspi-config

  • First, on 1 change your password to your password [A].
  • Next, choose Update 8 to get the latest configuration tool
  • Network Options 2:
    • you can give your node a cute name (like “RaspiBolt”) and
    • configure your Wifi connection (Pi 3 only)
  • Boot Options 3:
    • choose Desktop / CLIConsole and
    • Wait for network at boot
  • Localisation 4: set your timezone
  • Advanced 7: run Expand Filesystem and set Memory Split to 16
  • Exit by selecting <Finish>, and <No> as no reboot is necessary

Software update

It is important to keep the system up-to-date with security patches and application updates. The “Advanced Packaging Tool” (apt) makes this easy:
$ sudo apt-get update
$ sudo apt-get upgrade

👉 Do this regularly every few months to get security related updates.

Make sure that all necessary software packages are installed:
$ sudo apt-get install htop git curl bash-completion jq dphys-swapfile

Adding main user "admin"

This guide uses the main user "admin" instead of "pi" to make it more reusable with other platforms.

  • Create the new user, set password [A] and add it to the group "sudo"
    $ sudo adduser admin
    $ sudo adduser admin sudo
  • And while you’re at it, change the password of the “root” admin user to your password [A].
    $ sudo passwd root
  • Reboot and and log in with the new user "admin"
    $ sudo shutdown -r now

Adding the service user “bitcoin”

The bitcoin and lightning processes will run in the background (as a "daemon") and use the separate user “bitcoin” for security reasons. This user does not have admin rights and cannot change the system configuration.

  • When using the command sudo , you will be prompted to enter your admin password from time to time for increased security.
  • Enter the following command, set your password [A] and confirm all questions with the enter/return key.
    $ sudo adduser bitcoin

Mounting external hard disk

To store the blockchain, we need a lot of space. As a server installation, the Linux native file system Ext4 is the best choice for the external hard disk, so we will format the hard disk, erasing all previous data. The external hard disk is then attached to the file system and can be accessed as a regular folder (this is called “mounting”).

⚠️ Previous data on this hard disk will be deleted!

  • Plug your hard disk into the running Pi and power the drive up.

  • Get the NAME for main partition on the external hard disk
    $ lsblk -o UUID,NAME,FSTYPE,SIZE,LABEL,MODEL

  • Format the external hard disk with Ext4 (use [NAME] from above, e.g /dev/sda1)
    $ sudo mkfs.ext4 /dev/[NAME]

  • Copy the UUID that is provided as a result of this format command to your local (Windows) notepad.

  • Edit the fstab file and the following as a new line (replace UUID=123456) at the end
    $ sudo nano /etc/fstab
    UUID=123456 /mnt/hdd ext4 noexec,defaults 0 0

  • Create the directory to add the hard disk and set the correct owner
    $ sudo mkdir /mnt/hdd

  • Mount all drives and check the file system. Is “/mnt/hdd” listed?
    $ sudo mount -a
    $ df /mnt/hdd

Filesystem     1K-blocks  Used Available Use% Mounted on
/dev/sda1      479667880 73756 455158568   1% /mnt/hdd
  • Set the owner
    $ sudo chown -R bitcoin:bitcoin /mnt/hdd/

  • Switch to user "bitcoin", navigate to the hard disk and create the bitcoin directory.
    $ sudo su - bitcoin
    $ cd /mnt/hdd
    $ mkdir bitcoin
    $ ls -la

  • Create a testfile in the new directory and delete it.
    $ touch bitcoin/test.file
    $ rm bitcoin/test.file

  • Exit the "bitcoin" user session
    $ exit

If this command gives you an error, chances are that your external hard disk is mounted as “read only”. This must be fixed before proceeding. If you cannot fix it, consider reformatting the external hard disk.

👉 additional information: external storage configuration

Moving the Swap File

The usage of a swap file can degrade your SD card very quickly. Therefore, we will move it to the external hard disk.

  • As user "admin", delete the old swap file
    $ sudo dphys-swapfile swapoff
    $ sudo dphys-swapfile uninstall

  • Edit the configuration file and replace existing entries with the ones below. Save and exit.
    $ sudo nano /etc/dphys-swapfile

CONF_SWAPFILE=/mnt/hdd/swapfile

# comment or delete the CONF_SWAPSIZE line. It will then be created dynamically 
#CONF_SWAPSIZE=
  • Manually create new swap file
    $ sudo dd if=/dev/zero of=/mnt/hdd/swapfile count=1000 bs=1MiB
    $ sudo chmod 600 /mnt/hdd/swapfile
    $ sudo mkswap /mnt/hdd/swapfile

  • Enable new swap configuration
    $ sudo dphys-swapfile setup
    $ sudo dphys-swapfile swapon

Hardening your Pi

The following steps need admin privileges and must be executed with the user "admin".

Enabling the Uncomplicated Firewall

The Pi will be visible from the internet and therefore needs to be secured against attacks. A firewall controls what traffic is permitted and closes possible security holes.

The line ufw allow from 192.168.0.0/24… below assumes that the IP address of your Pi is something like 192.168.0.???, the ??? being any number from 0 to 255. If your IP address is 12.34.56.78, you must adapt this line to ufw allow from 12.34.56.0/24….

$ sudo apt-get install ufw
$ sudo su
$ ufw default deny incoming
$ ufw default allow outgoing
$ ufw allow from 192.168.0.0/24 to any port 22 comment 'allow SSH from local LAN'
$ ufw allow proto udp from 192.168.0.0/24 port 1900 to any comment 'allow local LAN SSDP for UPnP discovery'
$ ufw allow 9735  comment 'allow Lightning'
$ ufw allow 8333  comment 'allow Bitcoin mainnet'
$ ufw allow 18333 comment 'allow Bitcoin testnet'
$ ufw enable
$ systemctl enable ufw
$ ufw status
$ exit

UFW status

👉 additional information: UFW Essentials

👉 If you find yourself locked out by mistake, you can connect keyboard and screen to your Pi to log in locally and fix these settings (especially for the SSH port 22).

fail2ban

The SSH login to the Pi must be especially protected. The firewall blocks all login attempts from outside your network, but additional steps should be taken to prevent an attacker - maybe from inside your network - to just try out all possible passwords.

The first measure is to install “fail2ban”, a service that cuts off any system with five failed login attempts for ten minutes. This makes a brute-force attack unfeasible, as it would simply take too long.

fail2ban Me locking myself out by entering wrong passwords 😉

$ sudo apt-get install fail2ban

The initial configuration should be fine as it is enabled for SSH by default. If you want to dive deeper, you can
👉 customize the configuration.

Login with SSH keys

One of the best options to secure the SSH login is to completely disable the password login and require a SSH key certificate. Only someone with physical possession of the private key can login.

Set up SSH keys for the "admin" user:

For Windows Users: Configure “No Password SSH Keys Authentication” with PuTTY on Linux Servers

  • You should have generated three new files. Keep them safe!

SSH keys files

For Mac / Linux Users:

  • Back on the machine you’re working on (an easy way to make sure this is the case is to open a new tab in your terminal window) we first need to check for an existing private / public key pair:

    $ ls -la ~/.ssh/*.pub

  • If files are listed, your public key should be one of the following files (by default):

    id_dsa.pub
    id_ecdsa.pub
    id_ed25519.pub
    id_rsa.pub
    
  • If one of these files exist, skip ahead to the "Let's make sure..." bullet point below. If none of those files exist, or you get a No such file or directory do the following to create a new pair:

    $ ssh-keygen -t rsa -b 4096

    • When you're prompted to "Enter a file in which to save the key," press Enter. This accepts the default file location.

    • Next, to enforce key security, use password [A] to protect your keys. Enter again to confirm.

  • Let's make sure that the ~/.ssh directory exists on the Raspberry pi (Be sure to swap the IP of your Raspberry Pi in for RASPBERRY_PI_IP below):

    ssh admin@RASPBERRY_PI_IP 'mkdir -p ~/.ssh'

  • Copy over your public key to the Raspberry Pi and set the file mode of the .ssh directory (Again, swap out your Pi's IP for RASPBERRY_PI_IP below). If your public key file is something other than id_rsa.pub, substitute its filename below:

    $ cat ~/.ssh/id_rsa.pub | ssh admin@RASPBERRY_PI_IP 'cat >> ~/.ssh/authorized_keys && chmod -R 700 ~/.ssh/'

Once the Raspberry Pi has a copy of your public key, we'll now disable password login:

  • Log in to the Raspberry Pi as "admin" with your SSH key (you shouldn't be prompted for admin's password anymore).

  • Edit ssh config file
    $ sudo nano /etc/ssh/sshd_config

  • Change settings "ChallengeResponseAuthentication" and "PasswordAuthentication" to "no" (uncomment the line by removing # if necessary)
    SSH config

  • Save config file and exit

  • Copy the SSH public key for user "root", just in case
    $ sudo mkdir /root/.ssh
    $ sudo cp /home/admin/.ssh/authorized_keys /root/.ssh/
    $ sudo chown -R root:root /root/.ssh/
    $ sudo chmod -R 700 /root/.ssh/
    $ sudo systemctl restart ssh

  • Exit and log in again. You can no longer log in with "pi" or "bitcoin", only "admin" and "root" have the necessary SSH keys.
    $ exit

⚠️ Backup your SSH keys! You will need to attach a screen and keyboard to your Pi if you lose it.

Increase your open files limit

In case your RaspiBolt is swamped with internet requests (honest or malicious due to a DDoS attack), you will quickly encounter the can't accept connection: too many open files error. This is due to a limit on open files (representing individual tcp connections) that is set too low.

Edit the following three files, add the additional line(s) right before the end comment, save and exit.

$ sudo nano /etc/security/limits.conf
*    soft nofile 128000
*    hard nofile 128000
root soft nofile 128000
root hard nofile 128000


Edit pam.d/limits.conf

$ sudo nano /etc/pam.d/common-session
session required pam_limits.so

Edit pam.d/common-session

$ sudo nano /etc/pam.d/common-session-noninteractive
session required pam_limits.so

Edit pam.d/common-session-noninteractive


Next: Bitcoin >>