Anyway, assuming that:
- You installed a snapshot image (without LuCI)
- You want to revert to stock firmware
- Your device does not have an Internet connection
- You have a Windows 10 PC
- Your OpenWRT Archer C6 v3.2 is turned on, up and running
- You can ping and ssh your OpenWrt device at 192.168.1.1
Then execute the following steps to revert to stock firmware:
- Download a ZIP with the revert image of the Archer A6/C6 v3 I've made from [here]( a6c6_v3_sysupgrade_factory_revert.bin.zip (Password: a6c6revert)
- Unzip the file contents to a folder in your PC (ex: "
C:\tmp
"). You should get a file named "a6c6_v3_sysupgrade_factory_revert.bin
" in this directory - Open a windows command prompt and change the current directory to the folder you unzippped the revert image:
cd c:\tmp
- Copy the revert image to the device using the Windows
scp
command:
C:\tmp>scp a6c6_v3_sysupgrade_factory_revert.bin root@192.168.1.1:/tmp
- Open an ssh session to your device:
ssh root@192.168.1.1
- Flash the revert image with the following command (ignore the warnings):
root@OpenWrt:~# sysupgrade -v -F /tmp/a6c6_v3_sysupgrade_factory_revert.bin
- Wait for the flashing process to finish. After the device reboots, you can access the stock firmware at http://192.168.0.1
- Using the stock firmware after the revert, it is strongly recommended to flash a new firmware stock image downloaded directly from TP-Link website.
More details below.
C:\tmp>scp a6c6_v3_sysupgrade_factory_revert.bin root@192.168.1.1:/tmp
root@192.168.1.1's password:
a6c6_v3_sysupgrade_factory_revert.bin 100% 15MB 6.0MB/s 00:02
C:\tmp>ssh root@192.168.1.1
root@192.168.1.1's password:
BusyBox v1.35.0 (2022-02-11 13:30:04 UTC) built-in shell (ash)
_______ ________ __
| |.-----.-----.-----.| | | |.----.| |_
| - || _ | -__| || | | || _|| _|
|_______|| __|_____|__|__||________||__| |____|
|__| W I R E L E S S F R E E D O M
-----------------------------------------------------
OpenWrt SNAPSHOT, r18792-337e942290
-----------------------------------------------------
root@OpenWrt:~# sysupgrade -v -F /tmp/a6c6_v3_sysupgrade_factory_revert.bin
Sun Feb 13 08:00:15 -03 2022 upgrade: Image metadata not present
Image check failed but --force given - will update anyway!
(...)
Sun Feb 13 08:00:16 -03 2022 upgrade: Commencing upgrade. Closing all shell sessions.
Command failed: Connection failed
root@OpenWrt:~# Connection to 192.168.1.1 closed by remote host.
Connection to 192.168.1.1 closed.
C:\tmp>