1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

examples: rename ng_networking to gnrc_networking

This commit is contained in:
Martine Lenders 2015-08-17 16:43:01 +02:00
parent 56817ba015
commit f12499717c
4 changed files with 5 additions and 6 deletions

View File

@ -1,5 +1,5 @@
# name of your application # name of your application
APPLICATION = ng_networking APPLICATION = gnrc_networking
# If no BOARD is found in the environment, use this default: # If no BOARD is found in the environment, use this default:
BOARD ?= native BOARD ?= native

View File

@ -1,4 +1,4 @@
# ng_networking example # gnrc_networking example
## Connecting RIOT native and the Linux host ## Connecting RIOT native and the Linux host
@ -15,8 +15,8 @@ First, create a tap interface (to which RIOT will connect) and a bridge (to whic
sudo ip tuntap add tap0 mode tap user ${USER} sudo ip tuntap add tap0 mode tap user ${USER}
sudo ip link set tap0 up sudo ip link set tap0 up
Now you can start the `ng_networking` example by invoking `make term`. This should automatically connect to the `tap0` interface. If Now you can start the `gnrc_networking` example by invoking `make term`. This should automatically connect to the `tap0` interface. If
this doesn't work for some reason, run `make` without any arguments, and then run the binary manually like so (assuming you are in the `examples/ng_networking` directory): this doesn't work for some reason, run `make` without any arguments, and then run the binary manually like so (assuming you are in the `examples/gnrc_networking` directory):
To verify that there is connectivity between RIOT and Linux, go to the RIOT console and run `ifconfig`: To verify that there is connectivity between RIOT and Linux, go to the RIOT console and run `ifconfig`:
@ -63,4 +63,3 @@ Now, on the RIOT side, send a UDP packet using:
udp send fe80::4049:5fff:fe17:b3ae 8808 testmessage udp send fe80::4049:5fff:fe17:b3ae 8808 testmessage
You should see `testmessage` appear in netcat. Instead of using netcat, you can of course write your own software, but you may have to bind the socket to a specific interface (tap0 in this case). For an example that shows how to do so, see [here](https://gist.github.com/backenklee/dad5e80b764b3b3d0d3e). You should see `testmessage` appear in netcat. Instead of using netcat, you can of course write your own software, but you may have to bind the socket to a specific interface (tap0 in this case). For an example that shows how to do so, see [here](https://gist.github.com/backenklee/dad5e80b764b3b3d0d3e).