@@ -13,6 +13,7 @@ The container is available at [DockerHub](https://hub.docker.com/r/tomopiro/netp
1313## What's in the contaienr
1414
1515- [ ** wrk** ] ( https://github.com/wg/wrk )
16+ - [ ** wrk2** ] ( https://github.com/giltene/wrk2 )
1617- [ ** iperf2** ] ( https://sourceforge.net/projects/iperf2/ )
1718- [ ** iperf3** ] ( https://github.com/esnet/iperf )
1819- [ ** netperf** ] ( https://github.com/HewlettPackard/netperf )
@@ -27,7 +28,9 @@ See the [Iperf 2 & Iperf 3 Comparison Table](https://iperf2.sourceforge.io/Iperf
2728- CMD is ` /bin/bash ` .
2829- Installed tools are
2930 - nano
31+ - vim
3032 - wrk
33+ - wrk2
3134 - curl
3235 - netperf
3336 - iperf2
@@ -47,22 +50,17 @@ Official documentation can be found at [iperf.fr](https://iperf.fr/iperf-doc.php
4750` iperf ` command is installed in the PATH.
4851
49521 . Create a test network that connect servfer and client.
50-
51- ``` bash
52- docker network create netperf
53- ```
54-
53+ ``` bash
54+ docker network create netperf
55+ ```
55562. Run an iperf2 server.
56-
57- ``` bash
58- docker run -it --rm --network netperf --hostname netperf tomopiro/netperf iperf -s
59- ```
60-
57+ ` ` ` bash
58+ docker run -it --rm --network netperf --hostname netperf tomopiro/netperf iperf -s
59+ ` ` `
61603. Run iperf2 client and check performance.
62-
63- ``` bash
64- docker run -it --rm --network netperf tomopiro/netperf iperf -c netperf
65- ```
61+ ` ` ` bash
62+ docker run -it --rm --network netperf tomopiro/netperf iperf -c netperf
63+ ` ` `
6664
6765# ## iperf3
6866
@@ -71,22 +69,17 @@ Official documentation can be found at [iperf.fr](https://iperf.fr/iperf-doc.php
7169` iperf3` command is installed in the PATH.
7270
73711. Create a test network that connect servfer and client.
74-
75- ``` bash
76- docker network create netperf
77- ```
78-
72+ ` ` ` bash
73+ docker network create netperf
74+ ` ` `
79752. Run an iperf3 server.
80-
81- ``` bash
82- docker run -it --rm --network netperf --hostname netperf tomopiro/netperf iperf3 -s
83- ```
84-
76+ ` ` ` bash
77+ docker run -it --rm --network netperf --hostname netperf tomopiro/netperf iperf3 -s
78+ ` ` `
85793. Run iperf3 client and check performance.
86-
87- ``` bash
88- docker run -it --rm --network netperf tomopiro/netperf iperf3 -c netperf
89- ```
80+ ` ` ` bash
81+ docker run -it --rm --network netperf tomopiro/netperf iperf3 -c netperf
82+ ` ` `
9083
9184# ## netperf
9285
@@ -95,19 +88,14 @@ Official documentation can be found at [Care and Feeding of Netperf 2.7.X](https
9588` netperf` command is installed in the PATH.
9689
97901. Create a test network that connect servfer and client.
98-
99- ``` bash
100- docker network create netperf
101- ```
102-
91+ ` ` ` bash
92+ docker network create netperf
93+ ` ` `
103942. Run a netperf server.
104-
105- ``` bash
106- docker run -it --rm --network netperf --hostname netperf tomopiro/netperf netserver -D -L 0.0.0.0
107- ```
108-
95+ ` ` ` bash
96+ docker run -it --rm --network netperf --hostname netperf tomopiro/netperf netserver -D -L 0.0.0.0
97+ ` ` `
109983. Run netperf client and check performance.
110-
111- ``` bash
112- docker run -it --rm --network netperf tomopiro/netperf netperf -H netperf
113- ```
99+ ` ` ` bash
100+ docker run -it --rm --network netperf tomopiro/netperf netperf -H netperf
101+ ` ` `
0 commit comments