New Build - 03/25/2020 - r42803

Post new topic   Reply to topic    DD-WRT Forum Index -> Broadcom SoC based Hardware
Goto page 1, 2  Next
Author Message
egc
DD-WRT Guru


Joined: 18 Mar 2014
Posts: 12908
Location: Netherlands

PostPosted: Wed Mar 25, 2020 13:30    Post subject: New Build - 03/25/2020 - r42803 Reply with quote
This thread is for feedback on beta build r42803 for developers and users (configuration, status, errors & logs).
Avoid discussions, create a new thread for specific problems, questions or use search as this is not for support.
Please report hardware model, version, operating & wireless modes along with file name (factory, webflash).


Important: if reporting issues, provide applicable info (syslog output, 'dmesg', 'cat /var/log/messages', etc.)
or place into an SVN ticket. For firewall issues, also provide iptables info ('iptables -L', 'iptables -t nat -L', & the /tmp/.ipt file).
Be sure to include operating and wireless modes (Gateway, AP, CB, etc.) along with any relevant configuration information.

Flashing any beta build assumes you are responsible, have researched, know the risks and recovery methods.
If you don't understand your router, which file or recovery methods do NOT flash this experimental test build.


Downloads: (DD-WRT website) HTTPS & FTP

CLI Flash: 'cd /tmp' then 'wget {file URL}' (or 'curl -k {file URL} -o {file}') with http (not https) or ftp. Then 'write {file} linux'.

Changelogs: SVN changelog since last build: r42747

Notes: 1. CVE-2019-14899 VPN fix from December, since then various revisions including recently 7024.
2. In-kernel Samba has been implemented this year and default min/max versions have changed, WSD now supported.

Issues: 1. VAP appears to break 2.4 Ghz from r42542 onward.
2.) There may be remaining issues with Samba, with frequent updates.

Example Template:
Code:
[b]Router/Version: [/b]
[b]Mode: [/b]
[b]Status: [/b]
[b]Errors: [/b]
[b]File: [/b]
[b]Previous: [/b]
[b]Kernel: [/b]
[b]Reset: [/b]

_________________
Routers:Netgear R7000, R6400v1, R6400v2, EA6900 (XvortexCFE), E2000, E1200v1, WRT54GS v1.
Install guide R6400v2, R6700v3,XR300:https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=316399
Install guide R7800/XR500: https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=320614
Forum Guide Lines (important read):https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=324087
Sponsor
egc
DD-WRT Guru


Joined: 18 Mar 2014
Posts: 12908
Location: Netherlands

PostPosted: Wed Mar 25, 2020 13:35    Post subject: Reply with quote
Router Model: Netgear R6400v2, board_id: U12H332T30_NETGEAR

Firmware Version: DD-WRT v3.0-r42803 std (03/25/20)
Kernel Version: Linux 4.4.217 #1196 SMP Wed Mar 25 08:38:04 +04 2020 armv7l

Upgraded from: DD-WRT v3.0-r42729 std (03/18/20)
Reset: No, not this time

Status: Up and running for 1 hour, basic setup as Gateway, static leases, OpenVPN client (on PIA) with Policy Based Routing up and running, 2,4GHz, 5Ghz USB storage NAS working, OpenVPN server and WireGuard working.

Errors:
1. Since the introduction of ksmbd, I cannot save to an ntfs partition on the routers USB drive: wrong parameter.
2. DNS leak see: http://svn.dd-wrt.com/ticket/6020, https://svn.dd-wrt.com/ticket/6908

Otherwise build is fine

