C-Docs: New structure
[csit.git] / docs / content / methodology / test / hoststack / udpip_with_iperf3.md
1 ---
2 title: "UDP/IP with iperf3"
3 weight: 3
4 ---
5
6 # UDP/IP with iperf3
7
8 [iperf3 goodput measurement tool](https://github.com/esnet/iperf)
9 is used for measuring the maximum attainable goodput of the VPP Host
10 Stack connection across two instances of VPP running on separate DUT
11 nodes. iperf3 is a popular open source tool for active measurements
12 of the maximum achievable goodput on IP networks.
13
14 Because iperf3 utilizes the POSIX socket interface APIs, the current
15 test configuration utilizes the LD_PRELOAD mechanism in the linux
16 kernel to connect iperf3 to the VPP Host Stack using the VPP
17 Communications Library (VCL) LD_PRELOAD library (libvcl_ldpreload.so).
18
19 In the future, a forked version of iperf3 which has been modified to
20 directly use the VCL application APIs may be added to determine the
21 difference in performance of 'VCL Native' applications versus utilizing
22 LD_PRELOAD which inherently has more overhead and other limitations.
23
24 The test configuration is as follows:
25
26            DUT1              Network               DUT2
27     [ iperf3-client -> VPP1 ]=======[ VPP2 -> iperf3-server]
28
29 where,
30
31 1. iperf3 server attaches to VPP2 and LISTENs on VPP2:UDP port 5201.
32 2. iperf3 client attaches to VPP1 and transmits one or more streams
33    of packets to VPP2:UDP port 5201.
34 3. iperf3 client transmits a uni-directional stream as fast as the
35    VPP Host Stack allows to the iperf3 server for the test duration.
36 4. At the end of the test the iperf3 client emits the goodput
37    measurements for all streams and the sum of all streams.
38
39 Test cases include 1 and 10 Streams with a 20 second test duration
40 with the VPP Host Stack using the UDP transport layer..
41
42 Note: iperf3 is single threaded, so it is expected that the 10 stream
43 test shows little or no performance improvement due to
44 multi-thread/multi-core execution.