New Build - 04-18-2020-r42925

Post new topic   Reply to topic    DD-WRT Forum Index -> Atheros WiSOC based Hardware
Goto page 1, 2  Next
Author Message
jerrytouille
DD-WRT Guru


Joined: 11 Dec 2015
Posts: 1304

PostPosted: Sat Apr 18, 2020 13:48    Post subject: New Build - 04-18-2020-r42925 Reply with quote
New Build - 04-18-2020-r42925

https://download1.dd-wrt.com/dd-wrtv2/downloads/betas/2020/04-18-2020-r42925/
ftp://ftp.dd-wrt.com/betas/2020/04-18-2020-r42925/

Please report errors on this topic.


Release Notes:
http://svn.dd-wrt.com/timeline


Router Model:

Status:
Reset:
Errors:
Sponsor
mrjcd
DD-WRT Guru


Joined: 31 Jan 2015
Posts: 6285
Location: Texas

PostPosted: Sat Apr 18, 2020 14:03    Post subject: Reply with quote
Linksys EA8500 ...main router
DD-WRT v3.0-r42926 std (04/18/20)
Linux 4.9.219 #539 SMP Tue Apr 14 00:38:01 +03 2020 armv7l
GUI install over r42912
Uptime 2:46

#

Netgear WNDR3700 V4
DD-WRT v3.0-r42925 std (04/18/20)
Linux 3.18.140-d4 #76331 Sat Apr 18 05:41:17 +04 2020 mips
GUI install over r42912
Uptime 6:05

#

everything working very well for me. samba is good and
both units OVPN servers with new ovpn 2.4.9 is all good
AND yea, the EA8500 in r42925 directory is r42926 Cool
MLandi
DD-WRT Guru


Joined: 04 Dec 2007
Posts: 1018

PostPosted: Sat Apr 18, 2020 14:28    Post subject: Reply with quote
SSH update, no issues, clean reboot. All looks well.
_________________
Netgear R9000
DD-WRT v3.0-r55779 std (04/12/24)
Linux 4.9.337 #721 SMP Mon Apr 8 08:07:27 +07 2024 armv7l
Gateway, AP, DNSMasq, Clock 2000MHz
VAP on wlan1 for internet devices
IPv4 & IPv6 (Prefix Delegation)
Static Leases & DHCP
CloudFlare, no SFE, SmartDNS, no QoS
2.4GHz: Vanilla, Airtime Fairness, NG-Mixed, ACK Timing 3150, WPA2 w/AES & WPA3
5GHz: Vanilla, Airtime Fairness, AC/N Mixed, ACK Timing 3150, WPA2 w/AES & WPA3
2 Netgear AX1800 WiFi Mesh Extenders
Xfinity 1.2Gbps/35Mbps
egc
DD-WRT Guru


Joined: 18 Mar 2014
Posts: 12877
Location: Netherlands

PostPosted: Sat Apr 18, 2020 15:04    Post subject: Reply with quote
Router Model: Netgear R7800

Firmware Version: DD-WRT v3.0-r42926 std (04/18/20)
Kernel Version: Linux 4.9.219 #539 SMP Tue Apr 14 00:38:01 +03 2020 armv7l

Upgraded from: DD-WRT v3.0-r42910 std (04/15/20)

Reset: No, not this time

Status: Up and running for 2 hours , basic setup as Gateway, static leases, OpenVPN client (on PIA) with Policy Based Routing up and running, 2,4GHz, 5Ghz, USB storage NAS working with errors and OpenVPN server working, Wireguard working (no need for script any more)

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

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
Bernadoe
DD-WRT User


Joined: 03 Dec 2014
Posts: 217

PostPosted: Sat Apr 18, 2020 15:50    Post subject: Reply with quote
Router: Netgear R7800
Firmware: DD-WRT v3.0-r42926 std (04/18/20)
Kernel: Linux 4.9.219 #539 SMP Tue Apr 14 00:38:01 +03 2020 armv7l
Status: Working
Reset: No
Previous: 42847
Errors: No