Resolved:
1. Pushed DNS servers from VPN provider are used starting with build 41120, if you do not want that, add the following to the Additional Config of the VPN client:
pull-filter ignore "dhcp-option DNS"
2. Build 41174 has an improved VPN Policy Based Routing, it is now possible to use the VPN route command i.e. to route a DNS server via the VPN (in this way you will get rid of the DNS leak), see: https://svn.dd-wrt.com/ticket/6815#comment:1 , and for DNS leaks the second posting of this thread: https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=318662
3. Another improvement on PBR is that local routes are now copied over to the alternate routing table so there is communication if you have unbridged VAP's and you can set the router's IP on PBR.
See: https://svn.dd-wrt.com/ticket/6821#comment:3
4. Starting with build 41174, the PBR has become more versatile, you can now use " from [IP address] to [IP address] ", so if you enter the following in the PBR field:
192.168.1.124 to 95.85.16.212 #ipleak.net, it will only route IP address 95.85.16.212 (which is ip leak.net) from my IP address 192.168.1.124 via the VPN everything else from this IP address will route via the WAN (this is just an example).
See: https://svn.dd-wrt.com/ticket/6822
Although this command itself supports routing per port this is however only available starting from K 4.17 so we have to rely on scripting for per port routing until then.
5. New OpenVPN TLS ciphers are added in 41308 see: https://svn.dd-wrt.com/changeset/41308
6. Starting with build 41304 you can now choose which TLS Key you want to use: TLS Auth or the newer/better TLS Crypt. See https://svn.dd-wrt.com/ticket/6845#comment:17
7. Builds from 41786 onwards, when using an OVPN server to connect to your local LAN clients, access might be prevented because of a patch which should solve a recent vulnerability ( see: https://svn.dd-wrt.com/ticket/6928)
This can be mitigated with the following firewall rule:

Code:
iptables -t nat -I POSTROUTING -o br0 -s $(nvram get openvpn_net)/$(nvram get openvpn_tunmask) -j MASQUERADE

When using WireGuard you can run into the same trouble,i.e. not being able to access your local LAN clients. For WireGuard this is the workaround:
Code:
iptables -t nat -I POSTROUTING -o br0 -s $(nvram get oet1_ipaddr)/$(nvram get oet1_netmask) -j MASQUERADE

This method described above also has security and logging concerns as all traffic has the same source address (your router)
An alternate method is using the following rule but it only works if the VPN or Wireguard interface is up and if your VPN or Wireguard interface goes down you have to reapply or run a continuous script checking/applying:
OpenVPN server:

Code:
iptables -t raw -I PREROUTING -i br0 -d $(nvram get openvpn_net)/$(nvram get openvpn_tunmask) -j ACCEPT

WireGuard:
Code:
iptables -t raw -I PREROUTING -i br0 -d $(nvram get oet1_ipaddr)/$(nvram get oet1_netmask) -j ACCEPT

This rule can expose your LAN side to the CVE attack, but if you have your IOT things separated and tight control over your LAN you should be good, if your LAN is hacked you have got bigger problems.

Builds starting with 41813 have an option button in OpenVPN and Wireguard for disabling the CVE-patch 14899


Big Thanks to BS!!

_________________
Routers:Netgear R7000, R6400v1, R6400v2, EA6900 (XvortexCFE), E2000, E1200v1, WRT54GS v1.
Install guide R6400v2, R6700v3,XR300:https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=316399
Install guide R7800/XR500: https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=320614
Forum Guide Lines (important read):https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=324087
twindragon6
DD-WRT User


Joined: 29 Jun 2008
Posts: 332

PostPosted: Wed Mar 25, 2020 15:24    Post subject: Netgear Nighthawk R7000 Reply with quote
Router/Version: Netgear R7000
Firmware: DD-WRT v3.0-r42803 std (03/25/20)
Kernel: Linux 4.4.217 #1196 SMP Wed Mar 25 08:38:04 +04 2020 armv7l
Mode: Gateway
Reset: No
Previous: 03-20-2020-r42747
Status: Working

grep -i err /var/log/messages

Dec 31 16:00:09 R7000 kern.err kernel: bcmsflash: found no supported devices
Dec 31 16:00:09 R7000 daemon.info mstpd[616]: error, CTL_set_cist_bridge_config: Couldn't find bridge with index 8
Dec 31 16:00:09 R7000 daemon.info mstpd[616]: error, CTL_set_cist_bridge_config: Couldn't find bridge with index 8
Dec 31 16:00:09 R7000 daemon.info mstpd[616]: error, CTL_set_msti_bridge_config: Couldn't find bridge with index 8
Dec 31 16:00:09 R7000 daemon.info mstpd[616]: error, CTL_set_cist_bridge_config: Couldn't find bridge with index 8
Dec 31 16:00:09 R7000 daemon.info mstpd[616]: error, CTL_set_cist_bridge_config: Couldn't find bridge with index 8
Dec 31 16:00:12 R7000 local5.err ksmbd: [ksmbd-worker/998]: ERROR: Can't open `/tmp/smb.db': No such file or directory
Dec 31 16:00:12 R7000 local5.err ksmbd: [ksmbd-worker/998]: ERROR: User database file does not exist. Only guest sessions (if permitted) will work.
Dec 31 16:00:12 R7000 user.err wsdd2[989]: error: wsdd-mcast-v4: wsd_send_soap_msg: send
Dec 31 16:00:21 R7000 daemon.err ntpclient[1140]: Failed resolving address to hostname 2.pool.ntp.org: Try again
Dec 31 16:00:21 R7000 daemon.err ntpclient[1140]: Failed resolving server 2.pool.ntp.org: Network is down
Mar 25 07:54:01 R7000 daemon.err httpd[1036]: httpd : Request Error Code 408: Unexpected connection close in intitial request
Mar 25 07:54:07 R7000 kern.err kernel: hub 3-0:1.0: config failed, hub doesn't have any ports! (err -19)
Mar 25 07:54:16 R7000 daemon.err dnscrypt-proxy[1236]: Unable to retrieve server certificates
Mar 25 07:54:32 R7000 daemon.err dnscrypt-proxy[1236]: Unable to retrieve server certificates
Mar 25 07:54:50 R7000 daemon.err dnscrypt-proxy[1236]: Unable to retrieve server certificates
Mar 25 07:55:11 R7000 daemon.err dnscrypt-proxy[1236]: Unable to retrieve server certificates



Speedtest.jpg
 Description:
Speedtest
 Filesize:  59.88 KB
 Viewed:  6297 Time(s)

Speedtest.jpg


MysticGold04
DD-WRT User


Joined: 20 Apr 2018
Posts: 174
Location: Somewhere remote

PostPosted: Wed Mar 25, 2020 18:38    Post subject: Reply with quote
Router/Version: ASUS RT-AC68U (TM-AC1900 Converted)
Version: DD-WRT v3.0-r42803 std (03/25/20)
Mode: Client Bridge
Status: OK
Errors: None
File: asus_rt-ac68u-firmware.trx
Previous Version: 40270M kongac
Kernel: Linux 4.4.217 #1196 SMP Wed Mar 25 08:38:04 +04 2020 armv7l
Reset: No

I'll play along. I had some weird issues with r42747, so I reloaded 40270M Kong and did an nvram reset. Then this morning, loaded r42803 right over the top. Seems to be working. I am currently on WFH status, so it will get a workout.

_________________
ASUS RT-AC3100 AP Merlin 386.12_4
ASUS RT-AC68U Media Bridge/Merlin 386.12_4 (x2)
ASUS RT-AC68U AP r54604
ASUS RT-AC68U Gateway/AP r54604
Edgerouter-4, v2.0.9-hotfix7
jwh7
DD-WRT Guru


Joined: 25 Oct 2013
Posts: 2670
Location: Indy

PostPosted: Wed Mar 25, 2020 19:36    Post subject: Reply with quote
Netgear WNDR4000: 2.4 GHz CB to 5 GHz AP+VAP
Kernel: Linux 3.10.108-d10 OpenWrt GCC 9.2.0 r10890-7d542dc804
File: K3X nv64k.bin
Status: GUI update over 42078 w/o reset; been running @533 MHz for years (w/ added heatsink). VAP/etc. still working.

_________________
# NAT/SFE/CTF: limited speed w/ DD # Repeater issues # DD-WRT info: FAQ, Builds, Types, Modes, Changes, Demo #
OPNsense x64 5050e ITX|DD: DIR-810L, 2*EA6900@1GHz, R6300v1, RT-N66U@663, WNDR4000@533, E1500@353,
WRT54G{Lv1.1,Sv6}@250
|FreshTomato: F7D8302@532|OpenWRT: F9K1119v1, RT-ACRH13, R6220, WNDR3700v4
wabe
DD-WRT Guru


Joined: 17 Jun 2006
Posts: 889

PostPosted: Wed Mar 25, 2020 20:08    Post subject: Reply with quote
Router/Version: ASUS RT-AC68U rev A1
Version: DD-WRT v3.0-r42803 std (03/25/20)
Mode: Gateway / AP
Status: OK
Errors: Nothing significant
File: asus_rt-ac68u-firmware.trx
Previous Version: 42747
Kernel: Linux 4.4.217 #1196 SMP Wed Mar 25 08:38:04 +04 2020 armv7l
Reset: No, flashed from CLI

Seems to work quite well!

_________________
Netgear R7000 on Build 55109
Asus AC-AC68U rev. C1 (AP) on Build 55109
Asus AC-68U rev. A1 on Build 54604
Asus AC-68U rev. A1 on Build 53339
tinkeruntilitworks
Guest





PostPosted: Wed Mar 25, 2020 21:09    Post subject: Reply with quote
Router: Netgear R7000P
Kernel: Linux 4.4.217 #1201 SMP Wed Mar 25 09:08:03 +04 2020 armv7l
Mode: Gateway/AP 2.4GHz 5GHz IPv6 Unbound JFFS2 static leases
Status: all seems well
*
some changes to unbound & dnsmasq
Code:
server=127.0.0.1#7053
no-resolv

automatically get added to the dnsmasq conf when you enable unbound

the default unbound.conf swithed the interface to
Code:
interface: 0.0.0.0@7053
interface: ::0@7053


Last edited by tinkeruntilitworks on Tue Apr 28, 2020 23:08; edited 9 times in total
flyzipper
DD-WRT Guru


Joined: 21 Feb 2016
Posts: 504

PostPosted: Wed Mar 25, 2020 21:17    Post subject: Reply with quote
Router/Version: Netgear R7000
Firmware: DD-WRT v3.0-r42803 std (03/25/20)
Kernel: Linux 4.4.217 #1196 SMP Wed Mar 25 08:38:04 +04 2020 armv7l
Previous: r42729
Mode/Status: Gateway / working
Reset: no
Issues/Errors: Working well so far**

**that said, I initially lost internet immediately after the upgrade (router WAN grabbed an IP, WiFi devices connected, but no DNS resolution, failed DNS connection attempts filled connection table). Not ascribing this to the new firmware because I'm on a new ISP connection, and it eventually resolved (pun intended), but noting it regardless.

Uptime: 3hrs 53min
Temperatures: CPU 59.7 °C / WL0 44.0 °C / WL1 50.1 °C
kooper2013
DD-WRT User


Joined: 10 Jan 2013
Posts: 110
Location: DE

PostPosted: Wed Mar 25, 2020 21:31    Post subject: Reply with quote
Router/Version: Asus RT-AC87U
Mode: AP, WG client, DHCP server
Status: reverted to r42681
Errors: see below
File: f t p...asus_rt-ac87u-firmware.trx
Previous: r42681
Kernel: Linux 4.4.217 #1203 SMP Wed Mar 25 09:26:20 +04 2020 armv7l
Reset: no

1. 5GHz does NOT work, same as r42747, r42729. No device can connect (SSID not shown on iPhone, Buffalo D1300 on r42803).
2. High load, does not come down: 1.11, 1.02, 0.55
3. syslog shows crashes (endlsessly repeating):
Mar 25 21:08:16 home user.err : Caught SIGSEGV (11) in strlen
Mar 25 21:08:16 home user.err : Fault at memory location 0x00000000 due to address not mapped to object (1).
Mar 25 21:08:16 home user.err : Thread 1701: qtn_monitor
Mar 25 21:08:16 home user.err : === Context:
Mar 25 21:08:16 home user.err : TRAPNO:0000000e ERRCODE:00000017 OLDMASK:00000000 R0:00000000
Mar 25 21:08:16 home user.err : R1:76f7f080 R2:00000000 R3:76f7ef4c R4:00000001
Mar 25 21:08:16 home user.err : R5:00000000 R6:76f7f080 R7:76eac000 R8:76e91ae2
Mar 25 21:08:16 home user.err : R9:76e8fb5b R10:76e8fbaf FP:76ead3f4 IP:76eac3d0
Mar 25 21:08:16 home user.err : SP:7efe3bb4 LR:0000feff PC:76f50ce0 CPSR:60000010
Mar 25 21:08:16 home user.err : FAULTADDR:00000000
Mar 25 21:08:16 home user.err : === Backtrace:
Mar 25 21:08:16 home user.err : # Searching frame 0 (FP=0x76ead3f4, PC=0x76f50ce0)
Mar 25 21:08:16 home user.err : # PC-d70[0x76f4ff70]: 0xe92d4ff0 stmfd sp!
Mar 25 21:08:16 home user.err : # FP-00[0x76ead3f4]: 0x2e393631 {LR}
Mar 25 21:08:16 home user.err : # FP-04[0x76ead3f0]: 0x00000000 {FP}
Mar 25 21:08:16 home user.err : # FP-08[0x76ead3ec]: 0x00000000 {R10}
Mar 25 21:08:16 home user.err : # FP-0c[0x76ead3e8]: 0x00000000 {R9}
Mar 25 21:08:16 home user.err : # FP-10[0x76ead3e4]: 0x00000000 {R8}
Mar 25 21:08:16 home user.err : # FP-14[0x76ead3e0]: 0x00000000 {R7}
Mar 25 21:08:16 home user.err : # FP-18[0x76ead3dc]: 0x00000000 {R6}
Mar 25 21:08:16 home user.err : # FP-1c[0x76ead3d8]: 0x00000000 {R5}
Mar 25 21:08:16 home user.err : # FP-20[0x76ead3d4]: 0x00000000 {R4}
Mar 25 21:08:16 home user.err : # Crashed at /lib/ld-musl-arm.so.1[0x76efd000](strlen+0x00000044)[0x76f50ce0]
Mar 25 21:08:16 home user.err : # Searching frame 1 (FP=0x00000000, PC=0x2e393631)
Mar 25 21:08:16 home user.err : # Instruction at 0x2e393631 is not mapped; terminating backtrace.
Mar 25 21:08:16 home user.err : /lib/ld-musl-arm.so.1[0x76efd000](strlen+0x00000044)[0x76f50ce0]
Mar 25 21:08:16 home user.err : ???(+0)[0x2e393631]
Mar 25 21:08:16 home user.err : === Code:
Mar 25 21:08:16 home user.err : 76f50ca0: 0a00000b e1a01000 ea000001 e3110003 0a000008 e1a03001 e2811001 e5d3c000
Mar 25 21:08:16 home user.err : 76f50cc0: e1a02001 e35c0000 1afffff7 e0430000 e12fff1e e1a02000 e52de004 e30feeff
Mar 25 21:08:16 home user.err : 76f50ce0: >e5923000 e34feefe e308c080 e348c080 e083100e e1c11003 e111000c 1a000004
Mar 25 21:08:16 home user.err : 76f50d00: e5b23004 e083100e e1c11003 e111000c 0afffffa e5d21000 e3510000 0a000002

_________________
3xBuffalo WLI-H4-D1300
1xBuffalo WZR-D1800H
1xBuffalo WHR-HP-G300N
1xBuffalo WHR-1166D (stock f/w)
1xAsus RT-AC87U
1xAsus RT-AC88U
1xTP710
tinkeruntilitworks
Guest





PostPosted: Wed Mar 25, 2020 21:47    Post subject: Reply with quote
deleted and taking up far less useful space

Last edited by tinkeruntilitworks on Wed Mar 25, 2020 22:12; edited 4 times in total
kernel-panic69
DD-WRT Guru


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

PostPosted: Wed Mar 25, 2020 21:57    Post subject: Reply with quote
tinkeruntilitworks wrote:
assuming its known but getting this warning on firefox on the svn site

Websites prove their identity via certificates, which are valid for a set time period. The certificate for svn.dd-wrt.com expired on Wednesday, March 25, 2020.

Error code: SEC_ERROR_EXPIRED_CERTIFICATE


Off-topic, but you should've seen the re-opened ticket:

https://svn.dd-wrt.com/ticket/6800

Thanks for ruining this thread. Broadcom was the only one for this build following protocol.

_________________
"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
mac913
DD-WRT Guru


Joined: 02 May 2008
Posts: 1848
Location: Canada

PostPosted: Thu Mar 26, 2020 5:20    Post subject: Reply with quote
1) E3000 - WireGuard Travel Router
-WL0 - Client Mode
-WL1 - AP Mode
-2xVLANs + 2xBridges
-Dnsmasq
-Telnet
-Syslog
-NTP server left blank
-TCP Congestion - bbr
-WireGuard Client (+30Mbps over Dual WiFi)
-Custom Startup,Firewall Scripts
-SFE Enabled
-ttraff Disabled
-Overclocked 533Mhz

