Hello,
I’m deploying ipv6 on my network after my ISP made it available.
My router does dhcpv6 statefull + slaac (via dnsmasq) and my osmc pi3 gets the proper ipv6s.
My router also advertizes a specific /112 route (via radvd) which the pi3 receives (as shown by radvdump below)
#based on Router Advertisement from
#fe80::a42b:b0ff:febc:8062
# received by interface wlan0
#
interface wlan0
{
AdvSendAdvert on;
# Note: {Min,Max}RtrAdvInterval cannot be obtained with radvdump
AdvManagedFlag off;
AdvOtherConfigFlag off;
AdvReachableTime 0;
AdvRetransTimer 0;
AdvCurHopLimit 64;
AdvDefaultLifetime 1800;
AdvHomeAgentFlag off;
AdvDefaultPreference medium;
AdvSourceLLAddress on;
route fddd::1:0/112
{
AdvRoutePreference medium;
AdvRouteLifetime 1800;
}; # End of route definition
}; # End of interface definition
However the route is not autoconfigured on my pi3…
My desktop gentoo pc gets the same route advertizement and automatically adds the route.
What can be the issue on my osmc pi3 ? How can I get it to add the advertized ipv6 route ?
Thanks in advance for any ideas / suggestions. I can provide more information if necessary.
Regards,
dwardo
P.S. my best googling efforts lead to linux - Advertise a subnet route with radvd - Server Fault unfortunately neither my osmc pi3 nor gentoo pc have those sysctl parameters… So seemed like a dead end.