aboutsummaryrefslogtreecommitdiffstats
path: root/docs/testing/user/userguide/quickstart_docker.rst
blob: 2c9f76230d3073a8fd987bcf5a44b317b3e3aebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. SPDX-License-Identifier: CC-BY-4.0
.. (c) Cisco Systems, Inc

===========================================
NFVbench Installation and Quick Start Guide
===========================================

.. _docker_installation:

Make sure you satisfy the `hardware and software requirements <requirements>` before you start .


1. Container installation
-------------------------

To pull the latest NFVbench container image:

.. code-block:: bash

    docker pull opnfv/nfvbench/nfvbench

2. Docker Container configuration
---------------------------------

The NFVbench container requires the following Docker options to operate properly.

+------------------------------------------------------+------------------------------------------------------+
| Docker options                                       | Description                                          |
+======================================================+======================================================+
| -v /lib/modules/$(uname -r):/lib/modules/$(uname -r) | needed by kernel modules in the container            |
+------------------------------------------------------+------------------------------------------------------+
| -v /dev:/dev                                         | needed by kernel modules in the container            |
+------------------------------------------------------+------------------------------------------------------+
| -v $PWD:/tmp/nfvbench                                | optional but recommended to pass files between the   |
|                                                      | host and the docker space (see examples below)       |
|                                                      | Here we map the current directory on the host to the |
|                                                      | /tmp/nfvbench director in the container but any      |
|                                                      | other similar mapping can work as well               |
+------------------------------------------------------+------------------------------------------------------+
| --net=host                                           | (optional) needed if you run the NFVbench REST       |
|                                                      | server in the container (or use any appropriate      |
|                                                      | docker network mode other than "host")               |
+------------------------------------------------------+------------------------------------------------------+
| --privilege                                          | (optional) required if SELinux is enabled on the host|
+------------------------------------------------------+------------------------------------------------------+

It can be convenient to write a shell script (or an alias) to automatically insert the necessary options.

3. Start the Docker container
-----------------------------
As for any Docker container, you can execute NFVbench measurement sessions using a temporary container ("docker run" - which exits after each NFVbench run)
or you can decide to run the NFVbench container in the background then execute one or more NFVbench measurement sessions on that container ("docker exec").

The former approach is simpler to manage (since each container is started and terminated after each command) but incurs a small delay at start time (several seconds).
The second approach is more responsive as the delay is only incurred once when starting the container.

We will take the second approach and start the NFVbench container in detached mode with the name "nfvbench" (this works with bash, prefix with "sudo" if you do not use the root login)

.. code-block:: bash

    docker run --detach --net=host --privileged -v $PWD:/tmp/nfvbench -v /dev:/dev -v /lib/modules/$(uname -r):/lib/modules/$(uname -r) --name nfvbench opnfv/nfvbench tail -f /dev/null

The tail command simply prevents the container from exiting.

The create an alias to make it easy to execute nfvbench commands directly from the host shell prompt:

.. code-block:: bash

    alias nfvbench='docker exec -it nfvbench nfvbench'

The next to last "nfvbench" refers to the name of the container while the last "nfvbench" refers to the NFVbench binary that is available to run in the container.

To verify it is working:

.. code-block:: bash

    nfvbench --version
    nfvbench --help


4. NFVbench configuration
-------------------------

Create a new file containing the minimal configuration for NFVbench, we can call it any name, for example "my_nfvbench.cfg" and paste the following yaml template in the file:

.. code-block:: bash

  openrc_file:
  traffic_generator:
      generator_profile:
          - name: trex-local
            tool: TRex
            ip: 127.0.0.1
            cores: 3
            interfaces:
              - port: 0
                switch_port:
                pci:
              - port: 1
                switch_port:
                pci:
            intf_speed: 10Gbps

NFVbench requires an ``openrc`` file to connect to OpenStack using the OpenStack API. This file can be downloaded from the OpenStack Horizon dashboard (refer to the OpenStack documentation on how to
retrieve the openrc file). The file pathname in the container must be stored in the "openrc_file" property. If it is stored on the host in the current directory, its full pathname must start with /tmp/nfvbench (since the current directory is mapped to /tmp/nfvbench in the container).

The required configuration is the PCI address of the 2 physical interfaces that will be used by the traffic generator. The PCI address can be obtained for example by using the "lspci" Linux command. For example:

.. code-block:: bash

    [root@sjc04-pod6-build ~]# lspci | grep 710
    0a:00.0 Ethernet controller: Intel Corporation Ethernet Controller X710 for 10GbE SFP+ (rev 01)
    0a:00.1 Ethernet controller: Intel Corporation Ethernet Controller X710 for 10GbE SFP+ (rev 01)
    0a:00.2 Ethernet controller: Intel Corporation Ethernet Controller X710 for 10GbE SFP+ (rev 01)
    0a:00.3 Ethernet controller: Intel Corporation Ethernet Controller X710 for 10GbE SFP+ (rev 01)


