New Build - 12/06/2025 - r62966

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


Joined: 20 Jan 2019
Posts: 6381

PostPosted: Sun Dec 07, 2025 6:23    Post subject: New Build - 12/06/2025 - r62966 Reply with quote
Welcome to Atheros r62966 beta release thread for reporting, feedback to developers and community benefit.
Please do not flash builds until installation is understood, risks involved and device specific recovery methods.
Avoid discussions, create threads for questions, general problems or use search; this thread is not for support.
List router model & version or revision, operating & wireless modes & exact filename/firmware image flashed.


CLI Flash: 'cd /tmp' then 'wget {file URL}' (http only) or 'curl -O {file URL}' (http, https, ftp) 'write {file} linux' then 'reboot'.

Downloads: HTTPS, FTP

Trac SVN: repository since last build r62890 (mirror)

OpenVPN 2.6.15: Changelog, Guides, Server, PBR, DNS, Kill Switch, Watchdog, Reverse PBR, Client, Multiple, tips, scripts.
WireGuard 1.0.20211208/Tools: Changelog, Guides, Client, Server, Adv, PBR, KS, tips, scripts. Thanks BS egc & eibgrad!

Notes: ...
r61542 r61557 r61613 r61648 r61711 r61745 r61848 r61915 r61920 r61954 r61970 r61981 r62032 r62036 r62104 r62157
r62170 r62192 r62240 r62268 r62324 r62365 r62374 r62418 r62460 r62508 r62540 r62606 r62778 r62890 r62966
• r60771-r62966 migrates IPQ806x from swconfig to DSA however VLAN configurations will not; no more Switch Config tab.
• IPQ806x: Asrock G10, Linksys EA8500, Netgear R7500, R7500v2, R7800, XR500 (XR450) & Trendnet TEW-827DRU v1.0R.

Issues, observations, and/or workarounds reported:
WebUI: Clear history or use a portable. Temporary cache bypass: Ctrl+F5, Cmd+Shift+R or new private window/incognito.
Please report findings with steps needed to reproduce, configuration, clients, output, logs and important information below!

Important:
Detail issues & relevant configs, logs: syslog klog 'dmesg' 'cat /tmp/var/log/messages' nvram set console_debug=1, serial.
• Firewall NAT: 'iptables -vnL' 'iptables -t nat -vnL' 'iptables -t mangle -vnL' & 'cat /tmp/.ipt'. Debug Analyze: strace tcpdump.
• Gremlins: reboot. cold boot. Reset & reconfigure not restore backup. Search Trac & discuss in forum before opening tickets.
• Include operating & wireless modes (e.g. Gateway, Router, AP, SB, WDS, Mesh) and applicable configurations to reproduce.

Example Template:
Code:
[b]Router/Version: [/b]
[b]File/Kernel: [/b]
[b]Previous/Reset: [/b]
[b]Mode/Status: [/b]
[b]Issues/Errors: [/b]
Sponsor
Be Inspired
DD-WRT User


Joined: 20 Nov 2019
Posts: 78

PostPosted: Sun Dec 07, 2025 7:54    Post subject: Reply with quote
Hello to all,

Upgraded both of my devices to this build from r62924 (that was pulled) without reset and all i use are working fine.

Thank you very much BS and devs!

_________________
TP-LINK Archer C7 v5 Wireless Access Point

TP-LINK TL-WR1043ND v2 Wireless Access Point
Wasp-Ink30
DD-WRT User


Joined: 07 Feb 2025
Posts: 55

PostPosted: Sun Dec 07, 2025 11:30    Post subject: Reply with quote
Router/Version: Linksys MR7500
File: https://download1.dd-wrt.com/dd-wrtv2/downloads/betas/2025/12-06-2025-r62966/linksys-mr7500/dd-wrt-webflash.bin
Kernel: Linux 6.6.118-rt29 #4713 SMP Fri Dec 5 17:09:47 +07 2025 aarch64
Previous/Reset: R62924 using GUI and no reset
Mode/Status: Gateway device - NSS-ECM - NAS/Local FTP/Samba - OpenVPN server - DNSCrypt - A/P [WLAN0 : 1 SSID, 1 VAP] [WLAN1: 1 SSID, 1 VAP] [WLAN2: 1 SSID]
Issues/Errors: DNS traffic from Virtual access points are blocked by NFTables, on going low memory.

