xref: /dpdk/doc/guides/testpmd_app_ug/run_app.rst (revision 665b49c51639a10c553433bc2bcd85c7331c631e)
1..  SPDX-License-Identifier: BSD-3-Clause
2    Copyright(c) 2010-2014 Intel Corporation.
3
4Running the Application
5=======================
6
7EAL Command-line Options
8------------------------
9
10Please refer to :doc:`EAL parameters (Linux) <../linux_gsg/linux_eal_parameters>`
11or :doc:`EAL parameters (FreeBSD) <../freebsd_gsg/freebsd_eal_parameters>` for
12a list of available EAL command-line options.
13
14
15Testpmd Command-line Options
16----------------------------
17
18The following are the command-line options for the testpmd applications.
19They must be separated from the EAL options, shown in the previous section, with a ``--`` separator:
20
21.. code-block:: console
22
23    sudo ./dpdk-testpmd -l 0-3 -n 4 -- -i --portmask=0x1 --nb-cores=2
24
25The command line options are:
26
27*   ``-i, --interactive``
28
29    Run testpmd in interactive mode.
30    In this mode, the testpmd starts with a prompt that can be used to start and stop forwarding,
31    configure the application and display stats on the current packet processing session.
32    See :ref:`testpmd_runtime` for more details.
33
34    In non-interactive mode,
35    the application starts with the configuration specified on the command-line and
36    immediately enters forwarding mode.
37
38*   ``-h, --help``
39
40    Display a help message and quit.
41
42*   ``-a, --auto-start``
43
44    Start forwarding on initialization.
45
46*   ``--tx-first``
47
48    Start forwarding, after sending a burst of packets first.
49
50.. Note::
51
52   This flag should be only used in non-interactive mode.
53
54*   ``--stats-period PERIOD``
55
56    Display statistics every PERIOD seconds, if interactive mode is disabled.
57    The default value is 0, which means that the statistics will not be displayed.
58
59*   ``--display-xstats xstat_name1[,...]``
60
61    Display comma-separated list of extended statistics every PERIOD seconds
62    as specified in ``--stats-period`` or when used with interactive commands
63    that show Rx/Tx statistics (i.e. 'show port stats').
64
65*   ``--nb-cores=N``
66
67    Set the number of forwarding cores,
68    where 1 <= N <= "number of cores" or ``RTE_MAX_LCORE`` from the configuration file.
69    The default value is 1.
70
71*   ``--nb-ports=N``
72
73    Set the number of forwarding ports,
74    where 1 <= N <= "number of ports" on the board or ``RTE_MAX_ETHPORTS`` from the configuration file.
75    The default value is the number of ports on the board.
76
77*   ``--coremask=0xXX``
78
79    Set the hexadecimal bitmask of the cores running the packet forwarding test.
80    The main lcore is reserved for command line parsing only and cannot be masked on for packet forwarding.
81
82*   ``--portmask=0xXX``
83
84    Set the hexadecimal bitmask of the ports used by the packet forwarding test.
85
86*   ``--portlist=X``
87
88      Set the forwarding ports based on the user input used by the packet forwarding test.
89      '-' denotes a range of ports to set including the two specified port IDs
90      ',' separates multiple port values.
91      Possible examples like --portlist=0,1 or --portlist=0-2 or --portlist=0,1-2 etc
92
93*   ``--numa``
94
95    Enable NUMA-aware allocation of RX/TX rings and of RX memory buffers
96    (mbufs). [Default setting]
97
98*   ``--no-numa``
99
100    Disable NUMA-aware allocation of RX/TX rings and of RX memory buffers (mbufs).
101
102*   ``--port-numa-config=(port,socket)[,(port,socket)]``
103
104    Specify the socket on which the memory pool to be used by the port will be allocated.
105
106*   ``--ring-numa-config=(port,flag,socket)[,(port,flag,socket)]``
107
108    Specify the socket on which the TX/RX rings for the port will be allocated.
109    Where flag is 1 for RX, 2 for TX, and 3 for RX and TX.
110
111*   ``--socket-num=N``
112
113    Set the socket from which all memory is allocated in NUMA mode,
114    where 0 <= N < number of sockets on the board.
115
116*   ``--mbuf-size=N[,N1[,...Nn]``
117
118    Set the data size of the mbufs used to N bytes, where N < 65536.
119    The default value is 2048. If multiple mbuf-size values are specified the
120    extra memory pools will be created for allocating mbufs to receive packets
121    with buffer splitting features.
122
123*   ``--total-num-mbufs=N``
124
125    Set the number of mbufs to be allocated in the mbuf pools, where N > 1024.
126
127*   ``--max-pkt-len=N``
128
129    Set the maximum packet size to N bytes, where N >= 64. The default value is 1518.
130
131*   ``--max-lro-pkt-size=N``
132
133    Set the maximum LRO aggregated packet size to N bytes, where N >= 64.
134
135*   ``--eth-peers-configfile=name``
136
137    Use a configuration file containing the Ethernet addresses of the peer ports.
138    The configuration file should contain the Ethernet addresses on separate lines::
139
140       XX:XX:XX:XX:XX:01
141       XX:XX:XX:XX:XX:02
142       ...
143
144*   ``--eth-peer=N,XX:XX:XX:XX:XX:XX``
145
146    Set the MAC address ``XX:XX:XX:XX:XX:XX`` of the peer port N,
147    where 0 <= N < ``RTE_MAX_ETHPORTS``.
148
149*   ``--tx-ip=SRC,DST``
150
151    Set the source and destination IP address used when doing transmit only test.
152    The defaults address values are source 198.18.0.1 and
153    destination 198.18.0.2. These are special purpose addresses
154    reserved for benchmarking (RFC 5735).
155
156*   ``--tx-udp=SRC[,DST]``
157
158    Set the source and destination UDP port number for transmit test only test.
159    The default port is the port 9 which is defined for the discard protocol
160    (RFC 863).
161
162*   ``--disable-crc-strip``
163
164    Disable hardware CRC stripping.
165
166*   ``--enable-lro``
167
168    Enable large receive offload.
169
170*   ``--enable-rx-cksum``
171
172    Enable hardware RX checksum offload.
173
174*   ``--enable-scatter``
175
176    Enable scatter (multi-segment) RX.
177
178*   ``--enable-hw-vlan``
179
180    Enable hardware VLAN.
181
182*   ``--enable-hw-vlan-filter``
183
184    Enable hardware VLAN filter.
185
186*   ``--enable-hw-vlan-strip``
187
188    Enable hardware VLAN strip.
189
190*   ``--enable-hw-vlan-extend``
191
192    Enable hardware VLAN extend.
193
194*   ``--enable-hw-qinq-strip``
195
196    Enable hardware QINQ strip.
197
198*   ``--enable-drop-en``
199
200    Enable per-queue packet drop for packets with no descriptors.
201
202*   ``--disable-rss``
203
204    Disable RSS (Receive Side Scaling).
205
206*   ``--port-topology=mode``
207
208    Set port topology, where mode is ``paired`` (the default), ``chained`` or ``loop``.
209
210    In ``paired`` mode, the forwarding is between pairs of ports, for example: (0,1), (2,3), (4,5).
211
212    In ``chained`` mode, the forwarding is to the next available port in the port mask, for example: (0,1), (1,2), (2,0).
213
214    The ordering of the ports can be changed using the portlist testpmd runtime function.
215
216    In ``loop`` mode, ingress traffic is simply transmitted back on the same interface.
217
218*   ``--forward-mode=mode``
219
220    Set the forwarding mode where ``mode`` is one of the following::
221
222       io (the default)
223       mac
224       macswap
225       flowgen
226       rxonly
227       txonly
228       csum
229       icmpecho
230       ieee1588
231       tm
232       noisy
233       5tswap
234       shared-rxq
235
236*   ``--rss-ip``
237
238    Set RSS functions for IPv4/IPv6 only.
239
240*   ``--rss-udp``
241
242    Set RSS functions for IPv4/IPv6 and UDP.
243
244*   ``--rxq=N``
245
246    Set the number of RX queues per port to N, where 1 <= N <= 65535.
247    The default value is 1.
248
249*   ``--rxd=N``
250
251    Set the number of descriptors in the RX rings to N, where N > 0.
252    The default value is 128.
253
254*   ``--txq=N``
255
256    Set the number of TX queues per port to N, where 1 <= N <= 65535.
257    The default value is 1.
258
259*   ``--txd=N``
260
261    Set the number of descriptors in the TX rings to N, where N > 0.
262    The default value is 512.
263
264*   ``--hairpinq=N``
265
266    Set the number of hairpin queues per port to N, where 1 <= N <= 65535.
267    The default value is 0. The number of hairpin queues are added to the
268    number of TX queues and to the number of RX queues. then the first
269    RX hairpin is binded to the first TX hairpin, the second RX hairpin is
270    binded to the second TX hairpin and so on. The index of the first
271    RX hairpin queue is the number of RX queues as configured using --rxq.
272    The index of the first TX hairpin queue is the number of TX queues
273    as configured using --txq.
274
275*   ``--burst=N``
276
277    Set the number of packets per burst to N, where 1 <= N <= 512.
278    The default value is 32.
279    If set to 0, driver default is used if defined. Else, if driver
280    default is not defined, default of 32 is used.
281
282*   ``--flowgen-clones=N``
283
284    Set the number of each packet clones to be sent in `flowgen` mode.
285    Sending clones reduces host CPU load on creating packets and may help
286    in testing extreme speeds or maxing out Tx packet performance.
287    N should be not zero, but less than 'burst' parameter.
288
289*   ``--flowgen-flows=N``
290
291    Set the number of flows to be generated in `flowgen` mode, where
292    1 <= N <= INT32_MAX.
293
294*   ``--mbcache=N``
295
296    Set the cache of mbuf memory pools to N, where 0 <= N <= 512.
297    The default value is 16.
298
299*   ``--rxpt=N``
300
301    Set the prefetch threshold register of RX rings to N, where N >= 0.
302    The default value is 8.
303
304*   ``--rxht=N``
305
306    Set the host threshold register of RX rings to N, where N >= 0.
307    The default value is 8.
308
309*   ``--rxfreet=N``
310
311    Set the free threshold of RX descriptors to N, where 0 <= N < value of --rxd.
312    The default value is 0.
313
314*   ``--rxwt=N``
315
316    Set the write-back threshold register of RX rings to N, where N >= 0.
317    The default value is 4.
318
319*   ``--txpt=N``
320
321    Set the prefetch threshold register of TX rings to N, where N >= 0.
322    The default value is 36.
323
324*   ``--txht=N``
325
326    Set the host threshold register of TX rings to N, where N >= 0.
327    The default value is 0.
328
329*   ``--txwt=N``
330
331    Set the write-back threshold register of TX rings to N, where N >= 0.
332    The default value is 0.
333
334*   ``--txfreet=N``
335
336    Set the transmit free threshold of TX rings to N, where 0 <= N <= value of ``--txd``.
337    The default value is 0.
338
339*   ``--txrst=N``
340
341    Set the transmit RS bit threshold of TX rings to N, where 0 <= N <= value of ``--txd``.
342    The default value is 0.
343
344*   ``--no-flush-rx``
345
346    Don't flush the RX streams before starting forwarding. Used mainly with the PCAP PMD.
347
348*   ``--rxoffs=X[,Y]``
349
350    Set the offsets of packet segments on receiving if split
351    feature is engaged. Affects only the queues configured
352    with split offloads (currently BUFFER_SPLIT is supported only).
353
354*   ``--rxpkts=X[,Y]``
355
356    Set the length of segments to scatter packets on receiving if split
357    feature is engaged. Affects only the queues configured
358    with split offloads (currently BUFFER_SPLIT is supported only).
359    Optionally the multiple memory pools can be specified with --mbuf-size
360    command line parameter and the mbufs to receive will be allocated
361    sequentially from these extra memory pools.
362
363*   ``--txpkts=X[,Y]``
364
365    Set TX segment sizes or total packet length. Valid for ``tx-only``
366    and ``flowgen`` forwarding modes.
367
368* ``--multi-rx-mempool``
369
370    Enable multiple mbuf pools per Rx queue.
371
372*   ``--txonly-multi-flow``
373
374    Generate multiple flows in txonly mode.
375
376*   ``--rxq-share=[X]``
377
378    Create queues in shared Rx queue mode if device supports.
379    Shared Rx queues are grouped per X ports. X defaults to UINT32_MAX,
380    implies all ports join share group 1. Forwarding engine "shared-rxq"
381    should be used for shared Rx queues. This engine does Rx only and
382    update stream statistics accordingly.
383
384*   ``--eth-link-speed``
385
386    Set a forced link speed to the ethernet port::
387
388       10 - 10Mbps (not supported)
389       100 - 100Mbps (not supported)
390       1000 - 1Gbps
391       10000 - 10Gbps
392       25000 - 25Gbps
393       40000 - 40Gbps
394       50000 - 50Gbps
395       100000 - 100Gbps
396       200000 - 200Gbps
397       ...
398
399*   ``--disable-link-check``
400
401    Disable check on link status when starting/stopping ports.
402
403*   ``--disable-device-start``
404
405    Do not automatically start all ports. This allows testing
406    configuration of rx and tx queues before device is started
407    for the first time.
408
409*   ``--no-lsc-interrupt``
410
411    Disable LSC interrupts for all ports, even those supporting it.
412
413*   ``--no-rmv-interrupt``
414
415    Disable RMV interrupts for all ports, even those supporting it.
416
417*   ``--bitrate-stats=N``
418
419    Set the logical core N to perform bitrate calculation.
420
421*   ``--print-event <unknown|intr_lsc|queue_state|intr_reset|vf_mbox|macsec|intr_rmv|dev_probed|dev_released|flow_aged|err_recovering|recovery_success|recovery_failed|all>``
422
423    Enable printing the occurrence of the designated event. Using all will
424    enable all of them.
425
426*   ``--mask-event <unknown|intr_lsc|queue_state|intr_reset|vf_mbox|macsec|intr_rmv|dev_probed|dev_released|flow_aged|err_recovering|recovery_success|recovery_failed|all>``
427
428    Disable printing the occurrence of the designated event. Using all will
429    disable all of them.
430
431*   ``--flow-isolate-all``
432
433    Providing this parameter requests flow API isolated mode on all ports at
434    initialization time. It ensures all traffic is received through the
435    configured flow rules only (see flow command).
436
437    Ports that do not support this mode are automatically discarded.
438
439*   ``--disable-flow-flush``
440
441    Disable port flow flush when stopping port.
442    This allows testing keep flow rules or shared flow objects across restart.
443
444*   ``--tx-offloads=0xXXXXXXXX``
445
446    Set the hexadecimal bitmask of TX queue offloads.
447    The default value is 0.
448
449*   ``--rx-offloads=0xXXXXXXXX``
450
451    Set the hexadecimal bitmask of RX queue offloads.
452    The default value is 0.
453
454*   ``--hot-plug``
455
456    Enable device event monitor mechanism for hotplug.
457
458*   ``--vxlan-gpe-port=N``
459
460    Set the UDP port number of tunnel VXLAN-GPE to N.
461    The default value is 4790.
462
463*   ``--geneve-parsed-port=N``
464
465    Set the UDP port number that is used for parsing the GENEVE protocol to N.
466    HW may be configured with another tunnel Geneve port.
467    The default value is 6081.
468
469*   ``--mlockall``
470
471    Enable locking all memory.
472
473*   ``--no-mlockall``
474
475    Disable locking all memory.
476
477*   ``--mp-alloc <native|anon|xmem|xmemhuge>``
478
479    Select mempool allocation mode:
480
481    * native: create and populate mempool using native DPDK memory
482    * anon: create mempool using native DPDK memory, but populate using
483      anonymous memory
484    * xmem: create and populate mempool using externally and anonymously
485      allocated area
486    * xmemhuge: create and populate mempool using externally and anonymously
487      allocated hugepage area
488
489*   ``--noisy-tx-sw-buffer-size``
490
491    Set the number of maximum elements  of the FIFO queue to be created
492    for buffering packets. Only available with the noisy forwarding mode.
493    The default value is 0.
494
495*   ``--noisy-tx-sw-buffer-flushtime=N``
496
497    Set the time before packets in the FIFO queue is flushed.
498    Only available with the noisy forwarding mode. The default value is 0.
499
500*   ``--noisy-lkup-memory=N``
501
502    Set the size of the noisy neighbor simulation memory buffer in MB to N.
503    Only available with the noisy forwarding mode. The default value is 0.
504
505
506*   ``--noisy-lkup-num-reads=N``
507
508    Set the number of reads to be done in noisy neighbor simulation memory buffer to N.
509    Only available with the noisy forwarding mode. The default value is 0.
510
511*   ``--noisy-lkup-num-writes=N``
512
513    Set the number of writes to be done in noisy neighbor simulation memory buffer to N.
514    Only available with the noisy forwarding mode. The default value is 0.
515
516*   ``--noisy-lkup-num-reads-writes=N``
517
518    Set the number of r/w accesses to be done in noisy neighbor simulation memory buffer to N.
519    Only available with the noisy forwarding mode. The default value is 0.
520
521*   ``--no-iova-contig``
522
523    Enable to create mempool which is not IOVA contiguous. Valid only with --mp-alloc=anon.
524    The default value is 0.
525
526*   ``--rx-mq-mode``
527
528    Set the hexadecimal bitmask of RX multi queue mode which can be enabled.
529    The default value is 0x7::
530
531       RTE_ETH_MQ_RX_RSS_FLAG | RTE_ETH_MQ_RX_DCB_FLAG | RTE_ETH_MQ_RX_VMDQ_FLAG
532
533*   ``--record-core-cycles``
534
535    Enable measurement of CPU cycles per packet.
536
537*   ``--record-burst-stats``
538
539    Enable display of RX and TX burst stats.
540
541*   ``--hairpin-mode=0xXXXX``
542
543    Set the hairpin port configuration with bitmask, only valid when hairpin queues number is set::
544
545	bit 18 - hairpin TX queues will use RTE memory
546	bit 16 - hairpin TX queues will use locked device memory
547	bit 13 - hairpin RX queues will use RTE memory
548	bit 12 - hairpin RX queues will use locked device memory
549	bit 9 - force memory settings of hairpin TX queue
550	bit 8 - force memory settings of hairpin RX queue
551	bit 4 - explicit Tx flow rule
552	bit 1 - two hairpin ports paired
553	bit 0 - two hairpin ports loop
554
555    The default value is 0. Hairpin will use single port mode and implicit Tx flow mode.
556
557
558Testpmd Multi-Process Command-line Options
559~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
560
561The following are the command-line options for testpmd multi-process support:
562
563*   primary process:
564
565.. code-block:: console
566
567    sudo ./dpdk-testpmd -a xxx --proc-type=auto -l 0-1 -- -i --rxq=4 --txq=4 \
568        --num-procs=2 --proc-id=0
569
570*   secondary process:
571
572.. code-block:: console
573
574    sudo ./dpdk-testpmd -a xxx --proc-type=auto -l 2-3 -- -i --rxq=4 --txq=4 \
575        --num-procs=2 --proc-id=1
576
577The command line options are:
578
579*   ``--num-procs=N``
580
581    The number of processes which will be used.
582
583*   ``--proc-id=ID``
584
585    The ID of the current process (ID < num-procs). ID should be different in
586    primary process and secondary process, which starts from '0'.
587
588Calculation rule for queue:
589All queues are allocated to different processes based on ``proc_num`` and
590``proc_id``.
591Calculation rule for the testpmd to allocate queues to each process:
592*   start(queue start id) = proc_id * nb_q / num_procs;
593
594*   end(queue end id) = start + nb_q / num_procs;
595
596For example, if testpmd is configured to have 4 Tx and Rx queues,
597queues 0 and 1 will be used by the primary process and
598queues 2 and 3 will be used by the secondary process.
599
600The number of queues should be a multiple of the number of processes. If not,
601redundant queues will exist after queues are allocated to processes. If RSS
602is enabled, packet loss occurs when traffic is sent to all processes at the same
603time. Some traffic goes to redundant queues and cannot be forwarded.
604
605All the dev ops is supported in primary process. While secondary process is
606not permitted to allocate or release shared memory, so some ops are not supported
607as follows:
608
609- ``dev_configure``
610- ``dev_start``
611- ``dev_stop``
612- ``dev_reset``
613- ``rx_queue_setup``
614- ``tx_queue_setup``
615- ``rx_queue_release``
616- ``tx_queue_release``
617
618So, any command from testpmd which calls those APIs will not be supported in
619secondary process, like:
620
621.. code-block:: console
622
623    port config all rxq|txq|rxd|txd <value>
624    port config <port_id> rx_offload xxx on/off
625    port config <port_id> tx_offload xxx on/off
626
627etc.
628
629When secondary is running, port in primary is not permitted to be stopped.
630Reconfigure operation is only valid in primary.
631
632Stats is supported, stats will not change when one quits and starts, as they
633share the same buffer to store the stats. Flow rules are maintained in process
634level: primary and secondary has its own flow list (but one flow list in HW).
635The two can see all the queues, so setting the flow rules for the other is OK.
636But in the testpmd primary process receiving or transmitting packets from the
637queue allocated for secondary process is not permitted, and same for secondary
638process.
639
640Flow API and RSS are supported.
641