Temperatures : CPU 58.588 °C / ath0 55 °C / ath1 53 °C

New : OpenVPN 2.4.9 arm-unknown-linux-gnu

Working very well :
Router mode : DHCP
SFE Enable
STP Disable
DNSMasq
Cache DNSSEC data
Validate DNS Replies (DNSSEC)
Check unsigned DNS replies
Local DNS
No DNS Rebind
ath0, ath1
Vpn (OpenVPN Client)

without VPN


with VPN
edgardmessias
DD-WRT Novice


Joined: 18 Apr 2020
Posts: 3

PostPosted: Sat Apr 18, 2020 17:41    Post subject: Reply with quote
Router: TP-LINK WR1043ND V1.8
Firmware: DD-WRT v3.0-r42925 std (04/18/20)
Kernel: Linux 3.10.108-d10 #44706 Sat Apr 18 03:56:03 +04 2020 mips
Status: Working
Reset: No
Previous: 42914
Errors: No

Using modified header version from https://github.com/edgardmessias/dd-wrt-wr1043ndv1
ArjenR49
DD-WRT Guru


Joined: 05 Oct 2008
Posts: 666
Location: Helsinki, Finland / nr. Alkmaar, Netherlands

PostPosted: Sat Apr 18, 2020 18:03    Post subject: Reply with quote
Router Model: Netgear R7800

Firmware Version: DD-WRT v3.0-r42926 std (04/18/20)
Kernel Version: Linux 4.9.219 #539 SMP Tue Apr 14 00:38:01 +03 2020 armv7l

Upgraded from: DD-WRT v3.0-r42910 std (04/15/20)

Reset: No

Status: Up and running for 2,5 hours, Gateway/WiFi AP, static leases in file dnsmasq.common, 2,4GHz N/G mixed dynamic, 5Ghz AC/N-mixed VHT80, one VLAN on either band, JFFS on thumb drive shared as JFFS2 over samba, no QoS, IPv4 & IPv6

Errors: none observed
James80
DD-WRT Novice


Joined: 09 Mar 2020
Posts: 22

PostPosted: Sat Apr 18, 2020 18:13    Post subject: Reply with quote
Netgear R7800
Firmware Version
DD-WRT v3.0-r42926 std (04/18/20)
Kernel Version
Linux 4.9.219 #539 SMP Tue Apr 14 00:38:01 +03 2020

previous: build R42872

temp: CPU 51.137 °C / ath0 55 °C / ath1 47 °C
uptime: 2h45
no reset, SSH update.
working well.

MODE DHCP
OPEN VPN CLIENT
Wildlion
DD-WRT Guru


Joined: 24 May 2016
Posts: 1413

PostPosted: Sat Apr 18, 2020 20:47    Post subject: Reply with quote
Router: TL-WDR3600 v1
Firmware: tl-wdr3600_us-webflash.bin (v3.0-r42925 std)
Kernel: Linux 3.10.108-d10 #44678 Sat Apr 18 03:19:15 +04 2020 mips
Status: working
Reset: No
Notes on configuration:

    Client

Errors:


    1. 5Ghz wireless light is not on (2.4Ghz light works)



Router: DIR-825 rev B1
Firmware: dir825-firmware.bin (v3.0-r42925 std)
Kernel: Linux 3.10.108-d10 #44676 Sat Apr 18 03:05:48 +04 2020 mips
Status: Working
Reset: No
Notes on configuration:

    DNSMasq
    Virtual wireless with bridging x2
    multiple DHCP server

Errors:

    None
wenzhuo
DD-WRT User


Joined: 22 Apr 2011
Posts: 191