Here is a look at memory:
Code:
              total        used        free      shared  buff/cache   available
Mem:         380164      294440        9224           0       76500       67616
Swap:        524284           0      524284


I have read multiple posts that mention Virtual Access points do not have internet connectivity. What I discovered is the VAP's have internet connectivity, but NFT firewall is explicitly denying DNS traffic from Virtual Acccess Points. Here are the four rules stopping DNS traffic:
Code:
# Warning: table ip nat is managed by iptables-nft, do not touch!
table ip nat {
        chain PREROUTING {
                type nat hook prerouting priority -100; policy accept;
                iifname "br0" udp dport 853 counter packets 0 bytes 0 xt target "DNAT"
                iifname "br0" tcp dport 853 counter packets 1 bytes 52 xt target "DNAT"
                iifname "br0" udp dport 53 counter packets 128 bytes 9207 xt target "DNAT"
                iifname "br0" tcp dport 53 counter packets 12 bytes 720 xt target "DNAT"
                iifname "wlan0.1" udp dport 53 counter packets 0 bytes 0 xt target "DNAT" \
                iifname "wlan0.1" tcp dport 53 counter packets 0 bytes 0 xt target "DNAT"  \____ These four rules
                iifname "wlan1.1" udp dport 53 counter packets 0 bytes 0 xt target "DNAT"  /
                iifname "wlan1.1" tcp dport 53 counter packets 0 bytes 0 xt target "DNAT" /
            }


I realize it says "...do not touch!" I rewrote my firewall rules to use NFT.
I modified my firewall startup script to remove those four rules anyway. Now my guest network functions as expected.
Yes I'm aware the GUI inserted those rules. That means I have to remove my modifications from the firewall script and reboot before modifying the guest network in the GUI.

FYI - I setup my simple Guest Network with 1 SSID on wlan0.1 & wlan1.1 using Guest WiFi + abuse control for beginners from the WIKI.
Yes, there are better more complex methods of creating a guest network, but only having guests/relatives actually on my network four, maybe five, times a year this method is more than sufficient.

WOW! It certainly was nice to flash to a new build using the GUI without resetting, involving the OEM firmware, and manually reconfiguring every time. Thank You.
Abboo
DD-WRT User


Joined: 03 Apr 2016
Posts: 205

PostPosted: Sun Dec 07, 2025 12:58    Post subject: Linksys MR7350 Reply with quote
Router Model: Linksys MR7350
Firmware Version: DD-WRT v3.0-r62966 std (12/06/25)
Kernel Version: Linux 6.6.118-rt29 #4713 SMP Fri Dec 5 17:09:47 +07 2025 aarch64
Previous Version: DD-WRT r61848
Services: samba, wireguard client, openvpn client, dhcp, wifi 2.4 ghz, 5 ghz, usb, nas
Status: constantly rebooting from installation like every 4 minutes
Updated: via webgui
Mode: AP/gateway
Issues: constantly rebooting from installation
Reset/reboot: no/yes
Uptime: 45 minutes
Load Average: 1.78, 0.91, 0.36

Errors: as reported in the syslog below
Dec 31 20:00:11.888 DD-WRT kern.err kernel: [ 1.048586] Block protection check failed
Dec 31 20:00:11.861 DD-WRT kern.err kernel: [ 0.078592] qcom_rpm_smd_regulator remoteproc:glink-edge:rpm-requests:regulators: Supply for l2 (l2) resolved to itself
Dec 31 20:00:11.875 DD-WRT kern.alert kernel: [ 2.177616] mtdsplit: no squashfs found in "rootfs"
Dec 31 20:00:11.877 DD-WRT kern.alert kernel: [ 9.617878] node size 2 # items 4
Dec 31 20:00:11.877 DD-WRT kern.alert kernel: [ 9.624782] memory: 40000000 536870912 (avl 434724864) items 4 active_cores 1
Dec 31 20:00:11.877 DD-WRT kern.alert kernel: [ 9.628099] avail_ddr 434724864, ddr size 536870912
Dec 31 20:00:11.877 DD-WRT kern.alert kernel: [ 9.635338] ffffffc078f6c180: NSS core 0 DDR from 40000000 to 41000000
Dec 31 20:00:11.877 DD-WRT kern.alert kernel: [ 9.666802] Register data plane workqueue on core 1
Dec 31 20:00:11.877 DD-WRT kern.alert kernel: [ 9.666851] ffffffc078f6c180: send DDR info
Dec 31 20:00:11.877 DD-WRT kern.alert kernel: [ 9.670510] node size 2 # items 4
Dec 31 20:00:11.877 DD-WRT kern.alert kernel: [ 9.674658] memory: 40000000 536870912 (avl 434724864) items 4 active_cores 1
Dec 31 20:00:11.877 DD-WRT kern.alert kernel: [ 9.678136] avail_ddr 434724864, ddr size 536870912
Dec 31 20:00:12.158 DD-WRT daemon.crit smartd[1544]: In the system's table of devices NO devices found to scan
Dec 31 20:00:12.600 DD-WRT kern.alert kernel: [ 12.599567] ffffffc078f6c180: Phys If Open, id:1, TxDesc: 0, RxDesc: 0, mode 0
Dec 31 20:00:12.630 DD-WRT kern.alert kernel: [ 12.634926] ffffffc078f6c180: Phys If Open, id:2, TxDesc: 0, RxDesc: 0, mode 0
Dec 31 20:00:12.670 DD-WRT kern.alert kernel: [ 12.670110] ffffffc078f6c180: Phys If Open, id:3, TxDesc: 0, RxDesc: 0, mode 0
Dec 31 20:00:12.700 DD-WRT kern.alert kernel: [ 12.703893] ffffffc078f6c180: Phys If Open, id:4, TxDesc: 0, RxDesc: 0, mode 0
Dec 31 20:00:23.817 DD-WRT daemon.crit smartd[1817]: In the system's table of devices NO devices found to scan
Dec 31 20:00:25.334 DD-WRT kern.alert kernel: [ 25.333741] == for dynamic interface types read following file ==
Dec 31 20:00:25.334 DD-WRT kern.alert kernel: [ 25.333745] /sys/kernel/debug/qca-nss-drv/stats/dynamic_if/type_names
Dec 31 20:00:25.334 DD-WRT kern.alert kernel: [ 25.335153] NSS PPE VP create: echo > /proc/sys/nss/ppe_vp/create
Dec 31 20:00:25.350 DD-WRT kern.alert kernel: [ 25.341245] NSS PPE VP destroy: echo > /proc/sys/nss/ppe_vp/destroy
Dec 31 20:00:25.360 DD-WRT kern.alert kernel: [ 25.347942] == for dynamic interface types read following file ==
Dec 31 20:00:25.360 DD-WRT kern.alert kernel: [ 25.357274] /sys/kernel/debug/qca-nss-drv/stats/dynamic_if/type_names
Dec 31 20:00:25.372 DD-WRT kern.alert kernel: [ 25.367295] NSS PPE VP create: echo > /proc/sys/nss/ppe_vp/create
Dec 31 20:00:25.774 DD-WRT kern.alert kernel: [ 25.373348] NSS PPE VP destroy: echo > /proc/sys/nss/ppe_vp/destroy
Dec 31 20:00:25.774 DD-WRT kern.alert kernel: [ 25.764763] ffffffc078f6c180: Phys If Open, id:5, TxDesc: 0, RxDesc: 0, mode 0
Dec 31 20:00:31.450 DD-WRT kern.err kernel: [ 31.454569] /dev/sda3: Can't open blockdev
Dec 31 20:00:31.450 DD-WRT kern.err kernel: [ 31.455372] /dev/sda3: Can't open blockdev
Dec 31 20:00:31.460 DD-WRT kern.err kernel: [ 31.459799] /dev/sda3: Can't open blockdev
Dec 31 20:00:31.460 DD-WRT kern.err kernel: [ 31.463472] /dev/sda3: Can't open blockdev
Dec 31 20:00:31.588 DD-WRT local5.err ksmbd: [ksmbd.mountd(manager)/2609]: ERROR: Worker fatally killed: Bus error
Dec 31 20:00:32.099 DD-WRT local5.err ksmbd: [ksmbd.mountd/2831]: ERROR: Invalid lock entry `2609'
Dec 31 20:00:32.099 DD-WRT local5.err ksmbd: [ksmbd.mountd/2832]: ERROR: Invalid lock entry `2609'
Dec 31 20:00:32.103 DD-WRT local5.err ksmbd: [ksmbd.mountd(worker)/2834]: ERROR: nl_recv() failed, check dmesg, error: Invalid input data or parameter
Dec 31 20:00:32.110 DD-WRT kern.err kernel: [ 32.109754] ksmbd: Reconnect to a new user space d
Dec 7 08:42:10.192 DD-WRT kern.alert kernel: [ 51.054772] == for dynamic interface types read following file ==
Dec 7 08:42:10.192 DD-WRT kern.alert kernel: [ 51.054778] /sys/kernel/debug/qca-nss-drv/stats/dynamic_if/type_names
Dec 7 08:42:10.192 DD-WRT kern.alert kernel: [ 51.056274] NSS PPE VP create: echo > /proc/sys/nss/ppe_vp/create
Dec 7 08:42:10.208 DD-WRT kern.alert kernel: [ 51.062378] NSS PPE VP destroy: echo > /proc/sys/nss/ppe_vp/destroy
Dec 7 08:42:10.208 DD-WRT kern.alert kernel: [ 51.068950] == for dynamic interface types read following file ==
Dec 7 08:42:10.230 DD-WRT kern.alert kernel: [ 51.078382] /sys/kernel/debug/qca-nss-drv/stats/dynamic_if/type_names
Dec 7 08:42:10.230 DD-WRT kern.alert kernel: [ 51.088415] NSS PPE VP create: echo > /proc/sys/nss/ppe_vp/create
Aemon

That is what I was able to capture in the constant rebooting.

Reverting back to r61848. I am looking for a stable build for nas.
bushant
DD-WRT Guru


Joined: 18 Nov 2015
Posts: 2194

PostPosted: Sun Dec 07, 2025 13:41    Post subject: Reply with quote
Netgear R7800 WDS AP
DD-WRT v3.0-r62966M std (12/06/25)
Linux 6.1.159-rc2-rt28 #687 SMP Sat Dec 6 07:39:42 +07 2025 armv7l

CLI firmware.bin upgrade over 62890
No reset
Up 9:56

wlan0 WDS AP Vanilla
wlan1 AP, Vanilla, wlan1.1 VAP
ProFTPD, Samba ,SmartDNS, Entware, Static leases in Addititional Options, isolated br1
SFE and Wireguard server and client, Working

_________________
Forum Guide Lines (with helpful pointers about how to research your router, where and what firmware to download, where and how to post and many other helpful tips!)
How to get help the right way

Before asking for help - Read the forum guidelines AND Upgrade DD-WRT!
stalonge
DD-WRT Guru


Joined: 21 Jul 2006
Posts: 1946
Location: Fortaleza Ce Brazil

PostPosted: Sun Dec 07, 2025 14:12    Post subject: Reply with quote
Dynalink DL-WRX36
DD-WRT v3.0-r62980 std (12/07/25)
Linux 6.6.119-rt29 #4730 SMP Sun Dec 7 14:40:38 +07 2025 aarch64

AP Samba , wireguard client, dhcp, wifi 2.4 ghz, 5 ghz, usb, nas

Uptime 2:20

Running fine

Surprised))



