Re: [riot-devel] Connectivity between new NG stack and loopback

2015-07-27 Thread Lennart Dührsen
Hi everyone, I'm sorry for answering so late (I had some other things to take care of), and I would like to thank you for your help. The reason why this wasn't working on my system was just my firewall that interfered. After turning it off, everything worked just as you described. To make it

Re: [riot-devel] Connectivity between new NG stack and loopback

2015-06-25 Thread Alexandru Razvan Caciulescu
Hello Lennart, Did you by any chance forgot to edit the makefile to include the module for ng_nativenet and recompile? Cheers, Alex 2015-06-25 18:49 GMT+03:00 Cenk Gündogan cenk.guendo...@fu-berlin.de: Hello Lennart, On 25.06.2015 16:14, Lennart Dührsen wrote: the method you suggested now

Re: [riot-devel] Connectivity between new NG stack and loopback

2015-06-25 Thread Cenk Gündogan
Hello Lennart, On 25.06.2015 16:14, Lennart Dührsen wrote: the method you suggested now works halfway for me, but I still can't that's half the battle (: linux~ nc -u fe80::b400:b1ff:fe63:f33d%tap0 54545 Using nc without the -l flag will start a udp client and connect to the riot server. You

Re: [riot-devel] Connectivity between new NG stack and loopback

2015-06-25 Thread Alexandru Razvan Caciulescu
Hello Cenk, I tried your method and it works ! Thanks for the help ! Cheers, Alex 2015-06-24 20:34 GMT+03:00 Cenk Gündogan cenk.guendo...@fu-berlin.de: Hello Lennart, I might be wrong and Sebastian might be able to shed some light on this, BUT isn't marz restricted to the old network

Re: [riot-devel] Connectivity between new NG stack and loopback

2015-06-24 Thread Cenk Gündogan
Hello Alexandru, I am not certain that this method is bullet-proof, but you can try the following: * Create a tun/tap interface: sudo openvpn --mktun --dev tap0 [FYI: I did not test this method with the tapsetup script] * Enable the interface: sudo ip link set dev tap0 up * start

Re: [riot-devel] Connectivity between new NG stack and loopback

2015-06-24 Thread Lennart Dührsen
Hi Alex, have a look at the microcoap example [1], which uses marz [2] to connect the RIOT node with your »normal« localhost. The RIOT application in this example is a just a server (and only reacts on requests), but it shouldn't be too hard to extend/customize. The marz code is a bit spaghetti

Re: [riot-devel] Connectivity between new NG stack and loopback

2015-06-24 Thread Cenk Gündogan
Hello Lennart, I might be wrong and Sebastian might be able to shed some light on this, BUT isn't marz restricted to the old network stack? As far as I know it strips/adds the old nativenet header from outgress/ingress packets. BTW, are you also using the old network stack? My described