Files
bitcoin-tutorials/Zap_to_RaspiBlitz_through_Tor.md
2019-11-08 19:30:29 +00:00

2.6 KiB

Connect Zap over Tor to the RaspiBlitz

Confirmed to work with the mainnet Zap version >0.4.075.3 on iOS TestFlight

Create the Hidden Service:

  • In the RaspiBlitz terminal:
    sudo nano /etc/tor/torrc

  • paste on the end of the file

    HiddenServiceDir /mnt/hdd/tor/lnd_REST/
    HiddenServiceVersion 3
    HiddenServicePort 8080 127.0.0.1:8080
    

    If you want to use a different port:

    HiddenServicePort THIS_CAN_BE_ANY_PORT 127.0.0.1:8080
    
  • Take note of the .onion address into a word processor (like notepad)
    sudo cat /mnt/hdd/tor/lnd_REST/hostname

Install lndconnect

  • Can install from the RaspiBlitz MOBILE menu by attempting to connect Zap in the traditional way.

  • For Raspiblitz 1.3 add Go to the PATH by pasting this to the terminal (even if Go is installed already):

    export GOROOT=/usr/local/go
    export PATH=$PATH:$GOROOT/bin
    export GOPATH=/usr/local/gocode
    export PATH=$PATH:$GOPATH/bin
    sudo bash -c "echo 'PATH=\$PATH:/usr/local/gocode/bin/' >> /etc/profile"
    
  • Alternatively install Go and lndconnect manually:

    # check if  Go is installed (should be v1.11 or higher):  
    go version 
    # If need to install Go, run these:
    wget https://storage.googleapis.com/golang/go1.13.linux-armv6l.tar.gz
    sudo tar -C /usr/local -xzf go1.11.linux-armv6l.tar.gz
    sudo rm *.gz
    sudo mkdir /usr/local/gocode
    sudo chmod 777 /usr/local/gocode
    export GOROOT=/usr/local/go
    export PATH=$PATH:$GOROOT/bin
    export GOPATH=/usr/local/gocode
    export PATH=$PATH:$GOPATH/bin
    
    # Install lndconnect:
    cd /tmp
    wget https://github.com/LN-Zap/lndconnect/releases/download/v0.1.0/lndconnect-linux-armv7-v0.1.0.tar.gz
    sudo tar -xvf lndconnect-linux-armv7-v0.1.0.tar.gz --strip=1 -C /usr/local/bin
    

Generate the lndconnect string

  • Run lndconnect with the .onion address filled in:
    lndconnect --host=HIDDEN_SERVICE_ADDRESS.onion --port=8080 --nocert

  • Alternatively run lndconnect with the -j option to display the text string:
    lndconnect --host=HIDDEN_SERVICE_ADDRESS.onion --port=8080 --nocert -j

    • The correct string format is:
    lndconnect://YOUR_HIDDEN_SERVICE_ADDRESS.onion:8080?macaroon=<base64adminmacaroon>
    

Connect Zap through Tor

  • Scan the QR code with your Tor enabled Zap
    or

  • Share the string to your phone in an encrypted chat message to yourself and paste the string into Zap

  • Enjoy your private and encrypted remote connection!