WRT32X

Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> Marvell MVEBU based Hardware (WRT1900AC etc.)
Goto page Previous  1, 2, 3 ... 10, 11, 12 ... 14, 15, 16  Next
Author Message
adi-brasov
DD-WRT User


Joined: 03 May 2017
Posts: 126

PostPosted: Wed May 09, 2018 8:51    Post subject: Reply with quote
yes.
Sponsor
spuriousoffspring
DD-WRT Guru


Joined: 05 Apr 2017
Posts: 981
Location: Louisiana, USA

PostPosted: Thu May 10, 2018 0:46    Post subject: Reply with quote
Based off the U-BOOT Environment of the stock WRT32X these should be the correct commands to return a converted WRT32X back to stock:

The following commands have been proven to be incorrect. Do no use! See quote below from page #14 of this Thread for better information.
ghoffman wrote:
the syntax for setenv from the u-boot serial console has no equal sign between the environement variable name and the value you wish to assign. you should add single quotes around assigned strings that have special characters and spaces in them.

see this thread for details about converting wrt3200acm to wrt32x and back:
https://forum.lede-project.org/t/linksys-wrt32x-openwrt-based-firmware-wrt3200acm-crossflash/6730
the process is basically changing the uboot environment strings.
the strings for wrt32x are in that post. assuming that you did not overwrite the uboot loader, then you just have to correct your uboot environment to the wrt32x environment variable strings.

you should be able to do this from an openwrt/dd-wrt console using the fw_setenv command.

a good reference for setenv and fw_setenv is here:
https://wiki.openwrt.org/doc/techref/bootloader/uboot.config



setenv mtdparts=mtdparts=armada-nand:2048K(uboot)ro,128K(u_env),256K(s_env),256K@8064K( devinfo),123m@9m(firmware1),123m@132m(firmware2)

setenv nandboot=setenv bootargs console=ttyS0,115200 root=/dev/mtdblock6;nand read $def aultLoadAddr $priKernAddr $priKernSize; bootz $defaultLoadAddr

setenv altnandboot=setenv bootargs console=ttyS0,115200 root=/dev/mtdblock8 $mtdparts;n and read $defaultLoadAddr $altKernAddr $altKernSize; bootz $defaultLoadAddr

setenv firmwareName venom.img

setenv priKernAddr=0x0900000

setenv altKernAddr=0x8400000

setenv altFwSize=0x7B00000

setenv priFwSize=0x7B00000

setenv ipaddr 192.168.1.1

setenv serverip 192.168.1.254

setenv netmask 255.255.255.0

setenv bootdelay 3

setenv silent

saveenv

run update_both_images

reset
[/quote]

_________________
DD-WRT Installation & Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=311117

WRT32X DD-WRT Installation Procedure
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=315569

IPVanish OpenVPN Client Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=308565

FIRMWARE: OpenWrt SNAPSHOT r8217-2cc821e / LuCI Master (git-18.276.41146-280dd33)
MODEM: ARRIS SURFBoard SB8200
ROUTER: Linksys WRT32X
USB NAS: Western Digital BLACK 1 TB Hardrive + Startech USB 3.0 External SATA III Enclosure


Last edited by spuriousoffspring on Sat May 26, 2018 2:13; edited 1 time in total
Adamcarter
DD-WRT User


Joined: 09 Aug 2016
Posts: 235

PostPosted: Thu May 10, 2018 6:01    Post subject: Reply with quote
Welp, the 32xB or xbox edition is available for pre-order. Lol
_________________
WRT3200ACM V1 r39267 std (03/22/19) OpenVPN client
spuriousoffspring
DD-WRT Guru


Joined: 05 Apr 2017
Posts: 981
Location: Louisiana, USA

PostPosted: Fri May 11, 2018 17:15    Post subject: Reply with quote
For those of you like me with a Windows PC and almost zero Linux experience: I figured out a way to backup the stock WRT32X in case anything goes wrong after conversion to a WRT3200ACM.

