Netgear Unbrick Utility

Joseph C. Lehner 1168d50ad1 Bump version 1 yıl önce
fuzzin 55452bb753 More fuzzing related changes 4 yıl önce
.editorconfig 9565154e4f Add .editorconfig and .gitattributes 4 yıl önce
.gitattributes 3ef570e606 Add icon 3 yıl önce
.gitignore f7261b35b8 Update .gitignore 3 yıl önce
LICENSE aaaa05d658 Add LICENSE 6 yıl önce
Makefile 6c090ad9e8 Use pkg-config for libpcap on Linux 2 yıl önce
README-R7000.md 8a26cdf4b1 Updated documentation. 4 yıl önce
README.md 2e5dbabf69 Update README.md 1 yıl önce
ethsock.c dab3625db4 Fix ethsock_is_unplugged 1 yıl önce
fuzz.c 55452bb753 More fuzzing related changes 4 yıl önce
main.c 6d21f8642e Show WinPcap deprecation warning. 2 yıl önce
mkfuzz.c 55452bb753 More fuzzing related changes 4 yıl önce
nmrp.c 2db67dedd4 Don't send keep-alive request after upload 1 yıl önce
nmrpd.h 4fa516602c Show default values of some command-line options 2 yıl önce
nmrpflash.cbp c92753e1a8 Bump version 1 yıl önce
nmrpflash.ico 5cc29f6935 Fix icon resolution 2 yıl önce
nmrpflash.manifest 40d0215a91 Update manifest and rc file 3 yıl önce
nmrpflash.rc d22807f3a3 Update icon 3 yıl önce
nmrpflash.svg 5cc29f6935 Fix icon resolution 2 yıl önce
tftp.c a2267b7351 Display size of uploaded firmware file 3 yıl önce
util.c ec29ee610d Fuzzing related changes 4 yıl önce
wireshark-nmrp.lua 79daac1e22 Always show opt length in Wireshark dissector 4 yıl önce

README-R7000.md

Some helpful hints for putting firmware on the Netgear R7000

  • As of the writing of this, July 2020, the R7000's web interface does not let you downgrade its firmware, or run 3rd party firmware on it.
  • Older versions of the R7000's firmware do allow you to flash 3rd party firmware.
  • You can use nrmpflash to downgrade router's firmware, for example R7000-V1.0.3.56_1.1.25.

Here is an example set of steps

  1. Plug in your router, go through the regular stock web interface setup. Note if the router's IP address is now 192.168.1.1 or 10.0.0.1
  2. Connect computer your computer to LAN1 with an ethernet cable
  3. At the command prompt on your computer, run: sudo nmrpflash -v -i YOUR_ADAPTER_NAME -f R7000-V1.0.3.56_1.1.25.chk -t 10000 -T 10000 -A 10.0.0.2 -a 10.0.0.1
  4. Note 1: The instructions from README.md that tell you how to find YOUR_ADAPTER_NAME.
  5. Note 2: if your router's IP address was 192.168.1.1 then swap out 10.0.0.x with 192.168.1.x for the two IP addresses above
  6. Right after running the command, power on your router. Your router checks for the nmrpflash server on boot. If all goes well you should see this:

    sudo nmrpflash -v -i enp0s25 -f R7000-V1.0.3.56_1.1.25.chk -t 10000 -T 10000 -A 10.0.0.2 -a 10.0.0.1
    Adding 10.0.0.2 to interface enp0s25.
    Advertising NMRP server on enp0s25 ... /
    Received configuration request from ab:cd:ef:12:34:56.
    Sending configuration: 10.0.0.1/24.
    Received upload request without filename.
    Using remote filename 'R7000-V1.0.3.56_1.1.25.chk'.
    Uploading R7000-V1.0.3.56_1.1.25.chk ... OK
    Waiting for remote to respond.
    Received keep-alive request (19).  
    Remote finished. Closing connection.
    Reboot your device now.
    
    
  7. Reboot the device. You now have old firwmare, congratulations.