无法通过IPv6隧道从客户端ping通互联网

我在使用IPv6设置时遇到了一个奇怪的问题。 我已经configuration如下:

/interface 6to4 add comment="SixXS 6to4 tunnel" local-address=zz.yy.xx.94 (my wan ip) mtu=1280 name=6to4-sixxs remote-address=zz.yy.xx.73 (tunnel endpoint) /ipv6 address add address=2001:aaaa:bbbb:123::2/128 (my ipv6) advertise=no interface=6to4-sixxs add address=2001:bbbb:cccc:123::1/64 (subnet for my ipv6 prefix) advertise=yes interface=bridge-lan /ipv6 route add distance=1 dst-address=2000::/3 gateway=6to4-sixxs 

现在:

  • 我可以从路由器(fe 2a00:1450:400c:c03 :: 5e)ping服务器,
  • 客户端通过ND在正确的子网中获取IPv6
  • 从路由器ping到客户端失败(超时,ping不被防火墙丢弃)
  • 从客户端ping服务器失败

我在这里错过了什么?

好吧,刚刚在Mikrotik论坛上看到这个主题 ,它提到了关于路由caching被卡住的事情。 我已经决定重启路由器,它解决了我的问题。

奇怪的东西。 感谢您的思考,@ Colyn1337和@MichelZ。