Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aeonbtc/ssh-into-your-raspiblitz-over-tor

This guide will instruct you on how to SSH into your Raspiblitz over TOR using an android device.
https://github.com/aeonbtc/ssh-into-your-raspiblitz-over-tor

Last synced: 29 days ago
JSON representation

This guide will instruct you on how to SSH into your Raspiblitz over TOR using an android device.

Awesome Lists containing this project

README

        

# SSH into your Raspiblitz over Tor

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**
1. Open the command line terminal on your raspiblitz
2. Open your torrc file
```
sudo nano /mnt/hdd/app-data/tor/torrc.d/services
```
3. 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
```
4. Exit and save the changes to the file.
5. Restart Tor
```
sudo systemctl restart tor
```
6. Retrieve your .onion address
```
sudo cat /mnt/hdd/tor/sshd/hostname
```

----------------------------------------------

**Connect Through Mobile Device**

For **JuiceSSH**
1. Launch Orbot app and enable VPN mode
2. Connect to Tor
3. Launch JuiceSSH app
4. 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
```
5. Save settings and connect

You should now be connected to your raspiblitz node!