Hi there! Related to my previous topic, I am trying to set up an IPv6 connection between my PC and a nRF52840DK board. To do so, I’m using a nRF52840 Dongle which acts as border router to allow the connectivity between the board and my system.
cd ~/Tutorials/RIOT/examples/gnrc_border_router
BOARD=nrf52840dongle UPLINK=cdc-ecm make flash BOARD=nrf52840dongle UPLINK=cdc-ecm make term
After those steps, in my PC I have an USB interface created as a result. I add it an IPv6 address with:
sudo ip addr add 2001:db8::1/64 dev enxa6e91023eea6
sudo ip link set enxa6e91023eea6 up
Where enxa6e91023eea6 is the name of the interface. Then, I flashed and executed gnrc_networking in my nRF52840DK and copy the IPv6 address showed in ifconfig.
However, when I do ping from my PC to the IPv6 address of the DK board, there is no success (idem if it goes viceversa).
Is there a way to check the interface created is working correctly? I have already tried adding an static route or manually assigning and activating the addresses.
Thanks in advance.