Can somebody open this topic again?
No, that thread is a fuzzy mixture of orthogonal issues and misunderstandings. You are welcome to start a new thread, explaining your exact problem - which may then ideally be solved, without derailing into unrelated stuff.
Hint, be explicit about your issue, stick to a single topic (side quests are better sorted in their own thread).
The most likely reason you have this issue was described in detail in the previous thread.
You either did not understand, or choose to ignore it.
Here is a summary:
I'm using a DNS-over-HTTPS proxy.
Yes, you confirmed you are using an external dns service and it almost certainly will be resolving ipv6 addresses which are not valid for your ipv4 lan.
As @slh says, if you really do not understand, want help properly setting up your dns, or are convinced it is something else, start a new thread and be very specific about the problem and why you think it is something different to that described in the other thread as a very likely explanation.
As I mentioned in the previous thread, your particular problem might possibly be something else entirely. but the evidence you have provided matches to a high degree of probability.
PS. Don't feel I am getting at you in any way, but you have to help us to help you.
@sina
Depending on the details of how you have set up dns over https, it might be as simple as:
uci set dhcp.@dnsmasq[0].filter_aaaa='1'
uci commit dhcp
service dnsmasq restart
I understand your point, but what would be the solution? I've applied this configuration, but the problem is still there.
ubus call system board :
ubus call system board
{
"kernel": "6.12.94",
"hostname": "Router",
"system": "MediaTek MT7628AN ver:1 eco:2",
"model": "TP-Link Archer MR200 v5",
"board_name": "tplink,archer-mr200-v5",
"rootfs_type": "squashfs",
"release": {
"distribution": "OpenWrt",
"version": "25.12.5",
"firmware_url": "https://downloads.openwrt.org/",
"revision": "r33051-f5dae5ece4",
"target": "ramips/mt76x8",
"description": "OpenWrt 25.12.5 r33051-f5dae5ece4",
"builddate": "1782737960"
}
}
/etc/config/network
config interface 'loopback'
option device 'lo'
option proto 'static'
list ipaddr '127.0.0.1/8'
config globals 'globals'
option dhcp_default_duid '***'
option ula_prefix '***'
option packet_steering '1'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth0.1'
option ipv6 '0'
config interface 'lan'
option device 'br-lan'
option proto 'static'
list ipaddr '10.0.0.1/24'
option delegate '0'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
option ports '0 1 2 6t'
config interface 'wan'
option proto 'pppoe'
option device 'eth0.2'
option username '***'
option password '***'
option ipv6 '0'
option peerdns '0'
option sourcefilter '0'
option delegate '0'
config switch_vlan
option device 'switch0'
option ports '3 6t'
option vlan '2'
config device
option name 'eth0.2'
option type '8021q'
option ifname 'eth0'
option vid '2'
option macaddr '***'
option ipv6 '0'
config interface 'vpn'
option proto 'wireguard'
option private_key '***'
list addresses '10.2.0.2/32'
list dns '76.76.2.2'
config wireguard_vpn
option description 'Imported peer configuration'
option public_key '***'
list allowed_ips '0.0.0.0/0'
option persistent_keepalive '25'
option endpoint_host '***'
option endpoint_port '***'
config interface 'modem'
option proto 'static'
option device 'eth0.2'
option ipaddr '192.168.2.2'
option netmask '255.255.255.0'
option gateway '192.168.2.1'
option auto '0'
option delegate '0'
option disabled '1'
config device
option name 'pppoe-wan'
option ipv6 '0'
/etc/config/wireless
config wifi-device 'radio0'
option type 'mac80211'
option path 'platform/10300000.wmac'
option band '2g'
option channel '6'
option htmode 'HT20'
option cell_density '0'
option country 'US'
config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid '***'
option encryption 'sae-mixed'
option key '***'
option ocv '0'
option disassoc_low_ack '0'
config wifi-device 'radio1'
option type 'mac80211'
option path 'pci0000:00/0000:00:00.0/0000:01:00.0'
option band '5g'
option channel '36'
option htmode 'VHT40'
option disabled '0'
option cell_density '0'
option country 'US'
config wifi-iface 'default_radio1'
option device 'radio1'
option network 'lan'
option mode 'ap'
option ssid '***'
option encryption 'sae-mixed'
option key '***'
option ocv '0'
option disassoc_low_ack '0'
/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 localservice '1'
option ednspacket_max '1232'
list server '/mask.icloud.com/'
list server '/mask-h2.icloud.com/'
list server '/use-application-dns.net/'
list server '127.0.0.1#5053'
option doh_backup_noresolv '-1'
option noresolv '1'
list doh_backup_server '/mask.icloud.com/'
list doh_backup_server '/mask-h2.icloud.com/'
list doh_backup_server '/use-application-dns.net/'
list doh_backup_server '127.0.0.1#5053'
list doh_server '127.0.0.1#5053'
option filter_aaaa '1'
config dhcp 'lan'
option interface 'lan'
option start '100'
option limit '150'
option leasetime '12h'
option dhcpv4 'server'
config odhcpd 'odhcpd'
option leasefile '/tmp/odhcpd.leases'
option leasetrigger '/usr/sbin/odhcpd-update'
option loglevel '4'
option piodir '/tmp/odhcpd-piodir'
option hostsdir '/tmp/hosts'
/etc/config/firewall
config defaults
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option synflood_protect '1'
option flow_offloading '1'
config zone
option name 'lan'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
list network 'lan'
option family 'ipv4'
config zone
option name 'wan'
option input 'REJECT'
option output 'ACCEPT'
option forward 'DROP'
option masq '1'
option mtu_fix '1'
option family 'ipv4'
list network 'modem'
list network 'wan'
config forwarding
option src 'lan'
option dest 'wan'
config rule
option name 'Allow-DHCP-Renew'
option src 'wan'
option proto 'udp'
option dest_port '68'
option target 'ACCEPT'
option family 'ipv4'
option enabled '1'
config rule
option name 'Allow-Ping'
option src 'wan'
option proto 'icmp'
option icmp_type 'echo-request'
option family 'ipv4'
option target 'ACCEPT'
option enabled '1'
config rule
option name 'Allow-IGMP'
option src 'wan'
option proto 'igmp'
option family 'ipv4'
option target 'ACCEPT'
option enabled '1'
config rule
option name 'Allow-DHCPv6'
option src 'wan'
option proto 'udp'
option dest_port '546'
option family 'ipv6'
option target 'ACCEPT'
option enabled '1'
config rule
option name 'Allow-MLD'
option src 'wan'
option proto 'icmp'
option src_ip 'fe80::/10'
list icmp_type '130/0'
list icmp_type '131/0'
list icmp_type '132/0'
list icmp_type '143/0'
option family 'ipv6'
option target 'ACCEPT'
option enabled '1'
config rule
option name 'Allow-ICMPv6-Input'
option src 'wan'
option proto 'icmp'
list icmp_type 'echo-request'
list icmp_type 'echo-reply'
list icmp_type 'destination-unreachable'
list icmp_type 'packet-too-big'
list icmp_type 'time-exceeded'
list icmp_type 'bad-header'
list icmp_type 'unknown-header-type'
list icmp_type 'router-solicitation'
list icmp_type 'neighbour-solicitation'
list icmp_type 'router-advertisement'
list icmp_type 'neighbour-advertisement'
option limit '1000/sec'
option family 'ipv6'
option target 'ACCEPT'
option enabled '1'
config rule
option name 'Allow-ICMPv6-Forward'
option src 'wan'
option dest '*'
option proto 'icmp'
list icmp_type 'echo-request'
list icmp_type 'echo-reply'
list icmp_type 'destination-unreachable'
list icmp_type 'packet-too-big'
list icmp_type 'time-exceeded'
list icmp_type 'bad-header'
list icmp_type 'unknown-header-type'
option limit '1000/sec'
option family 'ipv6'
option target 'ACCEPT'
option enabled '1'
config rule
option name 'Allow-IPSec-ESP'
option src 'wan'
option dest 'lan'
option proto 'esp'
option target 'ACCEPT'
option enabled '1'
option family 'ipv4'
config rule
option name 'Allow-ISAKMP'
option src 'wan'
option dest 'lan'
option dest_port '500'
option proto 'udp'
option target 'ACCEPT'
option enabled '1'
config zone
option name 'vpn_firewall'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
list network 'vpn'
option masq '1'
option mtu_fix '1'
option family 'ipv4'
config forwarding
option src 'lan'
option dest 'vpn_firewall'
Kernel Log
[ 0.000000] Linux version 6.12.94 (builder@buildhost) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 14.3.0 r33051-f5dae5ece4) 14.3.0, GNU ld (GNU Binutils) 2.44) #0 Mon Jun 29 12:59:20 2026
[ 0.000000] Board has DDR2
[ 0.000000] Analog PMU set to hw control
[ 0.000000] Digital PMU set to hw control
[ 0.000000] SoC Type: MediaTek MT7628AN ver:1 eco:2
[ 0.000000] printk: legacy bootconsole [early0] enabled
[ 0.000000] CPU0 revision is: 00019655 (MIPS 24KEc)
[ 0.000000] MIPS: machine is TP-Link Archer MR200 v5
[ 0.000000] Initrd not found or empty - disabling initrd
[ 0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
[ 0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
[ 0.000000] Zone ranges:
[ 0.000000] Normal [mem 0x0000000000000000-0x0000000003ffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000000000-0x0000000003ffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff]
[ 0.000000] OF: reserved mem: Reserved memory: No reserved-memory node in the DT
[ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] Kernel command line: console=ttyS0,115200 rootfstype=squashfs,jffs2
[ 0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes, linear)
[ 0.000000] Writing ErrCtl register=00061e50
[ 0.000000] Readback ErrCtl register=00061e50
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 16384
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.
[ 0.000000] NR_IRQS: 256
[ 0.000000] intc: using register map from devicetree
[ 0.000000] CPU Clock: 580MHz
[ 0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6590553264 ns
[ 0.000002] sched_clock: 32 bits at 290MHz, resolution 3ns, wraps every 7405115902ns
[ 0.007623] Calibrating delay loop... 385.84 BogoMIPS (lpj=1929216)
[ 0.073522] pid_max: default: 32768 minimum: 301
[ 0.087798] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[ 0.094852] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[ 0.114184] Memory: 56316K/65536K available (5203K kernel code, 584K rwdata, 864K rodata, 1212K init, 208K bss, 8744K reserved, 0K cma-reserved)
[ 0.133757] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.143312] futex hash table entries: 256 (order: 0, 3072 bytes, linear)
[ 0.155645] pinctrl core: initialized pinctrl subsystem
[ 0.164422] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.171027] thermal_sys: Registered thermal governor 'step_wise'
[ 0.174817] /pinctrl: Fixed dependency cycle(s) with /pinctrl/pinctrl0
[ 1.960181] PCI host bridge to bus 0000:00
[ 1.964114] pci_bus 0000:00: root bus resource [mem 0x20000000-0x2fffffff]
[ 1.970803] pci_bus 0000:00: root bus resource [io 0x10160000-0x1016ffff]
[ 1.977399] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
[ 1.985152] pci 0000:00:00.0: [14c3:0801] type 01 class 0x060400 PCIe Root Port
[ 1.992188] pci 0000:00:00.0: BAR 0 [mem 0x00000000-0x7fffffff]
[ 1.997918] pci 0000:00:00.0: BAR 1 [mem 0x20200000-0x2020ffff]
[ 2.003601] pci 0000:00:00.0: PCI bridge to [bus 01]
[ 2.008424] pci 0000:00:00.0: bridge window [io 0x0000-0x0fff]
[ 2.014265] pci 0000:00:00.0: bridge window [mem 0x20000000-0x201fffff]
[ 2.020916] pci 0000:00:00.0: supports D1
[ 2.024733] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[ 2.032554] pci 0000:01:00.0: [14c3:7650] type 00 class 0x028000 PCIe Endpoint
[ 2.039537] pci 0000:01:00.0: BAR 0 [mem 0x00000000-0x000fffff]
[ 2.045438] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 2.051794] pci 0000:01:00.1: [14c3:8650] type 00 class 0x0d1100 PCIe Endpoint
[ 2.058835] pci 0000:01:00.1: BAR 0 [mem 0x00000000-0x000fffff]
[ 2.064665] pci 0000:01:00.1: supports D1
[ 2.068478] pci 0000:01:00.1: PME# supported from D0 D1 D3hot D3cold
[ 2.075021] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 2.081392] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 01
[ 2.087846] pci 0000:00:00.0: BAR 0 [mem size 0x80000000]: can't assign; no space
[ 2.095031] pci 0000:00:00.0: BAR 0 [mem size 0x80000000]: failed to assign
[ 2.101780] pci 0000:00:00.0: bridge window [mem 0x20000000-0x201fffff]: assigned
[ 2.108976] pci 0000:00:00.0: BAR 1 [mem 0x20200000-0x2020ffff]: assigned
[ 2.115581] pci 0000:01:00.0: BAR 0 [mem 0x20000000-0x200fffff]: assigned
[ 2.122101] pci 0000:01:00.1: BAR 0 [mem 0x20100000-0x201fffff]: assigned
[ 2.128683] pci 0000:00:00.0: PCI bridge to [bus 01]
[ 2.133440] pci 0000:00:00.0: bridge window [mem 0x20000000-0x201fffff]
[ 2.142558] clocksource: Switched to clocksource MIPS
[ 2.160991] NET: Registered PF_INET protocol family
[ 2.166048] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
[ 2.174864] tcp_listen_portaddr_hash hash table entries: 1024 (order: 0, 4096 bytes, linear)
[ 2.183124] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 2.190573] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
[ 2.197997] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear)
[ 2.204815] TCP: Hash tables configured (established 1024 bind 1024)
[ 2.211066] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)
[ 2.217433] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear)
[ 2.225132] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 2.230690] PCI: CLS 0 bytes, default 32
[ 2.238774] workingset: timestamp_bits=30 max_order=14 bucket_order=0
[ 2.245743] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 2.251344] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[ 2.264108] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[ 2.272993] mt7621_gpio 10000600.gpio: registering 32 gpios
[ 2.278747] mt7621_gpio 10000600.gpio: registering 32 gpios
[ 2.284645] mt7621_gpio 10000600.gpio: registering 32 gpios
[ 2.290964] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled
[ 2.305000] printk: legacy console [ttyS0] disabled
[ 2.310469] 10000c00.uart0: ttyS0 at MMIO 0x10000c00 (irq = 28, base_baud = 2500000) is a 16550A
[ 2.319078] printk: legacy console [ttyS0] enabled
[ 2.328769] printk: legacy bootconsole [early0] disabled
[ 2.361051] spi-mt7621 10000b00.spi: sys_freq: 193333333
[ 2.371330] 5 fixed-partitions partitions found on MTD device spi0.0
[ 2.378310] Creating 5 MTD partitions on "spi0.0":
[ 2.383260] 0x000000000000-0x000000020000 : "u-boot"
[ 2.391292] 0x000000020000-0x0000007d0000 : "firmware"
[ 2.398767] 2 tplink-fw partitions found on MTD device firmware
[ 2.404897] Creating 2 MTD partitions on "firmware":
[ 2.410013] 0x000000000000-0x0000002048ea : "kernel"
[ 2.415097] mtd: partition "kernel" doesn't end on an erase/write block -- force read-only
[ 2.425396] 0x0000002048ec-0x0000007b0000 : "rootfs"
[ 2.430481] mtd: partition "rootfs" doesn't start on an erase/write block boundary -- force read-only
[ 2.441621] mtd: setting mtd3 (rootfs) as root device
[ 2.446948] 1 squashfs-split partitions found on MTD device rootfs
[ 2.453276] 0x0000006b0000-0x0000007b0000 : "rootfs_data"
[ 2.460771] 0x0000007d0000-0x0000007e0000 : "config"
[ 2.467768] 0x0000007e0000-0x0000007f0000 : "romfile"
[ 2.475485] 0x0000007f0000-0x000000800000 : "radio"
[ 2.508131] rt3050-esw 10110000.esw: mediatek esw at 0xb0110000, irq 25 initialized
[ 2.517184] mtk_soc_eth 10100000.ethernet eth0: mediatek frame engine at 0xb0100000, irq 5
[ 2.529185] NET: Registered PF_INET6 protocol family
[ 2.540545] Segment Routing with IPv6
[ 2.544543] In-situ OAM (IOAM) with IPv6
[ 2.548759] NET: Registered PF_PACKET protocol family
[ 2.553998] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 2.567574] 8021q: 802.1Q VLAN Support v1.8
[ 2.605378] clk: Disabling unused clocks
[ 2.618198] VFS: Mounted root (squashfs filesystem) readonly on device 31:3.
[ 2.632050] Freeing unused kernel image (initmem) memory: 1212K
[ 2.638129] This architecture does not have kernel memory protection.
[ 2.644704] Run /sbin/init as init process
[ 2.648864] with arguments:
[ 2.648873] /sbin/init
[ 2.648883] with environment:
[ 2.648893] HOME=/
[ 2.648903] TERM=linux
[ 4.749703] init: Console is alive
[ 4.753902] init: - watchdog -
[ 5.913655] rt3050-esw 10110000.esw: port 3 link up
[ 7.031537] kmodloader: loading kernel modules from /etc/modules-boot.d/*
[ 7.539460] usbcore: registered new interface driver usbfs
[ 7.545330] usbcore: registered new interface driver hub
[ 7.550910] usbcore: registered new device driver usb
[ 7.561019] gpio_button_hotplug: loading out-of-tree module taints kernel.
[ 7.594561] phy phy-10120000.usbphy.0: remote usb device wakeup disabled
[ 7.601408] phy phy-10120000.usbphy.0: UTMI 16bit 30MHz
[ 7.606740] ehci-platform 101c0000.ehci: EHCI Host Controller
[ 7.612638] ehci-platform 101c0000.ehci: new USB bus registered, assigned bus number 1
[ 7.620834] ehci-platform 101c0000.ehci: irq 26, io mem 0x101c0000
[ 7.642590] ehci-platform 101c0000.ehci: USB 2.0 started, EHCI 1.00
[ 7.650640] hub 1-0:1.0: USB hub found
[ 7.655011] hub 1-0:1.0: 1 port detected
[ 7.683949] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
[ 7.693923] init: - preinit -
[ 8.245073] usb 1-1: new high-speed USB device number 2 using ehci-platform
[ 11.962614] random: crng init done
[ 15.244109] rt3050-esw 10110000.esw: port 3 link down
[ 18.614186] rt3050-esw 10110000.esw: port 3 link up
[ 21.963064] jffs2_scan_eraseblock(): End of filesystem marker found at 0x10000
[ 21.970453] jffs2_build_filesystem(): unlocking the mtd device...
[ 21.970463] done.
[ 21.978732] jffs2_build_filesystem(): erasing all blocks after the end marker...
[ 24.813897] done.
[ 24.823546] jffs2: notice: (444) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found.
[ 24.843786] mount_root: overlay filesystem has not been fully initialized yet
[ 24.852794] mount_root: switching to jffs2 overlay
[ 24.860588] overlayfs: upper fs does not support tmpfile.
[ 25.930845] urandom-seed: Seed file not found (/etc/urandom.seed)
[ 26.205230] procd: - early -
[ 26.208538] procd: - watchdog -
[ 27.675955] procd: - watchdog -
[ 27.679775] procd: - ubus -
[ 28.195035] procd: - init -
[ 34.631541] urngd: v1.0.2 started.
[ 35.521804] kmodloader: loading kernel modules from /etc/modules.d/*
[ 38.159655] usbcore: registered new interface driver cdc_wdm
[ 38.170402] Loading modules backported from Linux version v6.18.26-0-g1fe060681
[ 38.177938] Backport generated by backports.git 6ecbb44
[ 38.217827] usbcore: registered new interface driver usbserial_generic
[ 38.224718] usbserial: USB Serial support registered for generic
[ 38.438875] mt76_wmac 10300000.wmac: ASIC revision: 76280001
[ 38.451948] mt76_wmac 10300000.wmac: Firmware Version: 20151201
[ 38.458084] mt76_wmac 10300000.wmac: Build Time: 20151201183641
[ 38.482588] mt76_wmac 10300000.wmac: firmware init done
[ 38.646178] mt76_wmac 10300000.wmac: registering led 'mt76-phy0'
[ 38.694704] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[ 38.911256] PPP generic driver version 2.4.2
[ 38.929318] NET: Registered PF_PPPOX protocol family
[ 38.952974] qmi_wwan 1-1:1.4: cdc-wdm0: USB WDM device
[ 38.961202] qmi_wwan 1-1:1.4 wwan0: register 'qmi_wwan' at usb-101c0000.ehci-1, WWAN/QMI device, d6
[ 38.972237] usbcore: registered new interface driver qmi_wwan
[ 39.011040] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[ 39.019099] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[ 39.065758] mt76x0e 0000:01:00.0: card - bus=0x1, slot = 0x0 irq=4
[ 39.072368] mt76x0e 0000:01:00.0: ASIC revision: 76100002
[ 39.100782] mt76x0e 0000:01:00.0: Firmware Version: 0.1.00
[ 39.353367] mt76x0e 0000:01:00.0: EEPROM ver:02 fae:00
[ 39.359320] mt76x0e 0000:01:00.0: registering led 'mt76-phy1'
[ 39.385293] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
[ 39.425439] usbcore: registered new interface driver option
[ 39.431241] usbserial: USB Serial support registered for GSM modem (1-port)
[ 39.483148] kmodloader: done loading kernel modules from /etc/modules.d/*
[ 62.545498] rt3050-esw 10110000.esw: port 3 link down
[ 65.866431] rt3050-esw 10110000.esw: port 3 link up
[ 72.673017] mtk_soc_eth 10100000.ethernet eth0: entered promiscuous mode
[ 72.743349] br-lan: port 1(eth0.1) entered blocking state
[ 72.748886] br-lan: port 1(eth0.1) entered disabled state
[ 72.754507] eth0.1: entered allmulticast mode
[ 72.758951] mtk_soc_eth 10100000.ethernet eth0: entered allmulticast mode
[ 72.766271] eth0.1: entered promiscuous mode
[ 72.853077] br-lan: port 1(eth0.1) entered blocking state
[ 72.858617] br-lan: port 1(eth0.1) entered forwarding state
[ 135.700434] br-lan: port 2(phy1-ap0) entered blocking state
[ 135.706238] br-lan: port 2(phy1-ap0) entered disabled state
[ 135.711963] mt76x0e 0000:01:00.0 phy1-ap0: entered allmulticast mode
[ 135.718903] mt76x0e 0000:01:00.0 phy1-ap0: entered promiscuous mode
[ 136.938485] mt76x0e 0000:01:00.0: Error: RF read 7:73 failed:-145!!
[ 137.452305] br-lan: port 2(phy1-ap0) entered blocking state
[ 137.458091] br-lan: port 2(phy1-ap0) entered forwarding state
[ 160.669464] br-lan: port 3(phy0-ap0) entered blocking state
[ 160.675248] br-lan: port 3(phy0-ap0) entered disabled state
[ 160.680970] mt76_wmac 10300000.wmac phy0-ap0: entered allmulticast mode
[ 160.688284] mt76_wmac 10300000.wmac phy0-ap0: entered promiscuous mode
[ 161.342156] br-lan: port 3(phy0-ap0) entered blocking state
[ 161.347955] br-lan: port 3(phy0-ap0) entered forwarding state
[11557.349747] rt3050-esw 10110000.esw: port 3 link down
[11557.358102] br-lan: port 1(eth0.1) entered disabled state
[11560.685528] rt3050-esw 10110000.esw: port 3 link up
[11560.692570] br-lan: port 1(eth0.1) entered blocking state
[11560.698170] br-lan: port 1(eth0.1) entered forwarding state
[11636.085769] mt76_wmac 10300000.wmac phy0-ap0: left allmulticast mode
[11636.092316] mt76_wmac 10300000.wmac phy0-ap0: left promiscuous mode
[11636.098912] br-lan: port 3(phy0-ap0) entered disabled state
[11652.783007] br-lan: port 2(phy1-ap0) entered disabled state
[11652.847089] br-lan: port 2(phy1-ap0) entered disabled state
[11652.915413] mt76x0e 0000:01:00.0 phy1-ap0 (unregistering): left allmulticast mode
[11652.923063] mt76x0e 0000:01:00.0 phy1-ap0 (unregistering): left promiscuous mode
[11652.930680] br-lan: port 2(phy1-ap0) entered disabled state
[11664.323250] br-lan: port 2(phy0-ap0) entered blocking state
[11664.329033] br-lan: port 2(phy0-ap0) entered disabled state
[11664.334779] mt76_wmac 10300000.wmac phy0-ap0: entered allmulticast mode
[11664.341867] mt76_wmac 10300000.wmac phy0-ap0: entered promiscuous mode
[11664.348750] br-lan: port 2(phy0-ap0) entered blocking state
[11664.354442] br-lan: port 2(phy0-ap0) entered forwarding state
[11664.368756] br-lan: port 2(phy0-ap0) entered disabled state
[11664.806059] br-lan: port 2(phy0-ap0) entered blocking state
[11664.811800] br-lan: port 2(phy0-ap0) entered forwarding state
[11667.909884] br-lan: port 3(phy1-ap0) entered blocking state
[11667.915676] br-lan: port 3(phy1-ap0) entered disabled state
[11667.921402] mt76x0e 0000:01:00.0 phy1-ap0: entered allmulticast mode
[11667.928486] mt76x0e 0000:01:00.0 phy1-ap0: entered promiscuous mode
[11668.771495] br-lan: port 3(phy1-ap0) entered blocking state
[11668.777280] br-lan: port 3(phy1-ap0) entered forwarding state
[11681.232151] rt3050-esw 10110000.esw: port 3 link down
[11681.240664] br-lan: port 1(eth0.1) entered disabled state
[11684.589882] rt3050-esw 10110000.esw: port 3 link up
[11684.595624] br-lan: port 1(eth0.1) entered blocking state
[11684.601150] br-lan: port 1(eth0.1) entered forwarding state
[196326.748989] rt3050-esw 10110000.esw: port 3 link down
[196326.755951] br-lan: port 1(eth0.1) entered disabled state
[196330.252536] rt3050-esw 10110000.esw: port 3 link up
[196330.258437] br-lan: port 1(eth0.1) entered blocking state
[196330.264128] br-lan: port 1(eth0.1) entered forwarding state
[196478.869732] rt3050-esw 10110000.esw: port 3 link down
[196478.876202] br-lan: port 1(eth0.1) entered disabled state
[196482.256991] rt3050-esw 10110000.esw: port 3 link up
[196482.262832] br-lan: port 1(eth0.1) entered blocking state
[196482.268446] br-lan: port 1(eth0.1) entered forwarding state
but the problem is still there.
A starting position - a list:
- Does this happen with ALL iphones/apple devices?
- It only seems to be reported by a small number of people so is most likely something in your config.
- It could be config of your router.
- It could be config of your iphone.
- Even if evidence so far points to a dns issue, it could be something else.
I don't use dns over https so cannot say if there is any problem with your config of it.
But do some tests.
On the router do an nslookup for apple.com. Here is an example on my router:
root@meshnode-8ec9:~# nslookup apple.com
Server: 127.0.0.1
Address: 127.0.0.1:53
Non-authoritative answer:
Name: apple.com
Address: 17.253.144.10
Non-authoritative answer:
Name: apple.com
Address: 2620:149:af0::10
root@meshnode-8ec9:~#
Do you see an ipv6 address?
Do the same test on your iphone.
To do this you need to install the iNetTools app or similar.
Report back with the results (in this case, a screen shot from the iphone will probably be quickest for the second test).