Firmware: DD-WRT v3.0-r42803 mega (03/25/20) [from: DDD-WRT v3.0-r42335 mega (02/10/20)]
Linux Rel: Linux Linux 3.10.108-d10 #3266 Wed Mar 25 [from: 3.10.108-d10 #2192 Mon Feb 10]
Reset: NO
Status & Uptime: Working over 12 hours
Issues/Fixes: WireGuard Lost Internet Connection / Disabled CVE-2019-14899 Mitigation

_________________
Home Network on Telus 1Gb PureFibre - 10GbE Copper Backbone
2x R7800 - Gateway & WiFi & 3xWireGuard - DDWRT r53562 Std k4.9

Off Site 1

R7000 - Gateway & WiFi & WireGuard - DDWRT r54517 Std
E3000 - Station Bridge - DDWRT r49626 Mega K4.4

Off Site 2

R7000 - Gateway & WiFi - DDWRT r54517 Std
E2000 - Wired ISP IPTV PVR Blocker - DDWRT r35531


YAMon 3.4.6 | DNSCrypt-Proxy V2
hoolahoous
DD-WRT Novice


Joined: 28 Jul 2018
Posts: 10

PostPosted: Thu Mar 26, 2020 6:57    Post subject: Asus RT-AC68U Reply with quote
Router/Version: Asus RT-AC68U
Firmware: DD-WRT v3.0-r42803 std (03/25/20)
Kernel: Linux 4.4.217 #1196 SMP Wed Mar 25 08:38:04 +04 2020 armv7l
Previous: r42557
Mode/Status: Gateway
Reset: no
Issues/Errors: Intermittent dropouts.

