Max. concurrent queries issue

Hi, Ive had a issue with downloads but only when using PS5.

Default setting is 150 concurrent dns queries on openwrt, when i download a game my internet freezes on other devices except for my PS5, ive narrowed it done to this setting in DHCP and DNS and limit tab and i have changed Max. concurrent queries to 5000 and rebooted router. I tried again to download and has now fixed my issue. This has only started on 24.10.3 and 24.10.4 has anyone else experinced this issue? Thanks

Please run

ubus call system board
killall -s USR1 dnsmasq ; sleep 5 ; logread -e dnsmasq | tail
cat /etc/config/dhcp

Unlikely 150 inflight queries are there without upstream being slow to respond.

1 Like
root@OpenWrt:~# ubus call system board
{
        "kernel": "6.6.110",
        "hostname": "OpenWrt",
        "system": "ARMv8 Processor rev 0",
        "model": "FriendlyElec NanoPi R6S",
        "board_name": "friendlyarm,nanopi-r6s",
        "rootfs_type": "squashfs",
        "release": {
                "distribution": "OpenWrt",
                "version": "24.10.4",
                "revision": "r28959-29397011cc",
                "target": "rockchip/armv8",
                "description": "OpenWrt 24.10.4 r28959-29397011cc",
                "builddate": "1760891865"
        }
}
root@OpenWrt:~# killall -s USR1 dnsmasq ; sleep 5 ; logread -e dnsmasq | tail

Sun Oct 26 21:44:40 2025 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.220 de:5c:fb:b7:fe:54 Watch
Sun Oct 26 21:45:08 2025 daemon.info dnsmasq[1]: time 1761515108
Sun Oct 26 21:45:08 2025 daemon.info dnsmasq[1]: cache size 1000, 0/16534 cache insertions re-used unexpired cache entries.
Sun Oct 26 21:45:08 2025 daemon.info dnsmasq[1]: queries forwarded 6168, queries answered locally 80869
Sun Oct 26 21:45:08 2025 daemon.info dnsmasq[1]: pool memory in use 3744, max 4224, allocated 4800
Sun Oct 26 21:45:08 2025 daemon.info dnsmasq[1]: child processes for TCP requests: in use 0, highest since last SIGUSR1 0, max allowed 20.
Sun Oct 26 21:45:08 2025 daemon.info dnsmasq[1]: server 1.1.1.1#53: queries sent 2430, retried 3, failed 0, nxdomain replies 3, avg. latency 9ms
Sun Oct 26 21:45:08 2025 daemon.info dnsmasq[1]: server 1.0.0.1#53: queries sent 1515, retried 2, failed 0, nxdomain replies 2, avg. latency 8ms
Sun Oct 26 21:45:08 2025 daemon.info dnsmasq[1]: server 2606:4700:4700::1111#53: queries sent 1561, retried 1, failed 0, nxdomain replies 34, avg. latency 8ms
Sun Oct 26 21:45:08 2025 daemon.info dnsmasq[1]: server 2606:4700:4700::1001#53: queries sent 1922, retried 3, failed 0, nxdomain replies 13, avg. latency 9ms
root@OpenWrt:~# cat /etc/config/dhcp

config dnsmasq
        option domainneeded '1'
        option localise_queries '1'
        option rebind_protection '1'
        option rebind_localhost '1'
        option local '/lan/'
        option domain 'lan'
        option expandhosts '1'
        option cachesize '1000'
        option authoritative '1'
        option readethers '1'
        option leasefile '/tmp/dhcp.leases'
        option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
        option localservice '1'
        option ednspacket_max '1232'
        list addnmount '/bin/busybox'
        list addnmount '/var/run/adblock-lean/abl-blocklist.gz'
        option dnsforwardmax '5000'

config dhcp 'lan'
        option interface 'lan'
        option start '100'
        option limit '150'
        option leasetime '12h'
        option dhcpv4 'server'
        option dhcpv6 'server'
        option ra 'server'
        option ra_slaac '1'
        option ra_flags 'other-config'

config dhcp 'wan'
        option interface 'wan'
        option ignore '1'

config odhcpd 'odhcpd'
        option maindhcp '0'
        option leasefile '/tmp/hosts/odhcpd'
        option leasetrigger '/usr/sbin/odhcpd-update'
        option loglevel '4'
        option piofolder '/tmp/odhcpd-piofolder'

root@OpenWrt:~#

Sounds more like an issue with queuing. Did you run a buffer bloat test like https://www.waveform.com/tools/bufferbloat already?

https://www.waveform.com/tools/bufferbloat?test-id=c20f80f0-e384-4096-8f09-ee822f221846

im going to do a full fresh install and see if that cures my issue before i go any further.

You can rise cachesize to 10000 and probably min ttl in same page to 1h
upstream and bloat looks great, also router is incredibly good.

Fresh install has cleared any issues i was having.