nomad_surfer
New Around Here
Hello everyone,
I have a AX88U Asus router, during to the process of downgrade/upgrade process of the firmware, the router specific partition has been corrupted. I need to recover the info stored in that partition.
When I issue the following command in ssh session on the router
there is nothing in it. @ColinTaylor has informed me that the router specific information should be stored in mtd10 partition of flash memory. He must be busy,
I need to know what variables and information stored in that partition, those who have AX88U or AX86U, can you guys have a look at the list of files in the partition and their content (if they have MAC address you can replace it with xx:xx: (sensitive info should be masked) so that I can put the same files on that partition with my router information
but after looked at the partition, you need to issue the following command to detach ubi_volume
to properly detaching the partition. Thank you for your help in advance..
I have a AX88U Asus router, during to the process of downgrade/upgrade process of the firmware, the router specific partition has been corrupted. I need to recover the info stored in that partition.
When I issue the following command in ssh session on the router
Code:
ubiattach /dev/ubi_ctrl -m 10
mkdir /tmp/ubi_vol
mount -t ubifs ubi1_0 /tmp/mnt/ubi_vol
ls /tmp/ubi_vol
there is nothing in it. @ColinTaylor has informed me that the router specific information should be stored in mtd10 partition of flash memory. He must be busy,
I need to know what variables and information stored in that partition, those who have AX88U or AX86U, can you guys have a look at the list of files in the partition and their content (if they have MAC address you can replace it with xx:xx: (sensitive info should be masked) so that I can put the same files on that partition with my router information
but after looked at the partition, you need to issue the following command to detach ubi_volume
Code:
umount /tmp/mnt/ubi_vol
ubidetach -p /dev/mtd10
to properly detaching the partition. Thank you for your help in advance..