Difference between revisions of "Ubiquiti NanoStation 5AC Loco"

Jump to navigation Jump to search
m (add architecture note b/c it's handy.)
(Add commands from stephensss)
Line 30: Line 30:
 
# Choose the sysupgrade file previously downloaded and click Flash
 
# Choose the sysupgrade file previously downloaded and click Flash
 
# Wait for the device to complete and reboot
 
# Wait for the device to complete and reboot
 +
 +
== Condensed Command-list ==
 +
=== Flash The Stock Ubiquiti Firmware via TFTP ===
 +
<pre>
 +
wget https://dl.ubnt.com/firmwares/XC-fw/v8.5.0/WA.v8.5.0.36727.180118.1314.bin
 +
cp https://dl.ubnt.com/firmwares/XC-fw/v8.5.0/WA.v8.5.0.36727.180118.1314.bin firmware.bin
 +
sudo apt install tftp
 +
tftp
 +
tftp> connect 192.168.1.20
 +
tftp> rexmt 1
 +
tftp> timeout 60
 +
tftp> binary
 +
tftp> put firmware.bin
 +
</pre>
 +
=== Flash The Mass Mesh Firmware ===
 +
<pre>
 +
wget https://github.com/MassMesh/meta-imagebuilder-artifacts/raw/master/massmesh/meshradio/ubnt_nanostation-ac-loco/openwrt-massmesh-meshradio-ath79-generic-ubnt_nanostation-ac-loco-squashfs-factory.bin
 +
scp openwrt-massmesh-meshradio-ath79-generic-ubnt_nanostation-ac-loco-squashfs-factory.bin ubnt@192.168.1.20:/tmp
 +
ssh ubnt@192.168.1.20
 +
hexdump -Cv /bin/ubntbox | sed 's/14 40 fe fe/00 00 00 00/g' | hexdump -R > /tmp/fwupdate.real
 +
chmod +x /tmp/fwupdate.real
 +
/tmp/fwupdate.real -m /tmp/openwrt-massmesh-meshradio-ath79-generic-ubnt_nanostation-ac-loco-squashfs-factory.bin
 +
</pre>

Revision as of 14:02, 26 December 2019

NanoStation 5AC Loco

The NanoStation 5AC Loco is a directional, weather resistant, PoE powered radio with a beam width of 90 degrees and a secondary omnidirectional radio. This makes it useful for simultaneously meshing on one radio while providing an access point for client devices on the other.

If you're in a pickle, and need to download opkg files for an offline NanoStation, the architecture is MIPS 24KC.

Files

Stock Firmware v8.5.0.36727

MassMesh Firmware (Factory) (Latest)

MassMesh Firmware (Sysupgrade) (Latest)

Flashing

From Stock Firmware

  1. Download the Stock Firmware Image v8.5.0.36727 from above as well as the MassMesh Factory image file
  2. Power on the NanoStation via a PoE injector and connect the other side of the PoE injector to a computer
  3. Assign a static IP/netmask of 192.168.1.25/24 to the computer
  4. Use a browser to visit http://192.168.1.20/
  5. Login using the set password or default credentials ubnt / ubnt
  6. Navigate to settings and downgrade the stock firmware to v8.5.0.36727 using the downloaded image file
  7. Follow the instructions for enabling updates to the firmware on OpenWRT's website.

From OpenWrt

  1. Download the latest MassMesh Sysupgrade firmware file from above
  2. Connect to the device and navigate to the IP address of the device
    Note: MassMesh MeshRadio firmwares use an IP of 192.168.2.1. To access the administration UI, set an ip/netmask of 192.168.2.10/24 and browse to http://192.168.2.1/
  3. Navigate to System → Backup / Flash Firmware → Actions: Flash new firmware image
  4. Choose the sysupgrade file previously downloaded and click Flash
  5. Wait for the device to complete and reboot

Condensed Command-list

Flash The Stock Ubiquiti Firmware via TFTP

wget https://dl.ubnt.com/firmwares/XC-fw/v8.5.0/WA.v8.5.0.36727.180118.1314.bin
cp https://dl.ubnt.com/firmwares/XC-fw/v8.5.0/WA.v8.5.0.36727.180118.1314.bin firmware.bin
sudo apt install tftp
tftp
tftp> connect 192.168.1.20
tftp> rexmt 1
tftp> timeout 60
tftp> binary
tftp> put firmware.bin

Flash The Mass Mesh Firmware

wget https://github.com/MassMesh/meta-imagebuilder-artifacts/raw/master/massmesh/meshradio/ubnt_nanostation-ac-loco/openwrt-massmesh-meshradio-ath79-generic-ubnt_nanostation-ac-loco-squashfs-factory.bin
scp openwrt-massmesh-meshradio-ath79-generic-ubnt_nanostation-ac-loco-squashfs-factory.bin ubnt@192.168.1.20:/tmp
ssh ubnt@192.168.1.20
hexdump -Cv /bin/ubntbox | sed 's/14 40 fe fe/00 00 00 00/g' | hexdump -R > /tmp/fwupdate.real
chmod +x /tmp/fwupdate.real
/tmp/fwupdate.real -m /tmp/openwrt-massmesh-meshradio-ath79-generic-ubnt_nanostation-ac-loco-squashfs-factory.bin