I’m attempting to figure out this ipv6 stuff and so far it’s over my head. I’m running 4.6 firmware on an RB450. I have a 6to4 tunnel set up on my Tik via Hurricane Electric. I followed the instructions on the Mikrotik Wiki to get the tunnel set up on the Tik. From the Tik it communicates fine across the tunnel. No problems. At the bottom of the Wiki it says to set up an ipv6 address on my internal LAN interface as well. I did that too.
Windows seems to pick up on the ipv6 neighbor discovery and gets an address from my /64 but does not route across it. From windows I am able to ping the ipv6 address on my Tik’s local lan interface but not any further. I attempted to manually add a default route to windows and that didn’t work either. I’m sure I’m doing something dumb but there is just so much chatter out there I can’t sort out all the information.
My general setup (simple home router)
INTERNET → Tik (ether2) → NATted LAN via bridged ports (ether3, 4 and 5)
IPV6 config:
/ipv6 address
# Tunnel ipv6 address
add address=2001:470:1f10:777::2/64 advertise=yes comment="" disabled=no eui-64=no interface=sit1
# Local LAN ipv6 address on nat interface (bridged ether3, 4 and 5)
add address=2001:470:1f10:777::3/64 advertise=yes comment="" disabled=no eui-64=no interface=nat
/ipv6 nd
add advertise-dns=yes advertise-mac-address=yes disabled=no hop-limit=unspecified interface=all \
managed-address-configuration=no mtu=unspecified other-configuration=no ra-delay=3s ra-interval=3m20s-10m \
ra-lifetime=10m reachable-time=unspecified retransmit-interval=unspecified
add advertise-dns=yes advertise-mac-address=yes disabled=no hop-limit=unspecified interface=nat \
managed-address-configuration=no mtu=unspecified other-configuration=no ra-delay=3s ra-interval=3m20s-10m \
ra-lifetime=10m reachable-time=unspecified retransmit-interval=unspecified
/ipv6 nd prefix default
set autonomous=yes preferred-lifetime=1w valid-lifetime=4w2d
/ipv6 route
add disabled=no distance=1 dst-address=::/0 gateway=2001:470:1f10:777::1 scope=30 target-scope=10
Windows config
C:\>ipv6 rt
::/0 -> 4/fe80::20c:42ff:fe2e:85c5 pref 256 life 3m21s (autoconf)
::/0 -> 4/2001:470:1f10:777::3 pref 0 life infinite (manual)
2001:470:1f10:777::/64 -> 4 pref 8 life 29d23h53m21s (autoconf)
C:\>ipv6 if
Interface 4: Ethernet: Local Area Connection
Guid {832E8A86-1485-4023-AC32-B92497362871}
uses Neighbor Discovery
uses Router Discovery
link-layer address: 00-0d-61-60-b8-04
preferred global 2001:470:1f10:777:1557:7841:7073:4fc8, life 6d23h13m57s/23h11m10s (temporary)
preferred global 2001:470:1f10:777:20d:61ff:fe60:b804, life 29d23h58m37s/6d23h58m37s (public)
preferred link-local fe80::20d:61ff:fe60:b804, life infinite
multicast interface-local ff01::1, 1 refs, not reportable
multicast link-local ff02::1, 1 refs, not reportable
multicast link-local ff02::1:ff60:b804, 2 refs, last reporter
multicast link-local ff02::1:ff73:4fc8, 1 refs, last reporter
link MTU 1500 (true link MTU 1500)
current hop limit 128
reachable time 23000ms (base 30000ms)
retransmission interval 1000ms
DAD transmits 1
default site prefix length 48
Tests
C:\>ping6 2001:470:1f10:777::3
Pinging 2001:470:1f10:777::3
from 2001:470:1f10:777:1557:7841:7073:4fc8 with 32 bytes of data:
Reply from 2001:470:1f10:777::3: bytes=32 time<1ms
Reply from 2001:470:1f10:777::3: bytes=32 time<1ms
Reply from 2001:470:1f10:777::3: bytes=32 time<1ms
Reply from 2001:470:1f10:777::3: bytes=32 time<1ms
Ping statistics for 2001:470:1f10:777::3:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
C:\>ping6 2001:470:1f10:777::2
Pinging 2001:470:1f10:777::2
from 2001:470:1f10:777:1557:7841:7073:4fc8 with 32 bytes of data:
Reply from 2001:470:1f10:777:1557:7841:7073:4fc8: Destination address unreachable.
Reply from 2001:470:1f10:777:1557:7841:7073:4fc8: Destination address unreachable.
Reply from 2001:470:1f10:777:1557:7841:7073:4fc8: Destination address unreachable.
Reply from 2001:470:1f10:777:1557:7841:7073:4fc8: Destination address unreachable.
Ping statistics for 2001:470:1f10:777::2:
Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
Thanks in advance for any help.