Hello everyone!
I have followed the tutorial " Installing a 6LoWPAN enabled Linux kernel and required modules"
and i have compiled the UDP client IoT example in order to test the connectivity.
the led state shows that the ble connection was successful,
the result of "ifconfig bt0" is as shown in the picture.

i think that confirms that the connection was successful.
but the problem is that i cannot ping on the device using the "ping6 -i bt0"
i get the following error message :
PING fe80::21:12ff:fea7:af6a%bt0(fe80::21:12ff:fea7:af6a%bt0) 56 data bytes
From fe80::b827:ebff:fe98:f18e%bt0 icmp_seq=1 Destination unreachable: Address unreachable
when i test with "tcpdump -i bt0" i can see that the nrf52 send some echo request as it should.
root@raspberrypi:/home/pi# tcpdump -i bt0
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on bt0, link-type LINUX_SLL (Linux cooked), capture size 262144 bytes
11:52:47.976259 IP6 fe80::21:12ff:fea7:af6a > 2001:db8::1: ICMP6, echo request, seq 292, length 26
11:52:48.366236 IP6 fe80::21:12ff:fea7:af6a > 2001:db8::1: ICMP6, echo request, seq 293, length 26
11:52:48.756246 IP6 fe80::21:12ff:fea7:af6a > 2001:db8::1: ICMP6, echo request, seq 294, length 26
11:52:49.146269 IP6 fe80::21:12ff:fea7:af6a > 2001:db8::1: ICMP6, echo request, seq 295, length 26
11:52:49.536260 IP6 fe80::21:12ff:fea7:af6a > 2001:db8::1: ICMP6, echo request, seq 296, length 26
11:52:49.975022 IP6 fe80::21:12ff:fea7:af6a > 2001:db8::1: ICMP6, echo request, seq 297, length 26
11:52:50.365043 IP6 fe80::21:12ff:fea7:af6a > 2001:db8::1: ICMP6, echo request, seq 298, length 26
can anyone please explain to me why cant i ping on the nrf52840 device ?
thank you