Having issues with intermittent dropouts on wifi.

Code:
--- yahoo.com ping statistics ---
1010 packets transmitted, 976 packets received, 3.4% packet loss
round-trip min/avg/max/stddev = 31.375/59.519/2042.578/152.813 ms


This issue has persisted in last several versions. Very noticeable when doing video conferences where realtime video is streamed. [/code]
rkboni
DD-WRT User


Joined: 04 Mar 2016
Posts: 51

PostPosted: Thu Mar 26, 2020 16:20    Post subject: Reply with quote
Router/Version: TP-Link Archer C9 v1
Firmware: DD-WRT v3.0-r42803 std (03/25/20)
Previous: 02-25-2020-r42514
Kernel: Linux 4.4.217 #1198 SMP Wed Mar 25 08:54:03 +04 2020 armv7l
Mode: Gateway (plus AP for some legacy devices)
Status: Working
Errors: None
Reset: No

Working just fine with an uptime of just under 9 hrs. The build-in speed checker grossly underestimated the BW -- testing from a browser on my laptop, I'm getting 57Mbps up / 57Mbps down, and ping times are sub-10ms.

Only issue I've seen on this and the previous build is that my USB disk isn't mounted and so optware / my APCUPSd don't start until I log in and run those scripts manually.
egc
DD-WRT Guru


Joined: 18 Mar 2014
Posts: 12908
Location: Netherlands

PostPosted: Thu Mar 26, 2020 16:34    Post subject: Reply with quote
It takes time in recent builds before the USB mounts so add a delay like : sleep 30 or
Code:
#instead of sleep 30 check if USB is mounted by sleeping until file: usb-is-mounted is found
until [[ -f /jffs/usb-is-mounted ]] ; do sleep 1; done

_________________
Routers:Netgear R7000, R6400v1, R6400v2, EA6900 (XvortexCFE), E2000, E1200v1, WRT54GS v1.
Install guide R6400v2, R6700v3,XR300:https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=316399
Install guide R7800/XR500: https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=320614
Forum Guide Lines (important read):https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=324087
Goto page 1, 2  Next Display posts from previous:    Page 1 of 2
Post new topic   Reply to topic    DD-WRT Forum Index -> Broadcom SoC 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 can attach files in this forum
You can download files in this forum