First, you need to have the Windows Subsystem for Linux installed. If you're running Windows 10 and you update regularly - this should already be available.
If not see here:
https://docs.microsoft.com/en-us/windows/wsl/install-win10#install-the-windows-subsystem-for-linux

Second, pick your Linux Distribution from the Windows App Store. (See above link)
I went with Ubuntu, but as long as you can run Bash Shell Scripts, I don't think it matters.

Next, you need the Full MTD Backup Bash Shell Script from the OpenWRT Wiki. Found here:
https://wiki.openwrt.org/doc/howto/generic.backup

Using Notepad++ (availible here: https://notepad-plus-plus.org/ ) copy the Full MTD Backup script from OpenWRT Wiki.
*Make sure to delete each line in the script that begins with a # hashtag as they are instructional comments and not commands.
**Save as a Unix Script File (.bash)

I will attach a plain text copy of the already edited script as .bash file extensions aren't allowed on this forum.

Next, you need to run the script you just saved. I named my script mtdbackup.bash and placed it in my D:/ drive. Wherever you wish to save and run the script from is fine. Just change the path accordingly.
*The backup will automatically save to the same location as the script.

cd /mnt/d

./mtdbackup.bash

Here are some very helpful links:
https://blogs.windows.com/buildingapps/2016/03/30/run-bash-on-ubuntu-on-windows/

https://www.howtogeek.com/265900/everything-you-can-do-with-windows-10s-new-bash-shell/

https://www.howtogeek.com/261591/how-to-create-and-run-bash-shell-scripts-on-windows-10/

https://www.howtogeek.com/261383/how-to-access-your-ubuntu-bash-files-in-windows-and-your-windows-system-drive-in-bash/

https://www.howtogeek.com/331053/how-to-mount-removable-drives-and-network-locations-in-the-windows-subsystem-for-linux/

https://www.howtogeek.com/67469/the-beginners-guide-to-shell-scripting-the-basics/

https://www.tldp.org/LDP/Bash-Beginners-Guide/html/Bash-Beginners-Guide.html

_________________
DD-WRT Installation & Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=311117

WRT32X DD-WRT Installation Procedure
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=315569

IPVanish OpenVPN Client Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=308565

FIRMWARE: OpenWrt SNAPSHOT r8217-2cc821e / LuCI Master (git-18.276.41146-280dd33)
MODEM: ARRIS SURFBoard SB8200
ROUTER: Linksys WRT32X
USB NAS: Western Digital BLACK 1 TB Hardrive + Startech USB 3.0 External SATA III Enclosure
TheNameIsNigel
DD-WRT Novice


Joined: 14 May 2018
Posts: 2

PostPosted: Mon May 14, 2018 21:38    Post subject: Reply with quote
In case anyone didn't see, the WRT32X is now supported by LEDE with this patch: https://patchwork.ozlabs.org/patch/912526/

I can confirm it's working as I've compiled a build for myself and installed it on my WRT32X via the Firmware Update page on the stock firmware. It installs without a hitch.
spuriousoffspring
DD-WRT Guru


Joined: 05 Apr 2017
Posts: 981
Location: Louisiana, USA

PostPosted: Mon May 14, 2018 22:31    Post subject: Reply with quote
TheNameIsNigel wrote:
In case anyone didn't see, the WRT32X is now supported by LEDE with this patch: https://patchwork.ozlabs.org/patch/912526/

I can confirm it's working as I've compiled a build for myself and installed it on my WRT32X via the Firmware Update page on the stock firmware. It installs without a hitch.


I saw that last night (or really early this morning....I can't remember any more). I found my way there through the LEDE Forum via this Topic:
https://forum.lede-project.org/t/linksys-32x-invalid-firmware/9747

I checked the download repository for a WRT32X Package, but none yet. I have no idea how to compile.

I am also partial to DD-WRT. Hopefully won't be too much longer before Brainslayer updates the WRT32X DD-WRT Builds for new NAND chip and we'll have a 'Linksys GUI flashable' version

_________________
DD-WRT Installation & Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=311117

WRT32X DD-WRT Installation Procedure
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=315569

IPVanish OpenVPN Client Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=308565

FIRMWARE: OpenWrt SNAPSHOT r8217-2cc821e / LuCI Master (git-18.276.41146-280dd33)
MODEM: ARRIS SURFBoard SB8200
ROUTER: Linksys WRT32X
USB NAS: Western Digital BLACK 1 TB Hardrive + Startech USB 3.0 External SATA III Enclosure
TheNameIsNigel
DD-WRT Novice


Joined: 14 May 2018
Posts: 2

PostPosted: Mon May 14, 2018 22:40    Post subject: Reply with quote
spuriousoffspring wrote:
TheNameIsNigel wrote:
In case anyone didn't see, the WRT32X is now supported by LEDE with this patch: https://patchwork.ozlabs.org/patch/912526/

I can confirm it's working as I've compiled a build for myself and installed it on my WRT32X via the Firmware Update page on the stock firmware. It installs without a hitch.


I saw that last night (or really early this morning....I can't remember any more). I found my way there through the LEDE Forum via this Topic:
https://forum.lede-project.org/t/linksys-32x-invalid-firmware/9747

I checked the download repository for a WRT32X Package, but none yet. I have no idea how to compile.

I am also partial to DD-WRT. Hopefully won't be too much longer before Brainslayer updates the WRT32X DD-WRT Builds for new NAND chip and we'll have a 'Linksys GUI flashable' version


Yeah, there's no official build yet but I posted my build here in case anyone wants/needs it: https://basketbuild.com/filedl/devs?dev=TheNameIsNigel&dl=TheNameIsNigel/OpenWRT/Build4/openwrt-mvebu-cortexa9-linksys-wrt32x-squashfs-factory.img

I do like dd-wrt more, but I have no clue how to compile it, so I stuck to what I know for now haha. It does have a pretty clean UI though with the material theme: https://imgur.com/a/bDAwVA3
spuriousoffspring
DD-WRT Guru


Joined: 05 Apr 2017
Posts: 981
Location: Louisiana, USA

PostPosted: Mon May 14, 2018 22:57    Post subject: Reply with quote
TheNameIsNigel wrote:
Yeah, there's no official build yet but I posted my build here in case anyone wants/needs it: https://basketbuild.com/filedl/devs?dev=TheNameIsNigel&dl=TheNameIsNigel/OpenWRT/Build4/openwrt-mvebu-cortexa9-linksys-wrt32x-squashfs-factory.img

I do like dd-wrt more, but I have no clue how to compile it, so I stuck to what I know for now haha. It does have a pretty clean UI though with the material theme: https://imgur.com/a/bDAwVA3



Just downloaded it and I'll get it flashed & configured hopefully tonight.

THANKS FOR SHARING!!! Mr. Green

_________________
DD-WRT Installation & Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=311117

WRT32X DD-WRT Installation Procedure
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=315569

IPVanish OpenVPN Client Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=308565

FIRMWARE: OpenWrt SNAPSHOT r8217-2cc821e / LuCI Master (git-18.276.41146-280dd33)
MODEM: ARRIS SURFBoard SB8200
ROUTER: Linksys WRT32X
USB NAS: Western Digital BLACK 1 TB Hardrive + Startech USB 3.0 External SATA III Enclosure
Lantis
DD-WRT Novice


Joined: 29 Sep 2016
Posts: 10

PostPosted: Tue May 15, 2018 10:02    Post subject: Reply with quote
You’re welcome Wink

I tried to work with Brainslayer to get a working DDWRT image however he needed physical access to the device in order to finish debugging the final parts. I wasn’t able to provide this.

If someone is closer to him perhaps they would like to donate their hardware temporarily?
spuriousoffspring
DD-WRT Guru


Joined: 05 Apr 2017
Posts: 981
Location: Louisiana, USA

PostPosted: Tue May 15, 2018 13:46    Post subject: Reply with quote
Lantis wrote:
You’re welcome Wink

I tried to work with Brainslayer to get a working DDWRT image however he needed physical access to the device in order to finish debugging the final parts. I wasn’t able to provide this.

If someone is closer to him perhaps they would like to donate their hardware temporarily?


I would be happy to start a hardware donation collection and get him a WRT32X sent directly from Linksys.
There's currently a refurbished WRT32X on Linksys.com for $179.99. I have a 10% off promo code that would make the total = $162.00.

EDIT: Spoke with Linksys Sales Dept. They don't ship to Germany. The cheapest shipping estimate I found (from me to Hardware Donation address) is via USPS: $52.00.

Total amount needed to raise: $214

_________________
DD-WRT Installation & Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=311117

WRT32X DD-WRT Installation Procedure
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=315569

IPVanish OpenVPN Client Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=308565

FIRMWARE: OpenWrt SNAPSHOT r8217-2cc821e / LuCI Master (git-18.276.41146-280dd33)
MODEM: ARRIS SURFBoard SB8200
ROUTER: Linksys WRT32X
USB NAS: Western Digital BLACK 1 TB Hardrive + Startech USB 3.0 External SATA III Enclosure
throrak
DD-WRT Novice


Joined: 15 May 2018
Posts: 1

PostPosted: Tue May 15, 2018 15:46    Post subject: Reply with quote
There is a new one on a spanish store for 179€.

Ship to Germany is cheap.

https://www.pccomponentes.com/linksys-wrt32x-router-para-videojuegos-de-doble-banda-ac3200

Same price on amazon.es with the benefits of the no questions return.

https://www.amazon.es/Linksys-WRT32X-Prioritisation-acelerar-procesador/dp/B074XHWWRY/ref=sr_1_1_sspa?ie=UTF8&qid=1526399437&sr=8-1-spons&keywords=Linksys+WRT32X&psc=1
spuriousoffspring
DD-WRT Guru


Joined: 05 Apr 2017
Posts: 981
Location: Louisiana, USA

PostPosted: Tue May 15, 2018 16:30    Post subject: Reply with quote
throrak wrote:
There is a new one on a spanish store for 179€.

Ship to Germany is cheap.

https://www.pccomponentes.com/linksys-wrt32x-router-para-videojuegos-de-doble-banda-ac3200

Same price on amazon.es with the benefits of the no questions return.

https://www.amazon.es/Linksys-WRT32X-Prioritisation-acelerar-procesador/dp/B074XHWWRY/ref=sr_1_1_sspa?ie=UTF8&qid=1526399437&sr=8-1-spons&keywords=Linksys+WRT32X&psc=1


I have a PayPal Donation Pool setup:
https://paypal.me/pools/c/84qvww5k00

If you want to set one up yourself and take over I'll close this one. Or I could send you the money once we reach the goal $ amount.

Whatever is easier. Lemme know Mr. Green and thanks!

_________________
DD-WRT Installation & Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=311117

WRT32X DD-WRT Installation Procedure
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=315569

IPVanish OpenVPN Client Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=308565

FIRMWARE: OpenWrt SNAPSHOT r8217-2cc821e / LuCI Master (git-18.276.41146-280dd33)
MODEM: ARRIS SURFBoard SB8200
ROUTER: Linksys WRT32X
USB NAS: Western Digital BLACK 1 TB Hardrive + Startech USB 3.0 External SATA III Enclosure
spuriousoffspring
DD-WRT Guru


Joined: 05 Apr 2017
Posts: 981
Location: Louisiana, USA

PostPosted: Tue May 15, 2018 21:50    Post subject: Reply with quote
I offered to grant access to my WRT32X to Brainslayer via my WRT1900AC v1, however, I am unsure how to do it.

I've never had the need for Port Forwarding before so I am unfamiliar with it.

Here's what I got:

A WRT1900AC v1 running 35927.
A WRT32X with stock Venom firmware.
A Windows Desktop with 2 Network Adapters. 192.168.1.150 and 192.168.1.151.
The WRT1900AC is connected to my primary at 192.168.1.151 and it's IP is set as 192.168.1.1
The WRT32X is connected to 192.168.1.150 and it's IP is set to 192.168.2.1
I have serial access to both routers and one USB-TTL Cable.

BS asked that I connect the WRT32X Serial to the WRT1900
Enable SSH on WRT1900
Then use Port Forwarding (ports 22 & 80) to give him access to the WRT32X using the WRT1900 as a Linux Box.

Can someone 'dumb this down' for me and tell me specifically what needs to be done.

Thanks!

_________________
DD-WRT Installation & Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=311117

WRT32X DD-WRT Installation Procedure
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=315569

IPVanish OpenVPN Client Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=308565

FIRMWARE: OpenWrt SNAPSHOT r8217-2cc821e / LuCI Master (git-18.276.41146-280dd33)
MODEM: ARRIS SURFBoard SB8200
ROUTER: Linksys WRT32X
USB NAS: Western Digital BLACK 1 TB Hardrive + Startech USB 3.0 External SATA III Enclosure
Latschenharry
DD-WRT Novice


Joined: 26 Apr 2018
Posts: 26
Location: Germany

PostPosted: Wed May 16, 2018 6:30    Post subject: Reply with quote
spuriousoffspring wrote:
I offered to grant access to my WRT32X to Brainslayer via my WRT1900AC v1, however, I am unsure how to do it.

I've never had the need for Port Forwarding before so I am unfamiliar with it.

Here's what I got:

A WRT1900AC v1 running 35927.
A WRT32X with stock Venom firmware.
A Windows Desktop with 2 Network Adapters. 192.168.1.150 and 192.168.1.151.
The WRT1900AC is connected to my primary at 192.168.1.151 and it's IP is set as 192.168.1.1
The WRT32X is connected to 192.168.1.150 and it's IP is set to 192.168.2.1
I have serial access to both routers and one USB-TTL Cable.

BS asked that I connect the WRT32X Serial to the WRT1900
Enable SSH on WRT1900
Then use Port Forwarding (ports 22 & 80) to give him access to the WRT32X using the WRT1900 as a Linux Box.

Can someone 'dumb this down' for me and tell me specifically what needs to be done.

Thanks!


I think he wants you to connect the USB from the serial to the WRT1900. Than you have to make a portforwarding from your modem to the WRT1900 so he can access the WRT1900 via SSH and the Webinterface.

spuriousoffspring
DD-WRT Guru


Joined: 05 Apr 2017
Posts: 981
Location: Louisiana, USA

PostPosted: Thu May 17, 2018 8:27    Post subject: Donations Needed! Reply with quote
For anyone who us interested in seeing Tested Stable DD-WRT Builds for the Linksys WRT32X please see this Thread:

https://www.dd-wrt.com/phpBB2/viewtopic.php?t=315130

Donations can be made here:

https://paypal.me/pools/c/84qvww5k00

Thank you!

_________________
DD-WRT Installation & Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=311117

WRT32X DD-WRT Installation Procedure
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=315569

IPVanish OpenVPN Client Setup TUTORIAL
http://www.dd-wrt.com/phpBB2/viewtopic.php?t=308565

FIRMWARE: OpenWrt SNAPSHOT r8217-2cc821e / LuCI Master (git-18.276.41146-280dd33)
MODEM: ARRIS SURFBoard SB8200
ROUTER: Linksys WRT32X
USB NAS: Western Digital BLACK 1 TB Hardrive + Startech USB 3.0 External SATA III Enclosure
Goto page Previous  1, 2, 3 ... 10, 11, 12 ... 14, 15, 16  Next Display posts from previous:    Page 11 of 16
Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> Marvell MVEBU based Hardware (WRT1900AC etc.) 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