ether2 - DHCP server for (IPv4 with 100.64.0.0/24 pool and IPv6 with the pools that deppends on Hurricane Electric)
ether6 - DHCP client, it's the port connected to modem ADSL2+ which implements an dhcp server with a nat to a dinamic public IP
this is the code that I implemented, following this tutorial: https://wiki.mikrotik.com/wiki/Manual:H ... e_for_Home
Code: Select all
/interface 6to4 add comment="Hurricane Electric IPv6 Tunnel Broker" disabled=no local-address=186.124.238.xxx mtu=1280 name=sit1 remote-address=209.51.161.58
/ipv6 address add address=2001:470:4:550::2/64 advertise=no disabled=no eui-64=no interface=sit1
/ipv6 route
add dst-address=::/0 gateway=2001:470:4:550::1/64
/ipv6 address
add address=2001:470:5:550::1/64 advertise=yes interface=ether2
/routing ospf-v3 interface
add area=backbone interface=ether2
Should I assing 2001:470:5:550::1/64 to ether2 or ether6? Also, there is 2 NAT process, one in the RB2011 router and the other is on the modem.
Thanks in advance and best regards.