Example of edited configuration with an OpenStack RC file stored in the current directory with the "openrc" name, and
PCI addresses "0a:00.0" and "0a:00.1" (first 2 ports of the quad port NIC):

.. code-block:: bash

  openrc_file: /tmp/nfvbench/openrc
  traffic_generator:
      generator_profile:
          - name: trex-local
            tool: TRex
            ip: 127.0.0.1
            cores: 3
            interfaces:
              - port: 0
                switch_port:
                pci: 0a:00.0
              - port: 1
                switch_port:
                pci: 0a:00.1
            intf_speed: 10Gbps

Alternatively, the full template with comments can be obtained using the --show-default-config option in yaml format:

.. code-block:: bash

    nfvbench --show-default-config > my_nfvbench.cfg

Edit the nfvbench.cfg file to only keep those properties that need to be modified (preserving the nesting)


5. Upload the NFVbench loopback VM image to OpenStack
-----------------------------------------------------
[TBP URL to NFVbench VM image in the OPNFV artifact repository]


6. Run NFVbench
---------------

To do a single run at 5000pps bi-directional using the PVP packet path:

.. code-block:: bash

   nfvbench -c /tmp/nfvbench/my_nfvbench.cfg --rate 5kpps

NFVbench options used:

* ``-c /tmp/nfvbench/my_nfvbench.cfg`` : specify the config file to use (this must reflect the file path from inside the container)
* ``--rate 5kpps`` : specify rate of packets for test using the kpps unit (thousands of packets per second)

This should produce a result similar to this (a simple run with the above options should take less than 5 minutes):

.. code-block:: none

    ========== nfvbench Summary ==========
    Date: 2016-10-05 21:43:30
    nfvbench version 0.0.1.dev128
    Mercury version: 5002
    Benchmarks:
    > Networks:
      > N9K version: {'10.28.108.249': {'BIOS': '07.34', 'NXOS': '7.0(3)I2(2b)'}, '10.28.108.248': {'BIOS': '07.34', 'NXOS': '7.0(3)I2(2b)'}}
        Traffic generator profile: trex-c45
        Traffic generator tool: TRex
        Traffic generator API version: {u'build_date': u'Aug 24 2016', u'version': u'v2.08', u'built_by': u'hhaim', u'build_time': u'16:32:13'}
        Flows:
        > PVP:
          VPP version: {u'sjc04-pod3-compute-6': 'v16.06-rc1~27-gd175728'}
          > Bidirectional: False
            Profile: traffic_profile_64B

               +-----------------+-------------+----------------------+----------------------+----------------------+
               |  L2 Frame Size  |  Drop Rate  |   Avg Latency (usec) |   Min Latency (usec) |   Max Latency (usec) |
               +=================+=============+======================+======================+======================+
               |       64        |   0.0000%   |              22.1885 |                   10 |                  503 |
               +-----------------+-------------+----------------------+----------------------+----------------------+


            > L2 frame size: 64
              Flow analysis duration: 70.0843 seconds

              Run Config:

               +-------------+------------------+--------------+-----------+
               |  Direction  |   Duration (sec) |     Rate     |   Rate    |
               +=============+==================+==============+===========+
               |   Forward   |               60 | 1.0080 Mbps  | 1,500 pps |
               +-------------+------------------+--------------+-----------+
               |   Reverse   |               60 | 672.0000 bps |   1 pps   |
               +-------------+------------------+--------------+-----------+

               +----------------------+----------+-----------------+---------------+---------------+-----------------+---------------+---------------+
               |      Interface       |  Device  |  Packets (fwd)  |   Drops (fwd) |  Drop% (fwd)  |   Packets (rev) |   Drops (rev) |  Drop% (rev)  |
               +======================+==========+=================+===============+===============+=================+===============+===============+
               |  traffic-generator   |   trex   |     90,063      |               |               |              61 |             0 |       -       |
               +----------------------+----------+-----------------+---------------+---------------+-----------------+---------------+---------------+
               |  traffic-generator   |   trex   |     90,063      |             0 |       -       |              61 |               |               |
               +----------------------+----------+-----------------+---------------+---------------+-----------------+---------------+---------------+

7. Terminating the NFVbench container
-------------------------------------
When no longer needed, the container can be terminated using the usual docker commands:

.. code-block:: bash

    docker kill nfvbench
    docker rm nfvbench