OpenWrt/Cudy/TR3000: Difference between revisions
Jump to navigation
Jump to search
Created page with "==OpenWrt » Install== {|class='wikitable mw-collapsible' style='width:100%;margin:3px 0' !scope='col' style='text-align:left' colspan='2'| [https://openwrt.org/toh/cudy/tr3000#oem_easy_installation OpenWrt » Install] |- |valign='top' style='width:50%'| <syntaxhighlight style='margin:3px 0' lang='bash'> :' 🆔 192.168.10.88 ⚙️ http://192.168.10.1/cgi-bin/luci/ ⚙️ http://192.168.10.1/cgi-bin/luci/admin/setup 🔼 cudy_tr3000-v1-sysupgrade_20251112_release.bin '..." |
|||
| Line 59: | Line 59: | ||
---- | ---- | ||
|- | |- | ||
|valign='top | |valign='top'| | ||
<syntaxhighlight style='margin:3px 0' lang='bash'> | <syntaxhighlight style='margin:3px 0' lang='bash'> | ||
cat <<'EXE' | sudo bash | cat <<'EXE' | sudo bash | ||
| Line 73: | Line 73: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|valign='top | |valign='top'| | ||
<syntaxhighlight style='margin:3px 0' lang='bash'> | <syntaxhighlight style='margin:3px 0' lang='bash'> | ||
sudo rsync -avz ~/Downloads/m_upgrade_TR3000-R47-2.4.21-20251009-140812-sysupgrade_90649/TR3000-R47-2.4.21-20251009-140812-sysupgrade.bin /srv/tftp/recovery.bin | sudo rsync -avz ~/Downloads/m_upgrade_TR3000-R47-2.4.21-20251009-140812-sysupgrade_90649/TR3000-R47-2.4.21-20251009-140812-sysupgrade.bin /srv/tftp/recovery.bin | ||
| Line 84: | Line 84: | ||
sudo chown tftp:tftp /srv/tftp | sudo chown tftp:tftp /srv/tftp | ||
sudo chmod 755 /srv/tftp | sudo chmod 755 /srv/tftp | ||
</syntaxhighlight> | |||
|- | |||
|valign='top'| | |||
<syntaxhighlight style='margin:3px 0' lang='bash'> | |||
sudo ufw disable | |||
journalctl -u tftpd-hpa | tail -n 20 | |||
:' | |||
👉 Power OFF the Cudy. | |||
👉 Use a pin to press and hold the RESET button, While holding RESET, plug in the power. | |||
👉 Keep holding RESET for 15 seconds. Watch the LEDs; they will flash rapidly when the router starts pulling the "recovery.bin". | |||
👉 Release the button, wait 5 minutes. The router will slowly flash and then reboot itself. | |||
' | |||
</syntaxhighlight> | |||
|valign='top'| | |||
<syntaxhighlight style='margin:3px 0' lang='bash'> | |||
cat <<'EXE' | sudo bash | |||
echo | |||
rm /srv/tftp/recovery.bin | |||
systemctl disable --now tftpd-hpa | |||
systemctl stop tftpd-hpa | |||
systemctl status tftpd-hpa | |||
ufw enable | |||
EXE | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Revision as of 04:29, 29 December 2025
OpenWrt » Install
:'
🆔 192.168.10.88
⚙️ http://192.168.10.1/cgi-bin/luci/
⚙️ http://192.168.10.1/cgi-bin/luci/admin/setup
🔼 cudy_tr3000-v1-sysupgrade_20251112_release.bin
'
ls -lah ~/Downloads/TR3000\ V1_20251118.zip
ls -lah ~/Downloads/TR3000\ V1_20251118/TR3000\ V1/cudy_tr3000-v1-sysupgrade_20251112_release.bin
|
🕸 Cudy » TR3000 » Firmware » OpenWrt » Intermediary » Download 🕸 Cudy » TR3000 » Firmware » OpenWrt » Intermediary |
:'
🆔 192.168.1.88
⚙️ http://192.168.1.1/cgi-bin/luci/
⚙️ http://192.168.1.1/cgi-bin/luci/admin/system/flash
🔼 openwrt-24.10.5-mediatek-filogic-cudy_tr3000-v1-squashfs-sysupgrade.bin
'
ls -alh ~/Downloads/openwrt-24.10.5-mediatek-filogic-cudy_tr3000-v1-initramfs-kernel.bin
ls -alh ~/Downloads/openwrt-24.10.5-mediatek-filogic-cudy_tr3000-v1-squashfs-sysupgrade.bin
|
🕸 Cudy » TR3000 » Firmware » OpenWrt » Selected |
OpenWrt » Revert
:'
🆔 192.168.1.88
'
ls -alh ~/Downloads/m_upgrade_TR3000-R47-2.4.21-20251009-140812-sysupgrade_90649.zip
ls -alh ~/Downloads/m_upgrade_TR3000-R47-2.4.21-20251009-140812-sysupgrade_90649/TR3000-R47-2.4.21-20251009-140812-sysupgrade.bin
|
🕸 Cudy » TR3000 » Firmware » Upgrade |
cat <<'EXE' | sudo bash
echo
apt-get update
apt-get install -y tftpd-hpa tftp-hpa
apt-get clean
systemctl restart tftpd-hpa
systemctl status tftpd-hpa
cat /etc/default/tftpd-hpa
EXE
|
sudo rsync -avz ~/Downloads/m_upgrade_TR3000-R47-2.4.21-20251009-140812-sysupgrade_90649/TR3000-R47-2.4.21-20251009-140812-sysupgrade.bin /srv/tftp/recovery.bin
sudo chown tftp:tftp /srv/tftp/recovery.bin
sudo chmod 777 /srv/tftp/recovery.bin
sudo chown tftp:tftp /srv/tftp
sudo chmod 755 /srv/tftp
|
sudo ufw disable
journalctl -u tftpd-hpa | tail -n 20
:'
👉 Power OFF the Cudy.
👉 Use a pin to press and hold the RESET button, While holding RESET, plug in the power.
👉 Keep holding RESET for 15 seconds. Watch the LEDs; they will flash rapidly when the router starts pulling the "recovery.bin".
👉 Release the button, wait 5 minutes. The router will slowly flash and then reboot itself.
'
|
cat <<'EXE' | sudo bash
echo
rm /srv/tftp/recovery.bin
systemctl disable --now tftpd-hpa
systemctl stop tftpd-hpa
systemctl status tftpd-hpa
ufw enable
EXE
|
References
|
References | ||
|---|---|---|