Netgear R7800 WDS AP
DD-WRT v3.0-r62966M std (12/06/25)
Linux 6.1.159-rc2-rt28 #687 SMP Sat Dec 6 07:39:42 +07 2025 armv7l

CLI firmware.bin upgrade over 62890
No reset
Up 9:56


Both running

Thank you BS

_________________
DDwrt ...it rocks ....

1 R7800 62966 k6.1 WDS ap
1 R7800 53562 Samba FTP K4.9 STATION
1 WZR1750 62966 AP Webserver Samba Wireguard
2 TP link Archer C7v5 58179 Cli
1 DD x86_64 61337 Gateway Samba Ftp Webserver wireguard
1 MR9000 62365 Gateway Samba Ftp Webserver wireguard
1 WRX36 62890 Gateway Ftp Webserver wireguard
MLandi
DD-WRT Guru


Joined: 04 Dec 2007
Posts: 1255
Location: Murrysville, PA

PostPosted: Sun Dec 07, 2025 15:14    Post subject: Reply with quote
Update method: SSH / CLI using PuTTY
Router/Version: Linksys MX8500
File/Kernel: DD-WRT v3.0-r62966 std (12/06/25) / Linux 6.6.118-rt29 #4715 SMP Sat Dec 6 10:22:51 +07 2025 aarch64
Previous/Reset: DD-WRT v3.0-r62924 std (12/04/25) / Linux 6.6.118-rt29 #4705 SMP Thu Dec 4 12:30:44 +07 2025 aarch64
Mode/Status: Gateway / Working Normally
Issues/Errors: None

