Do you have 4in6 RFC 2473 support https://tools.ietf.org/html/rfc2473. 4in6 uses tunneling to encapsulate IPv4 traffic over an IPv6 tunnel.
if possible, give instructions - how to do it correctly?
Could be “/interface ipipv6”, it can transport IPv4 over IPv6, but I can’t say for sure if it’s the exact thing from that RFC.
I can not find this item, where did you get it? show me the picture please
In WinBox, open Interfaces menu, click the + button to add new one and select IPIPv6 Tunnel.
Alternatively you can use a GRE tunnel. It is capable of being encrypted, handles IPv4 and IPv6 traffic as outer or inner protocols and, supports multicast for easy use of traditional IGPs for route handling.
the problem is solved. all IPv4 traffic passes through the IPv6 tunnel.
Client:
/interface ipipv6
add local-address=2600::2 name=ipipv6-tunnel remote-address=2600::1
/ip address
add address=192.168.0.2 interface=ipipv6-tunnel network=192.168.0.1
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ipipv6-tunnel
/ip route
add distance=2 gateway=192.168.0.1
Server:
/interface ipipv6
add local-address=2600::1 name=ipipv6-tunnel remote-address=2600::2
/ip address
add address=192.168.0.1 interface=ipipv6-tunnel network=192.168.0.2
if you set hands to see the picture where is the right menu.
