aboutsummaryrefslogtreecommitdiff
path: root/examples/std/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'examples/std/README.md')
-rw-r--r--examples/std/README.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/examples/std/README.md b/examples/std/README.md
index 5d7c384ae..ac2c2a1a6 100644
--- a/examples/std/README.md
+++ b/examples/std/README.md
@@ -1,14 +1,16 @@
1 1
2## Running the `embassy-net` examples 2## Running the `embassy-net` examples
3 3
4To run `net`, `tcp_accept`, `net_udp` examples you will need a tap interface. Before running any example, create the tap99 interface. (The number was chosen to 4To run `net`, `tcp_accept`, `net_udp` and `net_dns` examples you will need a tap interface. Before running these examples, create the tap99 interface. (The number was chosen to
5hopefully not collide with anything.) You only need to do 5hopefully not collide with anything.) You only need to do this once every time you reboot your computer.
6this once every time you reboot your computer.
7 6
8```sh 7```sh
8cd $EMBASSY_ROOT/examples/std/
9sudo sh tap.sh 9sudo sh tap.sh
10``` 10```
11 11
12The example `net_ppp` requires different steps that are detailed in its section.
13
12### `net` example 14### `net` example
13 15
14For this example, you need to have something listening in the correct port. For example `nc -lp 8000`. 16For this example, you need to have something listening in the correct port. For example `nc -lp 8000`.