PostPosted: Sat Apr 18, 2020 23:40    Post subject: Reply with quote
* Router Model: Netgear WNDR4300
* Firmware Version: DD-WRT v3.0-r42925 std (c) 2020 NewMedia-NET GmbH
* Kernel Version: Linux DD-WRT 3.18.140-d4 #76331 Sat Apr 18 05:41:17 +04 2020 mips DD-WRT
* Upgraded from: DD-WRT v3.0-r42872
* Reset: No. Just webflash.
* Features enabled: NAS services(samba3, ftpsrv), OpenVPN Server, WireGuard, openvpn client instances started using a wanup script, and VLANs configured in rc_startup
* Status: Up and running for 30 minutes
* Errors
1. Router rebooted shortly after I opened SMB shares. The following kernel oops was logged on the log server:
```
Apr 18 23:00:43 dd-wrt dropbear[3526]: Pubkey auth succeeded for 'root' with key md5 d6:cf:2f:b2:b7:e3:58:42:50:86:1b:27:c3:cd:29:ad from 172.16.10.48:61898
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Data bus error, epc == 80077f98, ra == 80064420
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Oops[#1]:
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] CPU: 0 PID: 4 Comm: kworker/0:0 Tainted: P 3.18.140-d4 #76331
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Workqueue: ksmbd-io _128 [ksmbd]
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] task: 87c239f8 ti: 87c32000 task.ti: 87c32000
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] $ 0 : 00000000 803f0000 b504eae5 87c32000
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] $ 4 : 8035848c b504eae1 00000000 870b3f78
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] $ 8 : 1000dc01 1000001e 00004000 00008000
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] $12 : 00989680 bfc85800 00000000 7713b1d0
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] $16 : 87c33d10 85f21ef0 adbeef00 8c44fffc
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] $20 : b504eae1 00000000 85f11494 85f39f70
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] $24 : 00000000 800a1830
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] $28 : 87c32000 87c33ce0 85f40000 80064420
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Hi : 00346044
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Lo : 0d330cb7
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] epc : 80077f98 do_ade+0x600/0x9e4
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Tainted: P
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] ra : 80064420 ret_from_exception+0x0/0x10
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Status: 1000dc03#011KERNEL EXL IE
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Cause : 0080001c
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] PrId : 0001974c (MIPS 74Kc)
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Modules linked in: nf_nat_pptp nf_conntrack_pptp nf_nat_proto_gre nf_conntrack_proto_gre ksmbd ext4 jbd2 mbcache crc16 usblp usb_storage sr_mod cdrom sd_mod scsi_mod ehci_hcd usbcore usb_common xt_addrtype nf_nat_
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Process kworker/0:0 (pid: 4, threadinfo=87c32000, task=87c239f8, tls=00000000)
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Stack : 00000000 8010726c 8645c480 874fb680 867d7410 870b3fb4 000000b8 8728d360
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] #011 3e0000c0 0c020000 85f35e20 80064420 87047e20 00000000 00000000 00000000
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] #011 00000000 0002dbd2 00800001 81a47494 00000000 803f0000 b504eae5 87376600
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] #011 00000500 b504ead1 870b3f00 870b3f78 867d7410 00000b00 00004000 00008000
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] #011 00989680 bfc85800 00000000 7713b1d0 867d7410 870b3fb4 000000b8 8728d360
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] #011 ...
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Call Trace:
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] [<80077f98>] do_ade+0x600/0x9e4
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] [<80064420>] ret_from_exception+0x0/0x10
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] [<85f21ef0>] _325+0xac/0x1d8 [ksmbd]
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] [<85f11494>] _128+0x918/0xc58 [ksmbd]
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] [<800a0ef4>] pick_next_task_idle+0x1c/0x30
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000]
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000]
Apr 18 23:01:56 dd-wrt kernel: [ 748.510000] Code: 100000b4 8e0200a0 8a920000 <9a920003> 24140000 1680009f 00000000 10000011 8e0200b4
Apr 18 23:01:56 dd-wrt kernel: [ 748.740000] ---[ end trace 9571af82c7f3c44a ]---
Jan 1 00:01:00 dd-wrt : lighttpd : daemon successfully stopped
Jan 1 00:01:00 dd-wrt kernel: [ 60.800000] br0: topology change detected, sending tcn bpdu
Jan 1 00:01:00 dd-wrt kernel: [ 60.800000] br0: port 1(vlan1) entered forwarding state
Jan 1 00:01:00 dd-wrt kernel: [ 60.810000] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
```
giuliomagnifico
DD-WRT User


