-
-
Notifications
You must be signed in to change notification settings - Fork 374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(netlink): detect ipv6 support level #2523
base: master
Are you sure you want to change the base?
Conversation
qdm12
commented
Oct 14, 2024
- 'supported' if one ipv6 route is found that is not loopback and not a default route
- 'internet' if one default ipv6 route is found
I just tried this and the IPv6 detection does not seem to correctly work for me. I have some link-locals IPv6 but not a routable IPv6, yet it appears to detect IPv6 support as Internet.
|
- 'supported' if one ipv6 route is found that is not loopback and not a default route - 'internet' if one default ipv6 route is found
Here's the logs of the new version!
|
Thanks! It looks like the last route checked as a destination docker run --rm alpine:3.20 ip -6 route show table all To find out why the heck that |
Here's the results of
Start of my
Gateway is present but that's used to contact the host over IPv6, not sure if it's the network config that's problematic? Just to be safe, here's the result of
|
Thank you for the detailed investigation 💯 docker run --rm alpine:3.20 ip a
docker run --rm alpine:3.20 ip -6 a (referencing my previous comment):
|
Sorry for the delay, here's the result of both commands: docker run --rm alpine:3.20 ip a
docker run --rm alpine:3.20 ip -6 a
IPv6 seems to show scope global too, unfortunately. |