Netgear WNR2000 v3 Quesiton

Post new topic   Reply to topic    DD-WRT Forum Index -> Atheros WiSOC based Hardware
Goto page Previous  1, 2, 3 ... 9, 10, 11
Author Message
mrjcd
DD-WRT Guru


Joined: 31 Jan 2015
Posts: 6264
Location: Texas

PostPosted: Mon Sep 23, 2019 11:29    Post subject: Reply with quote
m-man21 wrote:
I picked up a WNR2000 V3,
is my path for ddwrt to go
1. flash ddwrt v.18777 Factory NA.img
2. flash ddwrt v.18777 webflash.bin
3. flash ddwrt v.29940 webflash.bin

or do i need to flash the Factory NA.img for 29940 before the 29940.bin?

thanks

https://wiki.dd-wrt.com/wiki/index.php/Netgear_WNR2000V3#Initial_flashing_instruction
prolly good to read whole page, althgough some info is outdated but I think links to other posts/info are ok Razz

---
EDIT:
m-man21 wrote:
or do i need to flash the Factory NA.img
the page I linked to wrote:
Choose either the NA (North American) or WW(World Wide) depending on your location.

It sometimes helps to give help if people put what part of the world they are in into their profile Idea
Sponsor
tnv
DD-WRT Novice


Joined: 13 Jan 2020
Posts: 3

PostPosted: Mon Feb 10, 2020 10:21    Post subject: Reply with quote
I wrote a little script to find all the WNR2000v3 firmware that is less than the limit specified by [1].

Code:

#!/usr/bin/env python

from ftplib import FTP, error_perm

ftp = FTP('ftp.dd-wrt.com')
ftp.login()
for year in ftp.nlst("/betas"):
    for build in ftp.nlst(year):
        try:
            p = build + "/netgear-wnr2000v3/wnr2000v3-webflash.bin"
            size = ftp.size(p)
            if size < 3735552:
                print("p = %s, size = %d" % (p, size))
        except error_perm:
            continue



With this script, I have verified that build r29837 is the latest build that can be installed on the device.

[1] https://wiki.dd-wrt.com/wiki/index.php/WNR2000v3
BrainSlayer
Site Admin


Joined: 06 Jun 2006
Posts: 7463
Location: Dresden, Germany

PostPosted: Mon Feb 10, 2020 14:27    Post subject: Reply with quote
tnv wrote:
I wrote a little script to find all the WNR2000v3 firmware that is less than the limit specified by [1].

Code:

#!/usr/bin/env python

from ftplib import FTP, error_perm

ftp = FTP('ftp.dd-wrt.com')
ftp.login()
for year in ftp.nlst("/betas"):
    for build in ftp.nlst(year):
        try:
            p = build + "/netgear-wnr2000v3/wnr2000v3-webflash.bin"
            size = ftp.size(p)
            if size < 3735552:
                print("p = %s, size = %d" % (p, size))
        except error_perm:
            continue



With this script, I have verified that build r29837 is the latest build that can be installed on the device.

[1] https://wiki.dd-wrt.com/wiki/index.php/WNR2000v3


next will work again

_________________
"So you tried to use the computer and it started smoking? Sounds like a Mac to me.." - Louis Rossmann https://www.youtube.com/watch?v=eL_5YDRWqGE&t=60s
mrjcd
DD-WRT Guru


Joined: 31 Jan 2015
Posts: 6264
Location: Texas

PostPosted: Thu Feb 13, 2020 17:08    Post subject: Reply with quote
Ok guys, been a long long time but now we have a new working build for the WNR2000v3
look ---> 'HERE for the r42353 'wnr2000v3-webflash.bin'
Please see the ReadMe in that directory --- I noted couple minor quirks

I have NO idea if this will be a public release but any from now on hoprfully will also be good for this old unit.
you should thank your uncle BrainSlayer
Twisted Evil
alcuin
DD-WRT Novice


Joined: 14 Feb 2007
Posts: 26

PostPosted: Thu Feb 13, 2020 20:18    Post subject: Reply with quote
This is amazing. I can confirm the new r42353 works on my wnr2000 v3. Thank you BS for bringing a new update to this router. It's not a great router but having a new secure update keeps it working and out of the trash pile.
munroatewon
DD-WRT Novice


Joined: 26 Aug 2020
Posts: 2

PostPosted: Wed Aug 26, 2020 18:37    Post subject: Reply with quote
So I've upgraded my WNR2000v3 to r42353, hoping to use it as a client bridge. Is there a more recent recommended build I ought to be using instead?
mrjcd
DD-WRT Guru