_________________
Linksys MX8500
DD-WRT v3.0-r62966 std (12/06/25)
Linux 6.6.118-rt29 #4715 SMP Sat Dec 6 10:22:51 +07 2025 aarch64

Gateway, AP, DNSMasq, SmartDNS, NSS-ECM-SFE, QCA NSS, no STP
VAP on wlan1 for internet devices
IPv4 & IPv6 (Prefix Delegation)
Static Leases & DHCP
Cloudflare DoH & DoT, No QoS, No Forced DoT, 802.11k
2.4GHz: AP, AX Only, ACK Timing 300, WPA2 & WPA3 w/AES & GCMP
5GHz: AP, AX Only, ACK Timing 300, WPA2 & WPA3 w/AES & GCMP
Netgear AX1800 WiFi Mesh Extender
Xfinity 1.2Gbps/40Mbps
Wildlion
DD-WRT Guru


Joined: 24 May 2016
Posts: 1465

PostPosted: Sun Dec 07, 2025 16:55    Post subject: Reply with quote
Router: DIR-825 rev B1
Firmware: dir825-firmware.bin (v3.0-r62966 std)
Kernel: Linux 3.10.108-d11 #211046 Sat Dec 6 09:21:51 +07 2025 mips
Status: Working
Reset: None
Notes on configuration: Used for Wifi Lab (no internet)
Errors:

    None
