TL;DR - When Flint 2 is plugged in and configured as an Access Point in IPv6 + IPv4 environment like a home LAN:
- There is no way to specify any IPv6 settings, which is probably fine, as in AP mode, it moves IPv6 packets fine between interfaces.
- The Router begins sending illegal neighbor discovery messages, with targets that seem to be in Google, Amazon & Facebook ranges, but whose source address is ::1 ; presumably because there is no IPv6 stack built up to do SAS (send from the correct IPv6 assigned address).
Most devices silently drop these packets as illegal. Firewalls often contain block all in from ::1 ; since sending anywhere but to ::1 from ::1 is illegal in IPv6. In that way, ::1 is not like 127.0.0.1 in IPv4. At a minimum the br-lan would in IPv6 mode (which per #1, can not turn on), assign itself an fe80: address to be LANv6 “present” if it wanted to do ND.
I only noticed this because in our LAN are some NetBSD machines who begin every ~10 seconds flooding their dmesg with lines of the form:
[ 20110.421029] in6_setscope: can't set scope for not loopback interface re1 and loopback address ::1
[ 20110.421029] in6_setscope: can't set scope for not loopback interface re1 and loopback address ::1
[ 20120.661206] in6_setscope: can't set scope for not loopback interface re1 and loopback address ![]()
Which is basically complaining that a src of ::1 not match the “scope” (i.e. can not hop through) an ethernet device; which it is not allowed.
My guess is the fix is an IPv6 option (or default on, probably harmless) on br-lan with an assigned fe80: and/or turning off whatever service is causing the Neighbor Discovery to happen.
I will paste some technical analysis info below. I’m sure you don’t consider this a “P1” issue, but it may be the symptom of other problems I have not mentioned.
Thanks,
Greg
tcpdump capturing the guilty packets
16:33:58.577105 IP6 ::1 > 2620:149:a16:2000::521: ICMP6, neighbor solicitation, who has 2620:149:a16:2000::521, length 32
16:33:58.577141 IP6 ::1 > 2607:f8b0:4004:c06::bc: ICMP6, neighbor solicitation, who has 2607:f8b0:4004:c06::bc, length 32
16:33:58.577177 IP6 ::1 > 2607:f8b0:4002:c06::bc: ICMP6, neighbor solicitation, who has 2607:f8b0:4002:c06::bc, length 32
16:33:58.577213 IP6 ::1 > 2001:4860:4802:34::223: ICMP6, neighbor solicitation, who has 2001:4860:4802:34::223, length 32
16:33:58.577248 IP6 ::1 > 2001:4860:4802:36::223: ICMP6, neighbor solicitation, who has 2001:4860:4802:36::223, length 32
16:33:58.577285 IP6 ::1 > 2a03:2880:f203:c6:face:b00c:0:7260: ICMP6, neighbor solicitation, who has 2a03:2880:f203:c6:face:b00c:0:7260, length 32
Here you can see your MAC address (the Flint 2 br-lan MAC)
**
sudo tcpdump -ni re1 icmp6 and 'icmp6[0] == 135' -vv**
0x0000: 9483 c4a7 2e24
16:47:06.960183 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) ::1 > 2603:6081:8100:324e:5207:c3ff:fe99:d252: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has 2603:6081:8100:324e:5207:c3ff:fe99:d252
source link-address option (1), length 8 (1): 94:83:c4:a7:2e:24
0x0000: 9483 c4a7 2e24
16:47:06.960219 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) ::1 > 2603:6081:8100:324e:b197:f9b9:e73:e990: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has 2603:6081:8100:324e:b197:f9b9:e73:e990
source link-address option (1), length 8 (1): 94:83:c4:a7:2e:24
0x0000: 9483 c4a7 2e24
16:47:06.960256 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) ::1 > 2603:6081:8100:324e:c4af:d43b:f511:a20a: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has 2603:6081:8100:324e:c4af:d43b:f511:a20a
source link-address option (1), length 8 (1): 94:83:c4:a7:2e:24
… repeats ad nauseam
OpenWrt 24.10.4, r28959-29397011cc
root@airport:~# ifconfig br-lan
br-lan Link encap:Ethernet HWaddr 94:83:C4:A7:2E:24
inet addr:10.6.6.5 Bcast:10.6.6.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:37971 errors:0 dropped:1584 overruns:0 frame:0
TX packets:14808 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:3833088 (3.6 MiB) TX bytes:1855108 (1.7 MiB)
root@airport:~#
