wifihaven → Set up your router → WAX206
Flash the Netgear WAX206 (AX3200)
The WAX206 is an inexpensive mainline-OpenWrt target on the same MediaTek MT7622 platform as the well-known Linksys E8450 / Belkin RT3200. This guide flashes it to vanilla OpenWrt, then hands off to the agent install.
| SoC | MediaTek MT7622BV, dual-core ARM Cortex-A53, aarch64 |
|---|---|
| OpenWrt target | mediatek/mt7622 · profile netgear_wax206 |
| Wireless | Dual-band Wi-Fi 6 (802.11ax, AX3200) |
| Ports | 1× 2.5G WAN, 4× gigabit LAN, USB 3.0 |
| OpenWrt IP (after flash) | 192.168.1.1 |
1. Download the OpenWrt image
For the first flash off Netgear stock you need a factory image. Get it from the OpenWrt Firmware Selector (search “Netgear WAX206”):
openwrt-<version>-mediatek-mt7622-netgear_wax206-squashfs-factory.img
The squashfs-sysupgrade.bin image is for later upgrades only; the
initramfs-recovery.itb is only for the recovery path below.
sha256sums file under
downloads.openwrt.org/releases/<version>/targets/mediatek/mt7622/). The exact reference build we validate against, with its pinned checksum, is in the
full WAX206 install doc.
2. Flash from Netgear stock firmware
- Power on with WAN unplugged; plug your laptop into a LAN port.
-
Browse to
http://192.168.1.1(orrouterlogin.net) and log in to the Netgear admin UI. -
Go to Advanced → Administration → Firmware Update and select the
…-squashfs-factory.imgimage. - Netgear warns the firmware is older / not a Netgear image — that’s expected; confirm past it. The device reboots into OpenWrt.
If the OEM UI refuses the image, use the nmrpflash path below to push the same
factory image.
3. First boot on OpenWrt
After the reboot the router is at 192.168.1.1 on clean OpenWrt defaults.
- Keep your laptop in a LAN port on DHCP and renew the lease.
- Browse to
http://192.168.1.1(LuCI) and set a root password. -
SSH in (
ssh root@192.168.1.1) and confirm the firmware:cat /etc/openwrt_release # Expect DISTRIB_TARGET='mediatek/mt7622'
4. Turn on Wi-Fi (it’s off by default)
Vanilla OpenWrt ships with both radios disabled and no wireless network, so right after flashing you’ll only have wired connectivity — that’s expected. Turning it on is the same on every OpenWrt router, so we keep it on one page: Turn on Wi-Fi → (LuCI or SSH). Do it before you unplug the laptop.
5. Install the wifihaven agent
The box is now on vanilla OpenWrt. Follow step 2 of the setup page to run the one-line installer, or the full OpenWrt install doc. Baseline config and apk-release quirks are covered in the WAX206 install doc.
Recovery if a flash goes wrong
Netgear routers recover over the NMRP protocol, which
nmrpflash
speaks — no case-opening required.
- Install
nmrpflashon your laptop and connect it to a LAN port of the (off) router. - Give the laptop’s wired interface a static address on
192.168.1.0/24. -
Run
nmrpflashpointed at your interface and the factory image, then power the router on so it catches the NMRP advertisement during boot:nmrpflash -i <your-wired-interface> \ -f openwrt-<version>-mediatek-mt7622-netgear_wax206-squashfs-factory.img
Use the OpenWrt …-factory.img to reinstall OpenWrt, or a Netgear stock
.img to return to vendor firmware. The serial/TFTP U-Boot fallback is
documented on the
OpenWrt WAX206 device page.