I said to the AI on mikrotik.com: "I need ND proxy". I did not expect to get an answer but this is what it said:
This answer made me really happy at first. But when I tried to "set [find] interface=ether2 proxy=yes", the cli doesn't recognize the command. I installed 7.17rc2 with the same result.To set up an ND (Neighbor Discovery) proxy on a MikroTik device, you will need to configure it to handle IPv6 Neighbor Discovery messages. This is useful in scenarios where you need to extend an IPv6 network segment across different network segments.
Here's a basic outline of how you can configure ND proxy on a MikroTik router:
Enable IPv6 Package: Ensure that the IPv6 package is enabled on your MikroTik device. You can do this by navigating to System -> Packages and checking if IPv6 is enabled.
Configure ND Proxy: Use the following command to set up ND proxy on the desired interfaces:
/ipv6 nd
set [find] interface=ether1 proxy=yes
set [find] interface=ether2 proxy=yes
Replace ether1 and ether2 with the actual interface names you want to use for ND proxy.
Verify Configuration: After setting up, you can verify the configuration by checking the ND proxy settings:
/ipv6 nd print
This configuration will allow your MikroTik router to act as an ND proxy, forwarding Neighbor Discovery messages between the specified
Is this something that the AI made up on its own, or is it something that is actually in the pipeline?