Joined: 31 Jan 2015
Posts: 6264
Location: Texas

PostPosted: Wed Aug 26, 2020 19:53    Post subject: Reply with quote
munroatewon wrote:
So I've upgraded my WNR2000v3 to r42353, hoping to use it as a client bridge. Is there a more recent recommended build I ought to be using instead?

Netgear WNR2000v3
DD-WRT v3.0-r43845 std (07/18/20)
Linux 3.10.108-d10 #52834 Sat Jul 18 05:21:53 +04 2020 mips
been using for while now but it's just setup as a WAP + isolated guest network
worky ok AFAIK ...several wireless clients connected to it all time


these guys connected to it most of the time but a few more later in the evening



here link to that FW iffin you want it ---
https://download1.dd-wrt.com/dd-wrtv2/downloads/betas/2020/07-18-2020-r43845/netgear-wnr2000v3/
munroatewon
DD-WRT Novice


Joined: 26 Aug 2020
Posts: 2

PostPosted: Wed Aug 26, 2020 20:38    Post subject: Reply with quote
mrjcd wrote:
munroatewon wrote:
So I've upgraded my WNR2000v3 to r42353, hoping to use it as a client bridge. Is there a more recent recommended build I ought to be using instead?

Netgear WNR2000v3
DD-WRT v3.0-r43845 std (07/18/20)
Linux 3.10.108-d10 #52834 Sat Jul 18 05:21:53 +04 2020 mips
been using for while now but it's just setup as a WAP + isolated guest network
worky ok AFAIK ...several wireless clients connected to it all time


these guys connected to it most of the time but a few more later in the evening



here link to that FW iffin you want it ---
https://download1.dd-wrt.com/dd-wrtv2/downloads/betas/2020/07-18-2020-r43845/netgear-wnr2000v3/


Thanks! Really appreciate what you guys do, DD-WRT is a terrific project.
wolfie79
DD-WRT Novice


Joined: 01 Oct 2021
Posts: 1

PostPosted: Fri Oct 01, 2021 20:00    Post subject: Reply with quote
Somehow I managed to get build 44715 on my Netgear WNR2000v3. All I did was flash build 18777's NA .img file using Netgear's interface, (Netgear version was on 1.1.2.6). Then I went to the firmware upgrade and upgraded using build 44715's webflash.bin on the Router Database, which somehow worked. Not sure if it will work for others, but I just wanted to post my results.
mrjcd
DD-WRT Guru


Joined: 31 Jan 2015
Posts: 6264
Location: Texas

PostPosted: Fri Oct 01, 2021 20:12    Post subject: Reply with quote
wolfie79,
good to know Wink
I'm still using r43845 ...same config as this post
https://forum.dd-wrt.com/phpBB2/viewtopic.php?p=1215452#1215452
Just recently put it back in service after having lots trouble with a broadcomy device setup same as it was.

let us know if all is good & I might update mine Twisted Evil
kernel-panic69
DD-WRT Guru


Joined: 08 May 2018
Posts: 14102
Location: Texas, USA

PostPosted: Sat Oct 02, 2021 0:36    Post subject: Reply with quote
Upgrade to 47495 and report in the build thread... Wink Twisted Evil

https://download1.dd-wrt.com/dd-wrtv2/downloads/betas/2021/09-28-2021-r47495/netgear-wnr2000v3/

Long live the device cesspool threads, says the angry mob with pitchforks. Rolling Eyes

_________________
"Life is but a fleeting moment, a vapor that vanishes quickly; All is vanity"
Contribute To DD-WRT
Pogo - A minimal level of ability is expected and needed...
DD-WRT Releases 2023 (PolitePol)
DD-WRT Releases 2023 (RSS Everything)

----------------------
Linux User #377467 counter.li.org / linuxcounter.net
kal40
DD-WRT Novice


Joined: 04 Dec 2023
Posts: 1
Location: Hungary

PostPosted: Mon Dec 04, 2023 21:09    Post subject: Reply with quote
I've just upgraded my wnr2000v3 to the latest firmware https://ftp.dd-wrt.com/dd-wrtv2/downloads/betas/2023/12-04-2023-r54420/netgear-wnr2000v3/ and it works like a charm. Cool Laughing Very Happy
Goto page Previous  1, 2, 3 ... 9, 10, 11 Display posts from previous:    Page 11 of 11
Post new topic   Reply to topic    DD-WRT Forum Index -> Atheros WiSOC based Hardware All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum