Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/aeonbtc/ssh-into-your-raspiblitz-over-tor
- Owner: aeonBTC
- Created: 2020-06-16T03:29:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-04T16:12:28.000Z (4 months ago)
- Last Synced: 2024-11-14T19:37:22.485Z (about 2 months ago)
- Homepage:
- Size: 21.5 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 connectYou should now be connected to your raspiblitz node!