Simpler doc
This commit is contained in:
parent
e300606b19
commit
3a923cf34b
1 changed files with 3 additions and 4 deletions
|
@ -47,11 +47,10 @@ nc 127.0.0.1 8000
|
|||
|
||||
If you write some data on your terminal and press enter, you will see that your data has been repeated. Well done!
|
||||
|
||||
Now, instead of using `nc`, we will use `measlat` to use this echo server to measure latencies:
|
||||
Now, instead of using `nc`, we will use `measlat` to use this echo server to measure latencies (make sure that `udpecho` is still running):
|
||||
|
||||
```bash
|
||||
udpecho -p 8001 &
|
||||
measlat -h 127.0.0.1 -p 8001 -t udp
|
||||
measlat -h 127.0.0.1 -p 8000 -t udp
|
||||
```
|
||||
|
||||
`measlat` will send one packet to our udpecho server and wait to receive it back, measure the time it took, display it and exit.
|
||||
|
@ -59,7 +58,7 @@ measlat -h 127.0.0.1 -p 8001 -t udp
|
|||
You can use `measlat` more extensively by defining the number of measures to do, an interval and the size of the packet:
|
||||
|
||||
```bash
|
||||
measlat -h 127.0.0.1 -p 8001 -t udp -c 10 -i 100 -s 150
|
||||
measlat -h 127.0.0.1 -p 8000 -t udp -c 10 -i 100 -s 150
|
||||
```
|
||||
|
||||
### Introduction to `donar`
|
||||
|
|
Loading…
Reference in a new issue