
-My raspberry is able to ping everybody (the PC wlo1 interface, google IPv6 address and the thread node) but my PC can only ping my Raspberry eth0 interface and not the wpan0 interface with the fd11:22 prefix, the PC is also unable ping the thread node.The thread node is able to ping the raspberry pî wpan0 interface but is not able to ping my PC IPv6 address on wlo1 or google IPv6 address.
The question is can my PC ping the thread node and vice versa ? if yes , how can I do it?
I've seen this conversation https://groups.google.com/u/0/g/openthread-users/c/vHaLaJPMrYw and after running the ./script/server command and service --status-all, tayga and NAT64 become active but I'm still unable to ping my PC.I've also seen this https://openthread.io/guides/border-router/docker/test-connectivity?hl=enAnd I'm able to ping a public address by using the IPv4 to IPv6 translator and the 64:ff9b:: prefix but still i'm unable to ping PC and I don't understand why I need to do this given that my PC and google already have IPv6 addresses.
Hi Jonathan, thank you for your response and sorry for my delay.I have a little bit of trouble understanding.1 - You said I need to configure an IPv6 @ on my PC, on which interface should I add this IPv6 @?, should that address have the fd11:22:: prefix?
ip -6 address add 2001:dead::1/64 dev wlan0
2- You also said "On PC, configure a route to the `fd11:22::` prefix via the RPi, I found this commandsudo ip route add fd11:22:: via fd11:22::2c87:my_RPi_address dev wlo1 (wlo1 is the wifi interface on my PC)but it's not working, what's wrong with this command?
ip -6 route add fd11:22::/64 via <otbr-eth0-address> dev wlan0
3- You wrote "On RPi, configure a route to the PC IPv6 address via the PC", I'm guessing it's going to be something likesudo ip route add my_PC_IPv6_@_that_I_just_created via ???, when you said via the PC, what do you mean?, which address?, which interface?
The IPv6 prefix needs to be the one that you assigned to the Wi-Fi interface when configuring the PC's IPv6 address above.ip -6 route add 2001:dead::/64 dev eth0
Basically I just need more details, I'm completely new with networking, so thank you for patience .