The issue is the missing nameserver target in resolv. I am expecting two in the echo. Receiving AAAA records over the only nameserver target (v4) works fine as expected - using DIG or ping. In my configuration no IPv6 nameserver target is present in resolv, hence it will never use IPv6 towards the nameserver. Only a v4 connection. The functionality of receiving A or AAAA records via v4 or v6 connections works fine (manually via DIG), you can see below. > root@debian:/home/user# dig ipv6.com ; <<>> DiG 9.18.33-1~deb12u2-Debian <<>> ipv6.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 3975 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 1232 ; COOKIE: 7ac359db9c31c4270100000067e50042891d6c64af1761b2 (good) ;; QUESTION SECTION: ;ipv6.com. IN A ;; ANSWER SECTION: ipv6.com. 86391 IN A 198.178.249.201 ;; Query time: 0 msec ;; SERVER: 12.34.56.78#53(12.34.56.78) (UDP) root@debian:/home/user# dig @2xxx:xxxx:x00:1::50 ipv6.com ; <<>> DiG 9.18.33-1~deb12u2-Debian <<>> @2xxx:xxxx:x00:1::50 ipv6.com ; (1 server found) ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 41670 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 1232 ; COOKIE: 43472f7a7329ef6a0100000067e500398a9fbf9dfc4041e2 (good) ;; QUESTION SECTION: ;ipv6.com. IN A ;; ANSWER SECTION: ipv6.com. 86400 IN A 198.178.249.201 ;; Query time: 288 msec ;; SERVER: 2xxx:xxxx:x00:1::50#53(2xxx:xxxx:x00:1::50) (UDP) root@debian:/home/user# dig aaaa ipv6.com ; <<>> DiG 9.18.33-1~deb12u2-Debian <<>> aaaa ipv6.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 40945 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 1232 ; COOKIE: 076c2a8c336f64450100000067e5006f34bb754eb4e1bb7e (good) ;; QUESTION SECTION: ;ipv6.com. IN AAAA ;; ANSWER SECTION: ipv6.com. 86388 IN AAAA 2602:fa20:1:40::201 ;; Query time: 0 msec ;; SERVER: 12.34.56.78#53(12.34.56.78) (UDP) root@debian:/home/user# dig @2xxx:xxxx:x00:1::50 aaaa ipv6.com ; <<>> DiG 9.18.33-1~deb12u2-Debian <<>> @2xxx:xxxx:x00:1::50 aaaa ipv6.com ; (1 server found) ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 54730 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 1232 ; COOKIE: 22c5fddc9d2659660100000067e500639d2839256745a712 (good) ;; QUESTION SECTION: ;ipv6.com. IN AAAA ;; ANSWER SECTION: ipv6.com. 86400 IN AAAA 2602:fa20:1:40::201 ;; Query time: 224 msec ;; SERVER: 2xxx:xxxx:x00:1::50#53(2xxx:xxxx:x00:1::50) (UDP) root@debian:/home/user# On 27/03/2025 5:23 pm, basti wrote:
Hello, |