This guide will instruct you on how to SSH into your Raspiblitz over Tor using an Android device.
Prerequisites:
- Tor enabled on your Raspiblitz
- Tor Android app Orbot
- SSH Android app JuiceSSH
Setup SSH Hidden Service
- Open the command line terminal on your raspiblitz
- Open your torrc file
sudo nano /mnt/hdd/app-data/tor/torrc.d/services
- Add the following lines to your torrc file
# Hidden Service for SSH
HiddenServiceDir /mnt/hdd/tor/sshd
HiddenServiceVersion 3
HiddenServicePort 22 127.0.0.1:22
- Exit and save the changes to the file.
- Restart Tor
sudo systemctl restart tor
- Retrieve your .onion address
sudo cat /mnt/hdd/tor/sshd/hostname
Connect Through Mobile Device
For JuiceSSH
- Launch Orbot app and enable VPN mode
- Connect to Tor
- Launch JuiceSSH app
- Manage Connections -> New Connection
- Nickname: Raspiblitz
- Type: SSH
- Address: youraddress.onion (from previous step 6)
- Identity
Username: admin
Password: 'Your Raspiblitz Password A'
- Port: 22
- Save settings and connect
You should now be connected to your raspiblitz node!