Hi, I experienced a strange phenomenon after switching from an Asus router to a Flint 2. Everything works as expected, except for the IPv6 connectivity of one Ubuntu server connected to the Flint 2 via Ethernet. This server still receives an IPv6 address from my the subnet provided by the ISP, and is accessible via this address, but it cannot reach any external IPv6 address. The setup looks like this:
$ ip -6 route show
2a02:908:532:bca0::/64 dev eno1 proto ra metric 100 expires 86398sec hoplimit 64 pref medium
fe80::/64 dev eno1 proto kernel metric 256 pref medium
default via fe80::9683:c4ff:feaa:be4e dev eno1 proto ra metric 100 expires 178sec hoplimit 64 pref medium
$ ip -6 addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 state UNKNOWN qlen 1000
inet6 ::1/128 scope host noprefixroute
valid_lft forever preferred_lft forever
2: eno1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 state UP qlen 1000
inet6 2a02:908:532:bca0:1e69:7aff:feaf:7455/64 scope global dynamic mngtmpaddr noprefixroute
valid_lft 86399sec preferred_lft 86399sec
inet6 fe80::1e69:7aff:feaf:7455/64 scope link
valid_lft forever preferred_lft forever
I can ping6 the local-link address and other addresses on the internal subnet, but no external IPs (e.g. 2001:4860:4860::8888) and not 2a02:908:532:bca0:10:18ff:fe3f:3194 (the gateway). All other devices (connected via WiFi) do not have this issue.
To illustrate, this is the respective output of traceroute:
# working device
traceroute6 to 2001:4860:4860::8888 (2001:4860:4860::8888) from 2a02:908:532:bca0:f9be:6fbe:dc81:3c2d, 64 hops max, 28 byte packets
1 fd7d:9594:ca69::1 1049.690 ms 1.897 ms 1.752 ms
2 2a02:908:532:bca0:10:18ff:fe3f:3194 10.221 ms 4.115 ms 3.975 ms
3 2a02:908:500:3::1 11.705 ms 14.077 ms 12.003 ms
4 2a02:908:0:182::1 11.603 ms 12.695 ms 12.387 ms
5 * * *
6 * * *
7 2a00:1450:8154::1 23.142 ms
2a00:1450:8163::1 18.704 ms
2a00:1450:8152::1 15.087 ms
# Ubuntu server
traceroute to 2001:4860:4860::8888 (2001:4860:4860::8888), 30 hops max, 80 byte packets
1 fd7d:9594:ca69::1 (fd7d:9594:ca69::1) 0.576 ms 0.498 ms 0.508 ms
2 * * *
3 * * *
4 * * *
5 * * *
6 * * *
7 * * *
8 * * *
#...
fd7d:9594:ca69::/64 is listed as lan interface in LuCI, 2a02:908:532:bca0:10:18ff:fe3f:3194 as wan6. So all WiFi devices route successfully from lan to wan6, but the wired server does not. What am I missing here?

