-
Notifications
You must be signed in to change notification settings - Fork 18
Turning your Ubiquiti EdgeRouter into AngelBox
Ondřej Perutka edited this page Dec 21, 2022
·
4 revisions
Along with other devices, we also have a package for Ubiquiti EdgeRouter X devices. Currently, we support mips and mipsel architectures, 64bit variants are not supported. You will also need to use the older firmware v1.x.
Follow these instructions to turn your EdgeRouter X into an AngelBox:
- Connect to your device via SSH.
- For 1.x firmwares, type the following commands to install the package:
curl -k https://keys.openpgp.org/vks/v1/by-fingerprint/382B7B1C7F1838240D9DF4E1A244DAA87FBFBC65 | sudo apt-key add -
sudo sh -c 'echo "deb http://apt.angelcam.com/edgeos-wheezy/ stable main" > /etc/apt/sources.list.d/arrow.list'
sudo apt-get update
sudo apt-get install arrow-client
- Log in to the web interface of your device.
- Switch to the tab "Wizards".
- Open "Angelcam Cloud" in the left menu.
- Click on the link "Connect cameras to Angelcam Cloud".
- After logging in into your Angelcam account, you will be able to select cameras from your local network and add them into your Angelcam dashboard.
Note: If your device does not have enough space (especially after a firmware update), you might need to do a factory reset.
If you'd like to keep your Arrow client updated, you can do it using a cron job. Put the following contents into /etc/cron.daily/arrow-client
:
#!/bin/sh
apt-get update
# Let's make sure that dpkg recovers after a possible unsuccessful run.
dpkg --configure -a --force-confdef --force-confold
apt-get install -f -y \
-o Dpkg::Options::="--force-confdef" \
-o Dpkg::Options::="--force-confold"
dpkg --configure -a --force-confdef --force-confold
apt-get -y \
-o Dpkg::Options::="--force-confdef" \
-o Dpkg::Options::="--force-confold" \
--no-install-recommends \
install \
arrow-client \
ca-certificates \
libssl1.0.0 \
libpcap0.8
and change the file permissions:
sudo chmod 755 /etc/cron.daily/arrow-client