AsX
DD-WRT User


Joined: 15 Jun 2010
Posts: 62

PostPosted: Sun Dec 07, 2025 16:56    Post subject: Reply with quote
Enabling NSS on R7800 still kills WAN. Not sure why NSS options are even there, should be disabled until fixed or completely removed if fixing is not possible.
grc
DD-WRT User


Joined: 11 Jul 2018
Posts: 136

PostPosted: Sun Dec 07, 2025 17:14    Post subject: Reply with quote
Netgear r7800: still no DNS access on bridged VAP with additional iptables/nftables
Wizo
DD-WRT User


Joined: 08 Jun 2023
Posts: 139
Location: Essex. England.

PostPosted: Sun Dec 07, 2025 20:06    Post subject: Reply with quote
Router/Version: Netgear XR700
File/Kernel: 12-06-2025-r62966 / Linux 6.12.60 #169 SMP Sat Dec 6 06:53:26 +07 2025 armv7l
Previous/Reset: r62606 / No
Mode/Status: Uptime: 14 hour
Issues/Errors: Some tunnels not working !

So far so good. Will update when it crashes.

Setup: Connection Type Automatic config - DHCP
Operating Mode Gateway/AP
SFE Enabled
Overclocked to 2000M MHz
Web Access Protocol – http
SSH (public key)
Wireguard VPN (Surfshark)
Wireguard Server


Wireless Interface Regulatory Domain UK, 5GHz Wireless Mode AP-Wireless Network Mode-AC / N, Width VHT 80 Mhz-Wireless Channel-100, Extension Channel UU+6, Short GI, Short Preamble, Single User Beamforming, TX Power-26 dBm,TX Antenna Chains-1+2+3+4, RX Antenna Chains-1+2+3+4, Enable-WPA2 - WPA3 Personal / SAE-CCMP-128 (AES).