Joined: 11 Apr 2016
Posts: 454
Location: Italy

PostPosted: Sun Apr 19, 2020 7:00    Post subject: Reply with quote
Router Model: R7800

Status: Working
Reset: No
Errors: No
Uptime: 9h

Working. Nothing to report
ervau
DD-WRT User


Joined: 28 Sep 2013
Posts: 313

PostPosted: Sun Apr 19, 2020 11:08    Post subject: Reply with quote
Briks DLink DIR-825b!
Recovery Mode:
Allows choosing of FW but doesn't upload; no answer from DIR.
Putty:
No SSH, no Telnet and even no connection via Serial!
Glad to have tested on a non-productive device. Sad that this test-device has passed.
ervau
Per Yngve Berg
DD-WRT Guru


Joined: 13 Aug 2013
Posts: 6865
Location: Romerike, Norway

PostPosted: Sun Apr 19, 2020 11:35    Post subject: Reply with quote
R7800
DD-WRT v3.0-r42926 std (04/18/20)
Kernel VersionLinux 4.9.219 #539 SMP Tue Apr 14 00:38:01 +03 2020 armv7l

Reset: No

Errors: None
tatsuya46
DD-WRT Guru


Joined: 03 Jan 2010
Posts: 7568
Location: YWG, Canada

PostPosted: Sun Apr 19, 2020 11:50    Post subject: Reply with quote
Router Model: dir-862L(x2), wndr4300, r7800, x86_64

Status: well it runs..
Reset: no/yes no effect
Errors: see tickets below

https://svn.dd-wrt.com/ticket/5118 *
https://svn.dd-wrt.com/ticket/5225 *
https://svn.dd-wrt.com/ticket/5603 *
https://svn.dd-wrt.com/ticket/5848
https://svn.dd-wrt.com/ticket/5938
https://svn.dd-wrt.com/ticket/6115 *
https://svn.dd-wrt.com/ticket/6286
https://svn.dd-wrt.com/ticket/6315
https://svn.dd-wrt.com/ticket/6481 *
https://svn.dd-wrt.com/ticket/6495 *
https://svn.dd-wrt.com/ticket/6655
https://svn.dd-wrt.com/ticket/6842
https://svn.dd-wrt.com/ticket/6903 *
https://svn.dd-wrt.com/ticket/6921


typical

_________________
LATEST FIRMWARE(S)

BrainSlayer wrote:
we just do it since we do not like any restrictions enforced by stupid cocaine snorting managers

[x86_64] Haswell i3-4150/QCA9984/QCA9882 ------> r55797 std
[QUALCOMM] DIR-862L --------------------------------> r55797 std
▲ ACTIVE / INACTIVE ▼
[QUALCOMM] WNDR4300 v1 --------------------------> r50485 std
[BROADCOM] DIR-860L A1 ----------------------------> r50485 std


Sigh.. why do i exist anyway.. | I love you Anthony.. never forget that.. my other 99% that ill never see again..

drumbo1
DD-WRT Novice


Joined: 10 Jun 2014
Posts: 7

PostPosted: Sun Apr 19, 2020 12:27    Post subject: Reply with quote
Router Model: TP-Link TL-WR841ND v11

Config/Mode: Router / AP

Firmware Version: DD-WRT v3.0-r42925 std (04/18/20)

Upgraded from: DD-WRT v3.0-r42847 std (04/06/20)

Reset: No

Issues/Errors: In every build after r42847 wireless TX Power is limited to 16dBm. I tried with different Regulatory Domain without success. Back to r42847 and TX Power is OK - 21dBm.
Goto page 1, 2  Next Display posts from previous:    Page 1 of 2
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