openwrt刷机流程

选择路由器型号对应的固件

https://firmware-selector.openwrt.org/

选择型号,并下载。

刷机方法

通过ssh

https://openwrt.org/docs/guide-user/installation/sysupgrade.cli

# Upload firmware
scp -O firmware_image.bin root@openwrt.lan:/tmp
 
# Flash firmware
sysupgrade -v /tmp/firmware_image.bin

如果sysupgrade有问题可以用这个强刷

# Flash firmware
mtd -r write /tmp/firmware_image.bin firmware

通过串口

最后的方案