Wireless Interface 2.4GHz Wireless Mode AP-Wireless Network Mode-N/G Mixed, Width Full 20 Mhz-Wireless Channel-1, TurboQAM (QAM256), Short Preamble, Short GI, TX Power-20 dBm, TX Antenna Chains-1+2+3+4, RX Antenna Chains1+2+3+4, Enable-WPA2 - WPA3 Personal / SAE-CCMP-128 (AES).CCMP-128 (AES).


Last edited by Wizo on Mon Dec 08, 2025 10:19; edited 1 time in total
sdpnoy
DD-WRT User


Joined: 21 Jan 2009
Posts: 59

PostPosted: Mon Dec 08, 2025 6:01    Post subject: Reply with quote
Went back to r62540. Router would reboot every 45-60 minutes
_________________
My $55 wireless backhaul Mesh setup (r62540):
Linksys MX4300: 5ghz 802.11s Primary. 2.4ghz and 5ghz WAP
Linksys MX4300: 5ghz 802.11s secondary. 2.4ghz and 5ghz WAP
Linksys MX4200: 5ghz 802.11s secondary. 2.4ghz and 5ghz WAP
Molle
DD-WRT User


Joined: 13 Jan 2015
Posts: 207
Location: Finland

PostPosted: Mon Dec 08, 2025 6:16    Post subject: Reply with quote
AsX wrote:
Enabling NSS on R7800 still kills WAN. Not sure why NSS options are even there, should be disabled until fixed or completely removed if fixing is not possible.


NSS has been broken on R7800 since DSA was added in r60832. I have also asked on occasion if this is likely to ever get fixed, but never gotten a clear answer.
IONK
DD-WRT Guru


Joined: 19 Aug 2011
Posts: 1256

PostPosted: Mon Dec 08, 2025 6:33    Post subject: Netgear XR500 - AP - r62966 Reply with quote
Router/Version: Netgear XR500 (Install guide by egc)
File/Kernel: dd-wrt-webupgrade.bin (r62966) / Linux 6.1.159-rc2-rt28 #687 SMP Sat Dec 6 07:39:42 +07 2025 armv7l
Previous/Reset: DD-WRT v3.0-r62778 std (11/21/25) / no
Mode/Status: AP, SFE, AP 5GHz AC/N-Mixed 80MHz + AP 2.4GHz N Only 20MHz, WPA2/WPA3-Personal, 802.11r (FT), SSH (public key), DDNS (Dynu.com), 802.11 encapsulation offloading, ondemand CPU governor at night, SuperSpeed USB Storage (guide by egc), WireGuard server (for mobile & site-to-site peer), Cron / working
Issues/Errors: none

_________________
▫ RSS feed for DD-WRT releases (2026): https://rsseverything.com/feed/7d36ab68-7733-46c3-bd8a-9c54c5cef08c.xml
easyddup - A simple upgrade/downgrade utility by yoyoma2 --- as featured in 📌 Reference Links, stickies retired back to forum (Moderator's Pick 🌟)
matjazk
DD-WRT User


Joined: 21 Aug 2019
Posts: 220
Location: Here, There And Everywhere

PostPosted: Mon Dec 08, 2025 9:12    Post subject: Reply with quote
Router/Version: Linksys MR7500
File/Kernel: DD-WRT v3.0-r62966 std (12/06/25) / Linux 6.6.118-rt29 #4713 SMP Fri Dec 5 17:09:47 +07 2025 aarch64
Previous/Reset: DD-WRT v3.0-r62924 std (12/04/25) / No
Mode/Status: wired AP, VLANs, SSH
Issues/Errors: Upgraded OK (Web interface). USB flash drive works, partitions are mounted automatically. Selecing Panama as domain breaks 6 GHz radio.
Notes: Free/available memory is still low. Btop is not available since r62606, at least not for MR7500.

Code:
root@MR7500:~ # free
              total        used        free      shared  buff/cache   available
Mem:         380164      284612       10252           0       85300       78156
Swap:       1101820           0     1101820
Goto page 1, 2  Next Display posts from previous:    Page 1 of 2
Post new topic   Reply to topic    DD-WRT Forum Index -> Qualcomm Atheros 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