mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-26 23:49:59 -07:00
This fixes several space-related issues at once. We have observed the following phenomenon on TP-Link, Orbic and Moxee: - Filling /data bricks the device (broken wifi, broken rndis, broken display) - Filling /cache does not (it only bricks rayhunter if it's installed there, and it might break firmware updates) Therefore it would make sense to store the entire rayhunter installation in /cache. This is a great idea for TP-Link and Moxee, because /cache is significantly larger than /data. However, on Orbic, /data is significantly larger than /cache! This PR refactors orbic-network and tplink to use a shared codepath for setting up the data directory. A symlink is created at /data/rayhunter, and what it points to is device-specific: - Orbic will have its data at `/data/rayhunter-data` - There is a new alias `installer moxee` that overrides this to `/cache/rayhunter-data` - TP-Link will have its data at /cache/rayhunter-data when there's no SD card, and /media/whatever when there is one. In all cases, existing data is migrated to the new location. The user can switch back and forth between two values of --data-dir and the data will be moved over every time. This PR has one huge wart, and that is that the USB installer for Orbic remains untouched. The annoying reason for this is that the DeviceConnection trait is insufficient to reflect all the different kinds of shells you can have over USB: adb with fakeroot, and serial with real root. I think it's not possible to create the right directories with 'rootshell -c'. I'm thinking of spawning a telnet server over serial, so that we can just do telnet again, but this is for another time.
56 lines
1.6 KiB
Markdown
56 lines
1.6 KiB
Markdown
# KonnectONE Moxee Hotspot (K779HSDL)
|
|
|
|
Supported in Rayhunter since version 0.6.0.
|
|
|
|
The Moxee Hotspot is a device very similar to the Orbic RC400L. It seems to be
|
|
primarily for the US market.
|
|
|
|
<div class="warning-box">
|
|
|
|
**WARNING: These devices are known to become completely bricked by installing Rayhunter.**
|
|
|
|
Do not buy this device nor try to install _nor upgrade_ Rayhunter on it.
|
|
|
|
We're still trying to figure out what's wrong in [this discussion](https://github.com/EFForg/rayhunter/issues/865).
|
|
|
|
</div>
|
|
|
|
- [KonnectONE product page](https://www.konnectone.com/specs-hotspot)
|
|
- [Moxee product page](https://www.moxee.com/hotspot)
|
|
|
|
## Supported bands
|
|
|
|
According to [FCC ID 2APQU-K779HSDL](https://fcc.report/FCC-ID/2APQU-K779HSDL), the device supports the following LTE bands:
|
|
|
|
| Band | Frequency |
|
|
|------|-------------------------|
|
|
| 2 | 1900 MHz (PCS) |
|
|
| 4 | 1700/2100 MHz (AWS-1) |
|
|
| 5 | 850 MHz (CLR) |
|
|
| 12 | 700 MHz (Lower SMH) |
|
|
| 13 | 700 MHz (Upper SMH) |
|
|
| 25 | 1900 MHz (Extended PCS) |
|
|
| 26 | 850 MHz (Extended) |
|
|
| 41 | 2500 MHz (TDD) |
|
|
| 66 | 1700/2100 MHz (E-AWS) |
|
|
| 71 | 600 MHz |
|
|
|
|
## Installation
|
|
|
|
Connect to the hotspot's network using WiFi or USB tethering and run:
|
|
|
|
```sh
|
|
./installer moxee --admin-password 'mypassword'
|
|
```
|
|
|
|
The password (in place of `mypassword`) is under the battery.
|
|
|
|
`./installer moxee` is almost the same as `./installer orbic`, it just comes
|
|
with slightly better defaults that will give you more space for recordings.
|
|
|
|
## Obtaining a shell
|
|
|
|
```sh
|
|
./installer util orbic-shell
|
|
```
|