711683fa112014f35a6d05e51228fe77dd53f9a1
[dpdk.git] / doc / guides / testpmd_app_ug / testpmd_funcs.rst
1 ..  SPDX-License-Identifier: BSD-3-Clause
2     Copyright(c) 2010-2016 Intel Corporation.
3
4 .. _testpmd_runtime:
5
6 Testpmd Runtime Functions
7 =========================
8
9 Where the testpmd application is started in interactive mode, (``-i|--interactive``),
10 it displays a prompt that can be used to start and stop forwarding,
11 configure the application, display statistics (including the extended NIC
12 statistics aka xstats) , set the Flow Director and other tasks::
13
14    testpmd>
15
16 The testpmd prompt has some, limited, readline support.
17 Common bash command-line functions such as ``Ctrl+a`` and ``Ctrl+e`` to go to the start and end of the prompt line are supported
18 as well as access to the command history via the up-arrow.
19
20 There is also support for tab completion.
21 If you type a partial command and hit ``<TAB>`` you get a list of the available completions:
22
23 .. code-block:: console
24
25    testpmd> show port <TAB>
26
27        info [Mul-choice STRING]: show|clear port info|stats|xstats|fdir|stat_qmap|dcb_tc X
28        info [Mul-choice STRING]: show|clear port info|stats|xstats|fdir|stat_qmap|dcb_tc all
29        stats [Mul-choice STRING]: show|clear port info|stats|xstats|fdir|stat_qmap|dcb_tc X
30        stats [Mul-choice STRING]: show|clear port info|stats|xstats|fdir|stat_qmap|dcb_tc all
31        ...
32
33
34 .. note::
35
36    Some examples in this document are too long to fit on one line are shown wrapped at `"\\"` for display purposes::
37
38       testpmd> set flow_ctrl rx (on|off) tx (on|off) (high_water) (low_water) \
39                (pause_time) (send_xon) (port_id)
40
41 In the real ``testpmd>`` prompt these commands should be on a single line.
42
43 Help Functions
44 --------------
45
46 The testpmd has on-line help for the functions that are available at runtime.
47 These are divided into sections and can be accessed using help, help section or help all:
48
49 .. code-block:: console
50
51    testpmd> help
52
53        help control    : Start and stop forwarding.
54        help display    : Displaying port, stats and config information.
55        help config     : Configuration information.
56        help ports      : Configuring ports.
57        help registers  : Reading and setting port registers.
58        help filters    : Filters configuration help.
59        help all        : All of the above sections.
60
61
62 Command File Functions
63 ----------------------
64
65 To facilitate loading large number of commands or to avoid cutting and pasting where not
66 practical or possible testpmd supports alternative methods for executing commands.
67
68 * If started with the ``--cmdline-file=FILENAME`` command line argument testpmd
69   will execute all CLI commands contained within the file immediately before
70   starting packet forwarding or entering interactive mode.
71
72 .. code-block:: console
73
74    ./dpdk-testpmd -n4 -r2 ... -- -i --cmdline-file=/home/ubuntu/flow-create-commands.txt
75    Interactive-mode selected
76    CLI commands to be read from /home/ubuntu/flow-create-commands.txt
77    Configuring Port 0 (socket 0)
78    Port 0: 7C:FE:90:CB:74:CE
79    Configuring Port 1 (socket 0)
80    Port 1: 7C:FE:90:CB:74:CA
81    Checking link statuses...
82    Port 0 Link Up - speed 10000 Mbps - full-duplex
83    Port 1 Link Up - speed 10000 Mbps - full-duplex
84    Done
85    Flow rule #0 created
86    Flow rule #1 created
87    ...
88    ...
89    Flow rule #498 created
90    Flow rule #499 created
91    Read all CLI commands from /home/ubuntu/flow-create-commands.txt
92    testpmd>
93
94
95 * At run-time additional commands can be loaded in bulk by invoking the ``load FILENAME``
96   command.
97
98 .. code-block:: console
99
100    testpmd> load /home/ubuntu/flow-create-commands.txt
101    Flow rule #0 created
102    Flow rule #1 created
103    ...
104    ...
105    Flow rule #498 created
106    Flow rule #499 created
107    Read all CLI commands from /home/ubuntu/flow-create-commands.txt
108    testpmd>
109
110
111 In all cases output from any included command will be displayed as standard output.
112 Execution will continue until the end of the file is reached regardless of
113 whether any errors occur.  The end user must examine the output to determine if
114 any failures occurred.
115
116
117 Control Functions
118 -----------------
119
120 start
121 ~~~~~
122
123 Start packet forwarding with current configuration::
124
125    testpmd> start
126
127 start tx_first
128 ~~~~~~~~~~~~~~
129
130 Start packet forwarding with current configuration after sending specified number of bursts of packets::
131
132    testpmd> start tx_first (""|burst_num)
133
134 The default burst number is 1 when ``burst_num`` not presented.
135
136 stop
137 ~~~~
138
139 Stop packet forwarding, and display accumulated statistics::
140
141    testpmd> stop
142
143 quit
144 ~~~~
145
146 Quit to prompt::
147
148    testpmd> quit
149
150
151 Display Functions
152 -----------------
153
154 The functions in the following sections are used to display information about the
155 testpmd configuration or the NIC status.
156
157 show port
158 ~~~~~~~~~
159
160 Display information for a given port or all ports::
161
162    testpmd> show port (info|summary|stats|xstats|fdir|stat_qmap|dcb_tc) (port_id|all)
163
164 The available information categories are:
165
166 * ``info``: General port information such as MAC address.
167
168 * ``summary``: Brief port summary such as Device Name, Driver Name etc.
169
170 * ``stats``: RX/TX statistics.
171
172 * ``xstats``: RX/TX extended NIC statistics.
173
174 * ``fdir``: Flow Director information and statistics.
175
176 * ``stat_qmap``: Queue statistics mapping.
177
178 * ``dcb_tc``: DCB information such as TC mapping.
179
180 For example:
181
182 .. code-block:: console
183
184    testpmd> show port info 0
185
186    ********************* Infos for port 0 *********************
187
188    MAC address: XX:XX:XX:XX:XX:XX
189    Connect to socket: 0
190    memory allocation on the socket: 0
191    Link status: up
192    Link speed: 40000 Mbps
193    Link duplex: full-duplex
194    Promiscuous mode: enabled
195    Allmulticast mode: disabled
196    Maximum number of MAC addresses: 64
197    Maximum number of MAC addresses of hash filtering: 0
198    VLAN offload:
199        strip on, filter on, extend off, qinq strip off
200    Redirection table size: 512
201    Supported flow types:
202      ipv4-frag
203      ipv4-tcp
204      ipv4-udp
205      ipv4-sctp
206      ipv4-other
207      ipv6-frag
208      ipv6-tcp
209      ipv6-udp
210      ipv6-sctp
211      ipv6-other
212      l2_payload
213      port
214      vxlan
215      geneve
216      nvgre
217      vxlan-gpe
218
219 show port (module_eeprom|eeprom)
220 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
221
222 Display the EEPROM information of a port::
223
224    testpmd> show port (port_id) (module_eeprom|eeprom)
225
226 show port rss reta
227 ~~~~~~~~~~~~~~~~~~
228
229 Display the rss redirection table entry indicated by masks on port X::
230
231    testpmd> show port (port_id) rss reta (size) (mask0, mask1...)
232
233 size is used to indicate the hardware supported reta size
234
235 show port rss-hash
236 ~~~~~~~~~~~~~~~~~~
237
238 Display the RSS hash functions and RSS hash key of a port::
239
240    testpmd> show port (port_id) rss-hash [key]
241
242 clear port
243 ~~~~~~~~~~
244
245 Clear the port statistics and forward engine statistics for a given port or for all ports::
246
247    testpmd> clear port (info|stats|xstats|fdir|stat_qmap) (port_id|all)
248
249 For example::
250
251    testpmd> clear port stats all
252
253 show (rxq|txq)
254 ~~~~~~~~~~~~~~
255
256 Display information for a given port's RX/TX queue::
257
258    testpmd> show (rxq|txq) info (port_id) (queue_id)
259
260 show desc status(rxq|txq)
261 ~~~~~~~~~~~~~~~~~~~~~~~~~
262
263 Display information for a given port's RX/TX descriptor status::
264
265    testpmd> show port (port_id) (rxq|txq) (queue_id) desc (desc_id) status
266
267 show rxq desc used count
268 ~~~~~~~~~~~~~~~~~~~~~~~~
269
270 Display the number of receive packet descriptors currently filled by hardware
271 and ready to be processed by the driver on a given RX queue::
272
273    testpmd> show port (port_id) rxq (queue_id) desc used count
274
275 show config
276 ~~~~~~~~~~~
277
278 Displays the configuration of the application.
279 The configuration comes from the command-line, the runtime or the application defaults::
280
281    testpmd> show config (rxtx|cores|fwd|rxoffs|rxpkts|txpkts|txtimes)
282
283 The available information categories are:
284
285 * ``rxtx``: RX/TX configuration items.
286
287 * ``cores``: List of forwarding cores.
288
289 * ``fwd``: Packet forwarding configuration.
290
291 * ``rxoffs``: Packet offsets for RX split.
292
293 * ``rxpkts``: Packets to RX split configuration.
294
295 * ``txpkts``: Packets to TX configuration.
296
297 * ``txtimes``: Burst time pattern for Tx only mode.
298
299 For example:
300
301 .. code-block:: console
302
303    testpmd> show config rxtx
304
305    io packet forwarding - CRC stripping disabled - packets/burst=16
306    nb forwarding cores=2 - nb forwarding ports=1
307    RX queues=1 - RX desc=128 - RX free threshold=0
308    RX threshold registers: pthresh=8 hthresh=8 wthresh=4
309    TX queues=1 - TX desc=512 - TX free threshold=0
310    TX threshold registers: pthresh=36 hthresh=0 wthresh=0
311    TX RS bit threshold=0 - TXQ flags=0x0
312
313 set fwd
314 ~~~~~~~
315
316 Set the packet forwarding mode::
317
318    testpmd> set fwd (io|mac|macswap|flowgen| \
319                      rxonly|txonly|csum|icmpecho|noisy|5tswap) (""|retry)
320
321 ``retry`` can be specified for forwarding engines except ``rx_only``.
322
323 The available information categories are:
324
325 * ``io``: Forwards packets "as-is" in I/O mode.
326   This is the fastest possible forwarding operation as it does not access packets data.
327   This is the default mode.
328
329 * ``mac``: Changes the source and the destination Ethernet addresses of packets before forwarding them.
330   Default application behavior is to set source Ethernet address to that of the transmitting interface, and destination
331   address to a dummy value (set during init). The user may specify a target destination Ethernet address via the 'eth-peer' or
332   'eth-peers-configfile' command-line options. It is not currently possible to specify a specific source Ethernet address.
333
334 * ``macswap``: MAC swap forwarding mode.
335   Swaps the source and the destination Ethernet addresses of packets before forwarding them.
336
337 * ``flowgen``: Multi-flow generation mode.
338   Originates a number of flows (with varying destination IP addresses), and terminate receive traffic.
339
340 * ``rxonly``: Receives packets but doesn't transmit them.
341
342 * ``txonly``: Generates and transmits packets without receiving any.
343
344 * ``csum``: Changes the checksum field with hardware or software methods depending on the offload flags on the packet.
345
346 * ``icmpecho``: Receives a burst of packets, lookup for ICMP echo requests and, if any, send back ICMP echo replies.
347
348 * ``ieee1588``: Demonstrate L2 IEEE1588 V2 PTP timestamping for RX and TX.
349
350 * ``noisy``: Noisy neighbor simulation.
351   Simulate more realistic behavior of a guest machine engaged in receiving
352   and sending packets performing Virtual Network Function (VNF).
353
354 * ``5tswap``: Swap the source and destination of L2,L3,L4 if they exist.
355
356   L2 swaps the source address and destination address of Ethernet, as same as ``macswap``.
357
358   L3 swaps the source address and destination address of IP (v4 and v6).
359
360   L4 swaps the source port and destination port of transport layer (TCP and UDP).
361
362 Example::
363
364    testpmd> set fwd rxonly
365
366    Set rxonly packet forwarding mode
367
368
369 show fwd
370 ~~~~~~~~
371
372 When running, forwarding engines maintain statistics from the time they have been started.
373 Example for the io forwarding engine, with some packet drops on the tx side::
374
375    testpmd> show fwd stats all
376
377      ------- Forward Stats for RX Port= 0/Queue= 0 -> TX Port= 1/Queue= 0 -------
378      RX-packets: 274293770      TX-packets: 274293642      TX-dropped: 128
379
380      ------- Forward Stats for RX Port= 1/Queue= 0 -> TX Port= 0/Queue= 0 -------
381      RX-packets: 274301850      TX-packets: 274301850      TX-dropped: 0
382
383      ---------------------- Forward statistics for port 0  ----------------------
384      RX-packets: 274293802      RX-dropped: 0             RX-total: 274293802
385      TX-packets: 274301862      TX-dropped: 0             TX-total: 274301862
386      ----------------------------------------------------------------------------
387
388      ---------------------- Forward statistics for port 1  ----------------------
389      RX-packets: 274301894      RX-dropped: 0             RX-total: 274301894
390      TX-packets: 274293706      TX-dropped: 128           TX-total: 274293834
391      ----------------------------------------------------------------------------
392
393      +++++++++++++++ Accumulated forward statistics for all ports+++++++++++++++
394      RX-packets: 548595696      RX-dropped: 0             RX-total: 548595696
395      TX-packets: 548595568      TX-dropped: 128           TX-total: 548595696
396      ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
397
398
399 clear fwd
400 ~~~~~~~~~
401
402 Clear the forwarding engines statistics::
403
404    testpmd> clear fwd stats all
405
406 read rxd
407 ~~~~~~~~
408
409 Display an RX descriptor for a port RX queue::
410
411    testpmd> read rxd (port_id) (queue_id) (rxd_id)
412
413 For example::
414
415    testpmd> read rxd 0 0 4
416         0x0000000B - 0x001D0180 / 0x0000000B - 0x001D0180
417
418 read txd
419 ~~~~~~~~
420
421 Display a TX descriptor for a port TX queue::
422
423    testpmd> read txd (port_id) (queue_id) (txd_id)
424
425 For example::
426
427    testpmd> read txd 0 0 4
428         0x00000001 - 0x24C3C440 / 0x000F0000 - 0x2330003C
429
430 ddp get list
431 ~~~~~~~~~~~~
432
433 Get loaded dynamic device personalization (DDP) package info list::
434
435    testpmd> ddp get list (port_id)
436
437 ddp get info
438 ~~~~~~~~~~~~
439
440 Display information about dynamic device personalization (DDP) profile::
441
442    testpmd> ddp get info (profile_path)
443
444 show vf stats
445 ~~~~~~~~~~~~~
446
447 Display VF statistics::
448
449    testpmd> show vf stats (port_id) (vf_id)
450
451 clear vf stats
452 ~~~~~~~~~~~~~~
453
454 Reset VF statistics::
455
456    testpmd> clear vf stats (port_id) (vf_id)
457
458 show port pctype mapping
459 ~~~~~~~~~~~~~~~~~~~~~~~~
460
461 List all items from the pctype mapping table::
462
463    testpmd> show port (port_id) pctype mapping
464
465 show rx offloading capabilities
466 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
467
468 List all per queue and per port Rx offloading capabilities of a port::
469
470    testpmd> show port (port_id) rx_offload capabilities
471
472 show rx offloading configuration
473 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
474
475 List port level and all queue level Rx offloading configuration::
476
477    testpmd> show port (port_id) rx_offload configuration
478
479 show tx offloading capabilities
480 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
481
482 List all per queue and per port Tx offloading capabilities of a port::
483
484    testpmd> show port (port_id) tx_offload capabilities
485
486 show tx offloading configuration
487 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
488
489 List port level and all queue level Tx offloading configuration::
490
491    testpmd> show port (port_id) tx_offload configuration
492
493 show tx metadata setting
494 ~~~~~~~~~~~~~~~~~~~~~~~~
495
496 Show Tx metadata value set for a specific port::
497
498    testpmd> show port (port_id) tx_metadata
499
500 show port supported ptypes
501 ~~~~~~~~~~~~~~~~~~~~~~~~~~
502
503 Show ptypes supported for a specific port::
504
505    testpmd> show port (port_id) ptypes
506
507 set port supported ptypes
508 ~~~~~~~~~~~~~~~~~~~~~~~~~
509
510 set packet types classification for a specific port::
511
512    testpmd> set port (port_id) ptypes_mask (mask)
513
514 show port mac addresses info
515 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
516
517 Show mac addresses added for a specific port::
518
519    testpmd> show port (port_id) macs
520
521
522 show port multicast mac addresses info
523 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
524
525 Show multicast mac addresses added for a specific port::
526
527    testpmd> show port (port_id) mcast_macs
528
529 show device info
530 ~~~~~~~~~~~~~~~~
531
532 Show general information about devices probed::
533
534    testpmd> show device info (<identifier>|all)
535
536 For example:
537
538 .. code-block:: console
539
540     testpmd> show device info net_pcap0
541
542     ********************* Infos for device net_pcap0 *********************
543     Bus name: vdev
544     Driver name: net_pcap
545     Devargs: iface=enP2p6s0,phy_mac=1
546     Connect to socket: -1
547
548             Port id: 2
549             MAC address: 1E:37:93:28:04:B8
550             Device name: net_pcap0
551
552 dump physmem
553 ~~~~~~~~~~~~
554
555 Dumps all physical memory segment layouts::
556
557    testpmd> dump_physmem
558
559 dump memzone
560 ~~~~~~~~~~~~
561
562 Dumps the layout of all memory zones::
563
564    testpmd> dump_memzone
565
566 dump socket memory
567 ~~~~~~~~~~~~~~~~~~
568
569 Dumps the memory usage of all sockets::
570
571    testpmd> dump_socket_mem
572
573 dump struct size
574 ~~~~~~~~~~~~~~~~
575
576 Dumps the size of all memory structures::
577
578    testpmd> dump_struct_sizes
579
580 dump ring
581 ~~~~~~~~~
582
583 Dumps the status of all or specific element in DPDK rings::
584
585    testpmd> dump_ring [ring_name]
586
587 dump mempool
588 ~~~~~~~~~~~~
589
590 Dumps the statistics of all or specific memory pool::
591
592    testpmd> dump_mempool [mempool_name]
593
594 dump devargs
595 ~~~~~~~~~~~~
596
597 Dumps the user device list::
598
599    testpmd> dump_devargs
600
601 dump log types
602 ~~~~~~~~~~~~~~
603
604 Dumps the log level for all the dpdk modules::
605
606    testpmd> dump_log_types
607
608 show (raw_encap|raw_decap)
609 ~~~~~~~~~~~~~~~~~~~~~~~~~~
610
611 Display content of raw_encap/raw_decap buffers in hex::
612
613   testpmd> show <raw_encap|raw_decap> <index>
614   testpmd> show <raw_encap|raw_decap> all
615
616 For example::
617
618   testpmd> show raw_encap 6
619
620   index: 6 at [0x1c565b0], len=50
621   00000000: 00 00 00 00 00 00 16 26 36 46 56 66 08 00 45 00 | .......&6FVf..E.
622   00000010: 00 00 00 00 00 00 00 11 00 00 C0 A8 01 06 C0 A8 | ................
623   00000020: 03 06 00 00 00 FA 00 00 00 00 08 00 00 00 00 00 | ................
624   00000030: 06 00                                           | ..
625
626 show fec capabilities
627 ~~~~~~~~~~~~~~~~~~~~~
628
629 Show fec capabilities of a port::
630
631   testpmd> show port (port_id) fec capabilities
632
633 show fec mode
634 ~~~~~~~~~~~~~
635
636 Show fec mode of a port::
637
638   testpmd> show port (port_id) fec_mode
639
640
641 Configuration Functions
642 -----------------------
643
644 The testpmd application can be configured from the runtime as well as from the command-line.
645
646 This section details the available configuration functions that are available.
647
648 .. note::
649
650    Configuration changes only become active when forwarding is started/restarted.
651
652 set default
653 ~~~~~~~~~~~
654
655 Reset forwarding to the default configuration::
656
657    testpmd> set default
658
659 set verbose
660 ~~~~~~~~~~~
661
662 Set the debug verbosity level::
663
664    testpmd> set verbose (level)
665
666 Available levels are as following:
667
668 * ``0`` silent except for error.
669 * ``1`` fully verbose except for Tx packets.
670 * ``2`` fully verbose except for Rx packets.
671 * ``> 2`` fully verbose.
672
673 set log
674 ~~~~~~~
675
676 Set the log level for a log type::
677
678         testpmd> set log global|(type) (level)
679
680 Where:
681
682 * ``type`` is the log name.
683
684 * ``level`` is the log level.
685
686 For example, to change the global log level::
687
688         testpmd> set log global (level)
689
690 Regexes can also be used for type. To change log level of user1, user2 and user3::
691
692         testpmd> set log user[1-3] (level)
693
694 set nbport
695 ~~~~~~~~~~
696
697 Set the number of ports used by the application:
698
699 set nbport (num)
700
701 This is equivalent to the ``--nb-ports`` command-line option.
702
703 set nbcore
704 ~~~~~~~~~~
705
706 Set the number of cores used by the application::
707
708    testpmd> set nbcore (num)
709
710 This is equivalent to the ``--nb-cores`` command-line option.
711
712 .. note::
713
714    The number of cores used must not be greater than number of ports used multiplied by the number of queues per port.
715
716 set coremask
717 ~~~~~~~~~~~~
718
719 Set the forwarding cores hexadecimal mask::
720
721    testpmd> set coremask (mask)
722
723 This is equivalent to the ``--coremask`` command-line option.
724
725 .. note::
726
727    The main lcore is reserved for command line parsing only and cannot be masked on for packet forwarding.
728
729 set portmask
730 ~~~~~~~~~~~~
731
732 Set the forwarding ports hexadecimal mask::
733
734    testpmd> set portmask (mask)
735
736 This is equivalent to the ``--portmask`` command-line option.
737
738 set record-core-cycles
739 ~~~~~~~~~~~~~~~~~~~~~~
740
741 Set the recording of CPU cycles::
742
743    testpmd> set record-core-cycles (on|off)
744
745 Where:
746
747 * ``on`` enables measurement of CPU cycles per packet.
748
749 * ``off`` disables measurement of CPU cycles per packet.
750
751 This is equivalent to the ``--record-core-cycles command-line`` option.
752
753 set record-burst-stats
754 ~~~~~~~~~~~~~~~~~~~~~~
755
756 Set the displaying of RX and TX bursts::
757
758    testpmd> set record-burst-stats (on|off)
759
760 Where:
761
762 * ``on`` enables display of RX and TX bursts.
763
764 * ``off`` disables display of RX and TX bursts.
765
766 This is equivalent to the ``--record-burst-stats command-line`` option.
767
768 set burst
769 ~~~~~~~~~
770
771 Set number of packets per burst::
772
773    testpmd> set burst (num)
774
775 This is equivalent to the ``--burst command-line`` option.
776
777 When retry is enabled, the transmit delay time and number of retries can also be set::
778
779    testpmd> set burst tx delay (microseconds) retry (num)
780
781 set rxoffs
782 ~~~~~~~~~~
783
784 Set the offsets of segments relating to the data buffer beginning on receiving
785 if split feature is engaged. Affects only the queues configured with split
786 offloads (currently BUFFER_SPLIT is supported only).
787
788    testpmd> set rxoffs (x[,y]*)
789
790 Where x[,y]* represents a CSV list of values, without white space. If the list
791 of offsets is shorter than the list of segments the zero offsets will be used
792 for the remaining segments.
793
794 set rxpkts
795 ~~~~~~~~~~
796
797 Set the length of segments to scatter packets on receiving if split
798 feature is engaged. Affects only the queues configured with split offloads
799 (currently BUFFER_SPLIT is supported only). Optionally the multiple memory
800 pools can be specified with --mbuf-size command line parameter and the mbufs
801 to receive will be allocated sequentially from these extra memory pools (the
802 mbuf for the first segment is allocated from the first pool, the second one
803 from the second pool, and so on, if segment number is greater then pool's the
804 mbuf for remaining segments will be allocated from the last valid pool).
805
806    testpmd> set rxpkts (x[,y]*)
807
808 Where x[,y]* represents a CSV list of values, without white space. Zero value
809 means to use the corresponding memory pool data buffer size.
810
811 set txpkts
812 ~~~~~~~~~~
813
814 Set the length of each segment of the TX-ONLY packets or length of packet for FLOWGEN mode::
815
816    testpmd> set txpkts (x[,y]*)
817
818 Where x[,y]* represents a CSV list of values, without white space.
819
820 set txtimes
821 ~~~~~~~~~~~
822
823 Configure the timing burst pattern for Tx only mode. This command enables
824 the packet send scheduling on dynamic timestamp mbuf field and configures
825 timing pattern in Tx only mode. In this mode, if scheduling is enabled
826 application provides timestamps in the packets being sent. It is possible
827 to configure delay (in unspecified device clock units) between bursts
828 and between the packets within the burst::
829
830    testpmd> set txtimes (inter),(intra)
831
832 where:
833
834 * ``inter``  is the delay between the bursts in the device clock units.
835   If ``intra`` is zero, this is the time between the beginnings of the
836   first packets in the neighbour bursts, if ``intra`` is not zero,
837   ``inter`` specifies the time between the beginning of the first packet
838   of the current burst and the beginning of the last packet of the
839   previous burst. If ``inter`` parameter is zero the send scheduling
840   on timestamps is disabled (default).
841
842 * ``intra`` is the delay between the packets within the burst specified
843   in the device clock units. The number of packets in the burst is defined
844   by regular burst setting. If ``intra`` parameter is zero no timestamps
845   provided in the packets excepting the first one in the burst.
846
847 As the result the bursts of packet will be transmitted with specific
848 delays between the packets within the burst and specific delay between
849 the bursts. The rte_eth_read_clock() must be supported by the device(s)
850 and is supposed to be engaged to get the current device clock value
851 and provide the reference for the timestamps. If there is no supported
852 rte_eth_read_clock() there will be no send scheduling provided on the port.
853
854 set txsplit
855 ~~~~~~~~~~~
856
857 Set the split policy for the TX packets, applicable for TX-ONLY and CSUM forwarding modes::
858
859    testpmd> set txsplit (off|on|rand)
860
861 Where:
862
863 * ``off`` disable packet copy & split for CSUM mode.
864
865 * ``on`` split outgoing packet into multiple segments. Size of each segment
866   and number of segments per packet is determined by ``set txpkts`` command
867   (see above).
868
869 * ``rand`` same as 'on', but number of segments per each packet is a random value between 1 and total number of segments.
870
871 set corelist
872 ~~~~~~~~~~~~
873
874 Set the list of forwarding cores::
875
876    testpmd> set corelist (x[,y]*)
877
878 For example, to change the forwarding cores:
879
880 .. code-block:: console
881
882    testpmd> set corelist 3,1
883    testpmd> show config fwd
884
885    io packet forwarding - ports=2 - cores=2 - streams=2 - NUMA support disabled
886    Logical Core 3 (socket 0) forwards packets on 1 streams:
887    RX P=0/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:01
888    Logical Core 1 (socket 0) forwards packets on 1 streams:
889    RX P=1/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
890
891 .. note::
892
893    The cores are used in the same order as specified on the command line.
894
895 set portlist
896 ~~~~~~~~~~~~
897
898 Set the list of forwarding ports::
899
900    testpmd> set portlist (x[,y]*)
901
902 For example, to change the port forwarding:
903
904 .. code-block:: console
905
906    testpmd> set portlist 0,2,1,3
907    testpmd> show config fwd
908
909    io packet forwarding - ports=4 - cores=1 - streams=4
910    Logical Core 3 (socket 0) forwards packets on 4 streams:
911    RX P=0/Q=0 (socket 0) -> TX P=2/Q=0 (socket 0) peer=02:00:00:00:00:01
912    RX P=2/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00
913    RX P=1/Q=0 (socket 0) -> TX P=3/Q=0 (socket 0) peer=02:00:00:00:00:03
914    RX P=3/Q=0 (socket 0) -> TX P=1/Q=0 (socket 0) peer=02:00:00:00:00:02
915
916 set port setup on
917 ~~~~~~~~~~~~~~~~~
918
919 Select how to retrieve new ports created after "port attach" command::
920
921    testpmd> set port setup on (iterator|event)
922
923 For each new port, a setup is done.
924 It will find the probed ports via RTE_ETH_FOREACH_MATCHING_DEV loop
925 in iterator mode, or via RTE_ETH_EVENT_NEW in event mode.
926
927 set tx loopback
928 ~~~~~~~~~~~~~~~
929
930 Enable/disable tx loopback::
931
932    testpmd> set tx loopback (port_id) (on|off)
933
934 set drop enable
935 ~~~~~~~~~~~~~~~
936
937 set drop enable bit for all queues::
938
939    testpmd> set all queues drop (port_id) (on|off)
940
941 set split drop enable (for VF)
942 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
943
944 set split drop enable bit for VF from PF::
945
946    testpmd> set vf split drop (port_id) (vf_id) (on|off)
947
948 set mac antispoof (for VF)
949 ~~~~~~~~~~~~~~~~~~~~~~~~~~
950
951 Set mac antispoof for a VF from the PF::
952
953    testpmd> set vf mac antispoof  (port_id) (vf_id) (on|off)
954
955 set macsec offload
956 ~~~~~~~~~~~~~~~~~~
957
958 Enable/disable MACsec offload::
959
960    testpmd> set macsec offload (port_id) on encrypt (on|off) replay-protect (on|off)
961    testpmd> set macsec offload (port_id) off
962
963 set macsec sc
964 ~~~~~~~~~~~~~
965
966 Configure MACsec secure connection (SC)::
967
968    testpmd> set macsec sc (tx|rx) (port_id) (mac) (pi)
969
970 .. note::
971
972    The pi argument is ignored for tx.
973    Check the NIC Datasheet for hardware limits.
974
975 set macsec sa
976 ~~~~~~~~~~~~~
977
978 Configure MACsec secure association (SA)::
979
980    testpmd> set macsec sa (tx|rx) (port_id) (idx) (an) (pn) (key)
981
982 .. note::
983
984    The IDX value must be 0 or 1.
985    Check the NIC Datasheet for hardware limits.
986
987 set broadcast mode (for VF)
988 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
989
990 Set broadcast mode for a VF from the PF::
991
992    testpmd> set vf broadcast (port_id) (vf_id) (on|off)
993
994 vlan set stripq
995 ~~~~~~~~~~~~~~~
996
997 Set the VLAN strip for a queue on a port::
998
999    testpmd> vlan set stripq (on|off) (port_id,queue_id)
1000
1001 vlan set stripq (for VF)
1002 ~~~~~~~~~~~~~~~~~~~~~~~~
1003
1004 Set VLAN strip for all queues in a pool for a VF from the PF::
1005
1006    testpmd> set vf vlan stripq (port_id) (vf_id) (on|off)
1007
1008 vlan set insert (for VF)
1009 ~~~~~~~~~~~~~~~~~~~~~~~~
1010
1011 Set VLAN insert for a VF from the PF::
1012
1013    testpmd> set vf vlan insert (port_id) (vf_id) (vlan_id)
1014
1015 vlan set tag (for VF)
1016 ~~~~~~~~~~~~~~~~~~~~~
1017
1018 Set VLAN tag for a VF from the PF::
1019
1020    testpmd> set vf vlan tag (port_id) (vf_id) (on|off)
1021
1022 vlan set antispoof (for VF)
1023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
1024
1025 Set VLAN antispoof for a VF from the PF::
1026
1027    testpmd> set vf vlan antispoof (port_id) (vf_id) (on|off)
1028
1029 vlan set (strip|filter|qinq_strip|extend)
1030 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1031 Set the VLAN strip/filter/QinQ strip/extend on for a port::
1032
1033    testpmd> vlan set (strip|filter|qinq_strip|extend) (on|off) (port_id)
1034
1035 vlan set tpid
1036 ~~~~~~~~~~~~~
1037
1038 Set the inner or outer VLAN TPID for packet filtering on a port::
1039
1040    testpmd> vlan set (inner|outer) tpid (value) (port_id)
1041
1042 .. note::
1043
1044    TPID value must be a 16-bit number (value <= 65536).
1045
1046 rx_vlan add
1047 ~~~~~~~~~~~
1048
1049 Add a VLAN ID, or all identifiers, to the set of VLAN identifiers filtered by port ID::
1050
1051    testpmd> rx_vlan add (vlan_id|all) (port_id)
1052
1053 .. note::
1054
1055    VLAN filter must be set on that port. VLAN ID < 4096.
1056    Depending on the NIC used, number of vlan_ids may be limited to the maximum entries
1057    in VFTA table. This is important if enabling all vlan_ids.
1058
1059 rx_vlan rm
1060 ~~~~~~~~~~
1061
1062 Remove a VLAN ID, or all identifiers, from the set of VLAN identifiers filtered by port ID::
1063
1064    testpmd> rx_vlan rm (vlan_id|all) (port_id)
1065
1066 rx_vlan add (for VF)
1067 ~~~~~~~~~~~~~~~~~~~~
1068
1069 Add a VLAN ID, to the set of VLAN identifiers filtered for VF(s) for port ID::
1070
1071    testpmd> rx_vlan add (vlan_id) port (port_id) vf (vf_mask)
1072
1073 rx_vlan rm (for VF)
1074 ~~~~~~~~~~~~~~~~~~~
1075
1076 Remove a VLAN ID, from the set of VLAN identifiers filtered for VF(s) for port ID::
1077
1078    testpmd> rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)
1079
1080 rx_vxlan_port add
1081 ~~~~~~~~~~~~~~~~~
1082
1083 Add an UDP port for VXLAN packet filter on a port::
1084
1085    testpmd> rx_vxlan_port add (udp_port) (port_id)
1086
1087 rx_vxlan_port remove
1088 ~~~~~~~~~~~~~~~~~~~~
1089
1090 Remove an UDP port for VXLAN packet filter on a port::
1091
1092    testpmd> rx_vxlan_port rm (udp_port) (port_id)
1093
1094 tx_vlan set
1095 ~~~~~~~~~~~
1096
1097 Set hardware insertion of VLAN IDs in packets sent on a port::
1098
1099    testpmd> tx_vlan set (port_id) vlan_id[, vlan_id_outer]
1100
1101 For example, set a single VLAN ID (5) insertion on port 0::
1102
1103    tx_vlan set 0 5
1104
1105 Or, set double VLAN ID (inner: 2, outer: 3) insertion on port 1::
1106
1107    tx_vlan set 1 2 3
1108
1109
1110 tx_vlan set pvid
1111 ~~~~~~~~~~~~~~~~
1112
1113 Set port based hardware insertion of VLAN ID in packets sent on a port::
1114
1115    testpmd> tx_vlan set pvid (port_id) (vlan_id) (on|off)
1116
1117 tx_vlan reset
1118 ~~~~~~~~~~~~~
1119
1120 Disable hardware insertion of a VLAN header in packets sent on a port::
1121
1122    testpmd> tx_vlan reset (port_id)
1123
1124 csum set
1125 ~~~~~~~~
1126
1127 Select hardware or software calculation of the checksum when
1128 transmitting a packet using the ``csum`` forwarding engine::
1129
1130    testpmd> csum set (ip|udp|tcp|sctp|outer-ip|outer-udp) (hw|sw) (port_id)
1131
1132 Where:
1133
1134 * ``ip|udp|tcp|sctp`` always relate to  the inner layer.
1135
1136 * ``outer-ip`` relates to the outer IP layer (only for IPv4) in the case where the packet is recognized
1137   as a tunnel packet by the forwarding engine (geneve, gre, gtp, ipip, vxlan and vxlan-gpe are
1138   supported). See also the ``csum parse-tunnel`` command.
1139
1140 * ``outer-udp`` relates to the outer UDP layer in the case where the packet is recognized
1141   as a tunnel packet by the forwarding engine (geneve, gtp, vxlan and vxlan-gpe are
1142   supported). See also the ``csum parse-tunnel`` command.
1143
1144 .. note::
1145
1146    Check the NIC Datasheet for hardware limits.
1147
1148 RSS queue region
1149 ~~~~~~~~~~~~~~~~
1150
1151 Set RSS queue region span on a port::
1152
1153    testpmd> set port (port_id) queue-region region_id (value) \
1154                 queue_start_index (value) queue_num (value)
1155
1156 Set flowtype mapping on a RSS queue region on a port::
1157
1158    testpmd> set port (port_id) queue-region region_id (value) flowtype (value)
1159
1160 where:
1161
1162 * For the flowtype(pctype) of packet,the specific index for each type has
1163   been defined in file i40e_type.h as enum i40e_filter_pctype.
1164
1165 Set user priority mapping on a RSS queue region on a port::
1166
1167    testpmd> set port (port_id) queue-region UP (value) region_id (value)
1168
1169 Flush all queue region related configuration on a port::
1170
1171    testpmd> set port (port_id) queue-region flush (on|off)
1172
1173 where:
1174
1175 * ``on``: is just an enable function which server for other configuration,
1176   it is for all configuration about queue region from up layer,
1177   at first will only keep in DPDK software stored in driver,
1178   only after "flush on", it commit all configuration to HW.
1179
1180 * ``"off``: is just clean all configuration about queue region just now,
1181   and restore all to DPDK i40e driver default config when start up.
1182
1183 Show all queue region related configuration info on a port::
1184
1185    testpmd> show port (port_id) queue-region
1186
1187 .. note::
1188
1189   Queue region only support on PF by now, so these command is
1190   only for configuration of queue region on PF port.
1191
1192 csum parse-tunnel
1193 ~~~~~~~~~~~~~~~~~
1194
1195 Define how tunneled packets should be handled by the csum forward
1196 engine::
1197
1198    testpmd> csum parse-tunnel (on|off) (tx_port_id)
1199
1200 If enabled, the csum forward engine will try to recognize supported
1201 tunnel headers (geneve, gtp, gre, ipip, vxlan, vxlan-gpe).
1202
1203 If disabled, treat tunnel packets as non-tunneled packets (a inner
1204 header is handled as a packet payload).
1205
1206 .. note::
1207
1208    The port argument is the TX port like in the ``csum set`` command.
1209
1210 Example:
1211
1212 Consider a packet in packet like the following::
1213
1214    eth_out/ipv4_out/udp_out/vxlan/eth_in/ipv4_in/tcp_in
1215
1216 * If parse-tunnel is enabled, the ``ip|udp|tcp|sctp`` parameters of ``csum set``
1217   command relate to the inner headers (here ``ipv4_in`` and ``tcp_in``), and the
1218   ``outer-ip|outer-udp`` parameter relates to the outer headers (here ``ipv4_out`` and ``udp_out``).
1219
1220 * If parse-tunnel is disabled, the ``ip|udp|tcp|sctp`` parameters of ``csum  set``
1221    command relate to the outer headers, here ``ipv4_out`` and ``udp_out``.
1222
1223 csum show
1224 ~~~~~~~~~
1225
1226 Display tx checksum offload configuration::
1227
1228    testpmd> csum show (port_id)
1229
1230 tso set
1231 ~~~~~~~
1232
1233 Enable TCP Segmentation Offload (TSO) in the ``csum`` forwarding engine::
1234
1235    testpmd> tso set (segsize) (port_id)
1236
1237 .. note::
1238
1239    Check the NIC datasheet for hardware limits.
1240
1241 tso show
1242 ~~~~~~~~
1243
1244 Display the status of TCP Segmentation Offload::
1245
1246    testpmd> tso show (port_id)
1247
1248 tunnel tso set
1249 ~~~~~~~~~~~~~~
1250
1251 Set tso segment size of tunneled packets for a port in csum engine::
1252
1253    testpmd> tunnel_tso set (tso_segsz) (port_id)
1254
1255 tunnel tso show
1256 ~~~~~~~~~~~~~~~
1257
1258 Display the status of tunneled TCP Segmentation Offload for a port::
1259
1260    testpmd> tunnel_tso show (port_id)
1261
1262 set port - gro
1263 ~~~~~~~~~~~~~~
1264
1265 Enable or disable GRO in ``csum`` forwarding engine::
1266
1267    testpmd> set port <port_id> gro on|off
1268
1269 If enabled, the csum forwarding engine will perform GRO on the TCP/IPv4
1270 packets received from the given port.
1271
1272 If disabled, packets received from the given port won't be performed
1273 GRO. By default, GRO is disabled for all ports.
1274
1275 .. note::
1276
1277    When enable GRO for a port, TCP/IPv4 packets received from the port
1278    will be performed GRO. After GRO, all merged packets have bad
1279    checksums, since the GRO library doesn't re-calculate checksums for
1280    the merged packets. Therefore, if users want the merged packets to
1281    have correct checksums, please select HW IP checksum calculation and
1282    HW TCP checksum calculation for the port which the merged packets are
1283    transmitted to.
1284
1285 show port - gro
1286 ~~~~~~~~~~~~~~~
1287
1288 Display GRO configuration for a given port::
1289
1290    testpmd> show port <port_id> gro
1291
1292 set gro flush
1293 ~~~~~~~~~~~~~
1294
1295 Set the cycle to flush the GROed packets from reassembly tables::
1296
1297    testpmd> set gro flush <cycles>
1298
1299 When enable GRO, the csum forwarding engine performs GRO on received
1300 packets, and the GROed packets are stored in reassembly tables. Users
1301 can use this command to determine when the GROed packets are flushed
1302 from the reassembly tables.
1303
1304 The ``cycles`` is measured in GRO operation times. The csum forwarding
1305 engine flushes the GROed packets from the tables every ``cycles`` GRO
1306 operations.
1307
1308 By default, the value of ``cycles`` is 1, which means flush GROed packets
1309 from the reassembly tables as soon as one GRO operation finishes. The value
1310 of ``cycles`` should be in the range of 1 to ``GRO_MAX_FLUSH_CYCLES``.
1311
1312 Please note that the large value of ``cycles`` may cause the poor TCP/IP
1313 stack performance. Because the GROed packets are delayed to arrive the
1314 stack, thus causing more duplicated ACKs and TCP retransmissions.
1315
1316 set port - gso
1317 ~~~~~~~~~~~~~~
1318
1319 Toggle per-port GSO support in ``csum`` forwarding engine::
1320
1321    testpmd> set port <port_id> gso on|off
1322
1323 If enabled, the csum forwarding engine will perform GSO on supported IPv4
1324 packets, transmitted on the given port.
1325
1326 If disabled, packets transmitted on the given port will not undergo GSO.
1327 By default, GSO is disabled for all ports.
1328
1329 .. note::
1330
1331    When GSO is enabled on a port, supported IPv4 packets transmitted on that
1332    port undergo GSO. Afterwards, the segmented packets are represented by
1333    multi-segment mbufs; however, the csum forwarding engine doesn't calculation
1334    of checksums for GSO'd segments in SW. As a result, if users want correct
1335    checksums in GSO segments, they should enable HW checksum calculation for
1336    GSO-enabled ports.
1337
1338    For example, HW checksum calculation for VxLAN GSO'd packets may be enabled
1339    by setting the following options in the csum forwarding engine:
1340
1341    testpmd> csum set outer_ip hw <port_id>
1342
1343    testpmd> csum set ip hw <port_id>
1344
1345    testpmd> csum set tcp hw <port_id>
1346
1347    UDP GSO is the same as IP fragmentation, which treats the UDP header
1348    as the payload and does not modify it during segmentation. That is,
1349    after UDP GSO, only the first output fragment has the original UDP
1350    header. Therefore, users need to enable HW IP checksum calculation
1351    and SW UDP checksum calculation for GSO-enabled ports, if they want
1352    correct checksums for UDP/IPv4 packets.
1353
1354 set gso segsz
1355 ~~~~~~~~~~~~~
1356
1357 Set the maximum GSO segment size (measured in bytes), which includes the
1358 packet header and the packet payload for GSO-enabled ports (global)::
1359
1360    testpmd> set gso segsz <length>
1361
1362 show port - gso
1363 ~~~~~~~~~~~~~~~
1364
1365 Display the status of Generic Segmentation Offload for a given port::
1366
1367    testpmd> show port <port_id> gso
1368
1369 mac_addr add
1370 ~~~~~~~~~~~~
1371
1372 Add an alternative MAC address to a port::
1373
1374    testpmd> mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)
1375
1376 mac_addr remove
1377 ~~~~~~~~~~~~~~~
1378
1379 Remove a MAC address from a port::
1380
1381    testpmd> mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)
1382
1383 mcast_addr add
1384 ~~~~~~~~~~~~~~
1385
1386 To add the multicast MAC address to/from the set of multicast addresses
1387 filtered by port::
1388
1389    testpmd> mcast_addr add (port_id) (mcast_addr)
1390
1391 mcast_addr remove
1392 ~~~~~~~~~~~~~~~~~
1393
1394 To remove the multicast MAC address to/from the set of multicast addresses
1395 filtered by port::
1396
1397    testpmd> mcast_addr remove (port_id) (mcast_addr)
1398
1399 mac_addr add (for VF)
1400 ~~~~~~~~~~~~~~~~~~~~~
1401
1402 Add an alternative MAC address for a VF to a port::
1403
1404    testpmd> mac_add add port (port_id) vf (vf_id) (XX:XX:XX:XX:XX:XX)
1405
1406 mac_addr set
1407 ~~~~~~~~~~~~
1408
1409 Set the default MAC address for a port::
1410
1411    testpmd> mac_addr set (port_id) (XX:XX:XX:XX:XX:XX)
1412
1413 mac_addr set (for VF)
1414 ~~~~~~~~~~~~~~~~~~~~~
1415
1416 Set the MAC address for a VF from the PF::
1417
1418    testpmd> set vf mac addr (port_id) (vf_id) (XX:XX:XX:XX:XX:XX)
1419
1420 set eth-peer
1421 ~~~~~~~~~~~~
1422
1423 Set the forwarding peer address for certain port::
1424
1425    testpmd> set eth-peer (port_id) (peer_addr)
1426
1427 This is equivalent to the ``--eth-peer`` command-line option.
1428
1429 set port-uta
1430 ~~~~~~~~~~~~
1431
1432 Set the unicast hash filter(s) on/off for a port::
1433
1434    testpmd> set port (port_id) uta (XX:XX:XX:XX:XX:XX|all) (on|off)
1435
1436 set promisc
1437 ~~~~~~~~~~~
1438
1439 Set the promiscuous mode on for a port or for all ports.
1440 In promiscuous mode packets are not dropped if they aren't for the specified MAC address::
1441
1442    testpmd> set promisc (port_id|all) (on|off)
1443
1444 set allmulti
1445 ~~~~~~~~~~~~
1446
1447 Set the allmulti mode for a port or for all ports::
1448
1449    testpmd> set allmulti (port_id|all) (on|off)
1450
1451 Same as the ifconfig (8) option. Controls how multicast packets are handled.
1452
1453 set promisc (for VF)
1454 ~~~~~~~~~~~~~~~~~~~~
1455
1456 Set the unicast promiscuous mode for a VF from PF.
1457 It's supported by Intel i40e NICs now.
1458 In promiscuous mode packets are not dropped if they aren't for the specified MAC address::
1459
1460    testpmd> set vf promisc (port_id) (vf_id) (on|off)
1461
1462 set allmulticast (for VF)
1463 ~~~~~~~~~~~~~~~~~~~~~~~~~
1464
1465 Set the multicast promiscuous mode for a VF from PF.
1466 It's supported by Intel i40e NICs now.
1467 In promiscuous mode packets are not dropped if they aren't for the specified MAC address::
1468
1469    testpmd> set vf allmulti (port_id) (vf_id) (on|off)
1470
1471 set tx max bandwidth (for VF)
1472 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1473
1474 Set TX max absolute bandwidth (Mbps) for a VF from PF::
1475
1476    testpmd> set vf tx max-bandwidth (port_id) (vf_id) (max_bandwidth)
1477
1478 set tc tx min bandwidth (for VF)
1479 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1480
1481 Set all TCs' TX min relative bandwidth (%) for a VF from PF::
1482
1483    testpmd> set vf tc tx min-bandwidth (port_id) (vf_id) (bw1, bw2, ...)
1484
1485 set tc tx max bandwidth (for VF)
1486 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1487
1488 Set a TC's TX max absolute bandwidth (Mbps) for a VF from PF::
1489
1490    testpmd> set vf tc tx max-bandwidth (port_id) (vf_id) (tc_no) (max_bandwidth)
1491
1492 set tc strict link priority mode
1493 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1494
1495 Set some TCs' strict link priority mode on a physical port::
1496
1497    testpmd> set tx strict-link-priority (port_id) (tc_bitmap)
1498
1499 set tc tx min bandwidth
1500 ~~~~~~~~~~~~~~~~~~~~~~~
1501
1502 Set all TCs' TX min relative bandwidth (%) globally for all PF and VFs::
1503
1504    testpmd> set tc tx min-bandwidth (port_id) (bw1, bw2, ...)
1505
1506 set flow_ctrl rx
1507 ~~~~~~~~~~~~~~~~
1508
1509 Set the link flow control parameter on a port::
1510
1511    testpmd> set flow_ctrl rx (on|off) tx (on|off) (high_water) (low_water) \
1512             (pause_time) (send_xon) mac_ctrl_frame_fwd (on|off) \
1513             autoneg (on|off) (port_id)
1514
1515 Where:
1516
1517 * ``high_water`` (integer): High threshold value to trigger XOFF.
1518
1519 * ``low_water`` (integer): Low threshold value to trigger XON.
1520
1521 * ``pause_time`` (integer): Pause quota in the Pause frame.
1522
1523 * ``send_xon`` (0/1): Send XON frame.
1524
1525 * ``mac_ctrl_frame_fwd``: Enable receiving MAC control frames.
1526
1527 * ``autoneg``: Change the auto-negotiation parameter.
1528
1529 set pfc_ctrl rx
1530 ~~~~~~~~~~~~~~~
1531
1532 Set the priority flow control parameter on a port::
1533
1534    testpmd> set pfc_ctrl rx (on|off) tx (on|off) (high_water) (low_water) \
1535             (pause_time) (priority) (port_id)
1536
1537 Where:
1538
1539 * ``high_water`` (integer): High threshold value.
1540
1541 * ``low_water`` (integer): Low threshold value.
1542
1543 * ``pause_time`` (integer): Pause quota in the Pause frame.
1544
1545 * ``priority`` (0-7): VLAN User Priority.
1546
1547 set stat_qmap
1548 ~~~~~~~~~~~~~
1549
1550 Set statistics mapping (qmapping 0..15) for RX/TX queue on port::
1551
1552    testpmd> set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)
1553
1554 For example, to set rx queue 2 on port 0 to mapping 5::
1555
1556    testpmd>set stat_qmap rx 0 2 5
1557
1558 set xstats-hide-zero
1559 ~~~~~~~~~~~~~~~~~~~~
1560
1561 Set the option to hide zero values for xstats display::
1562
1563         testpmd> set xstats-hide-zero on|off
1564
1565 .. note::
1566
1567         By default, the zero values are displayed for xstats.
1568
1569 set port - rx/tx (for VF)
1570 ~~~~~~~~~~~~~~~~~~~~~~~~~
1571
1572 Set VF receive/transmit from a port::
1573
1574    testpmd> set port (port_id) vf (vf_id) (rx|tx) (on|off)
1575
1576 set port - rx mode(for VF)
1577 ~~~~~~~~~~~~~~~~~~~~~~~~~~
1578
1579 Set the VF receive mode of a port::
1580
1581    testpmd> set port (port_id) vf (vf_id) \
1582             rxmode (AUPE|ROPE|BAM|MPE) (on|off)
1583
1584 The available receive modes are:
1585
1586 * ``AUPE``: Accepts untagged VLAN.
1587
1588 * ``ROPE``: Accepts unicast hash.
1589
1590 * ``BAM``: Accepts broadcast packets.
1591
1592 * ``MPE``: Accepts all multicast packets.
1593
1594 set port - tx_rate (for Queue)
1595 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1596
1597 Set TX rate limitation for a queue on a port::
1598
1599    testpmd> set port (port_id) queue (queue_id) rate (rate_value)
1600
1601 set port - tx_rate (for VF)
1602 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
1603
1604 Set TX rate limitation for queues in VF on a port::
1605
1606    testpmd> set port (port_id) vf (vf_id) rate (rate_value) queue_mask (queue_mask)
1607
1608 set port - mirror rule
1609 ~~~~~~~~~~~~~~~~~~~~~~
1610
1611 Set pool or vlan type mirror rule for a port::
1612
1613    testpmd> set port (port_id) mirror-rule (rule_id) \
1614             (pool-mirror-up|pool-mirror-down|vlan-mirror) \
1615             (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)
1616
1617 Set link mirror rule for a port::
1618
1619    testpmd> set port (port_id) mirror-rule (rule_id) \
1620            (uplink-mirror|downlink-mirror) dst-pool (pool_id) (on|off)
1621
1622 For example to enable mirror traffic with vlan 0,1 to pool 0::
1623
1624    set port 0 mirror-rule 0 vlan-mirror 0,1 dst-pool 0 on
1625
1626 reset port - mirror rule
1627 ~~~~~~~~~~~~~~~~~~~~~~~~
1628
1629 Reset a mirror rule for a port::
1630
1631    testpmd> reset port (port_id) mirror-rule (rule_id)
1632
1633 set flush_rx
1634 ~~~~~~~~~~~~
1635
1636 Set the flush on RX streams before forwarding.
1637 The default is flush ``on``.
1638 Mainly used with PCAP drivers to turn off the default behavior of flushing the first 512 packets on RX streams::
1639
1640    testpmd> set flush_rx off
1641
1642 set bypass mode
1643 ~~~~~~~~~~~~~~~
1644
1645 Set the bypass mode for the lowest port on bypass enabled NIC::
1646
1647    testpmd> set bypass mode (normal|bypass|isolate) (port_id)
1648
1649 set bypass event
1650 ~~~~~~~~~~~~~~~~
1651
1652 Set the event required to initiate specified bypass mode for the lowest port on a bypass enabled::
1653
1654    testpmd> set bypass event (timeout|os_on|os_off|power_on|power_off) \
1655             mode (normal|bypass|isolate) (port_id)
1656
1657 Where:
1658
1659 * ``timeout``: Enable bypass after watchdog timeout.
1660
1661 * ``os_on``: Enable bypass when OS/board is powered on.
1662
1663 * ``os_off``: Enable bypass when OS/board is powered off.
1664
1665 * ``power_on``: Enable bypass when power supply is turned on.
1666
1667 * ``power_off``: Enable bypass when power supply is turned off.
1668
1669
1670 set bypass timeout
1671 ~~~~~~~~~~~~~~~~~~
1672
1673 Set the bypass watchdog timeout to ``n`` seconds where 0 = instant::
1674
1675    testpmd> set bypass timeout (0|1.5|2|3|4|8|16|32)
1676
1677 show bypass config
1678 ~~~~~~~~~~~~~~~~~~
1679
1680 Show the bypass configuration for a bypass enabled NIC using the lowest port on the NIC::
1681
1682    testpmd> show bypass config (port_id)
1683
1684 set link up
1685 ~~~~~~~~~~~
1686
1687 Set link up for a port::
1688
1689    testpmd> set link-up port (port id)
1690
1691 set link down
1692 ~~~~~~~~~~~~~
1693
1694 Set link down for a port::
1695
1696    testpmd> set link-down port (port id)
1697
1698 E-tag set
1699 ~~~~~~~~~
1700
1701 Enable E-tag insertion for a VF on a port::
1702
1703    testpmd> E-tag set insertion on port-tag-id (value) port (port_id) vf (vf_id)
1704
1705 Disable E-tag insertion for a VF on a port::
1706
1707    testpmd> E-tag set insertion off port (port_id) vf (vf_id)
1708
1709 Enable/disable E-tag stripping on a port::
1710
1711    testpmd> E-tag set stripping (on|off) port (port_id)
1712
1713 Enable/disable E-tag based forwarding on a port::
1714
1715    testpmd> E-tag set forwarding (on|off) port (port_id)
1716
1717 ddp add
1718 ~~~~~~~
1719
1720 Load a dynamic device personalization (DDP) profile and store backup profile::
1721
1722    testpmd> ddp add (port_id) (profile_path[,backup_profile_path])
1723
1724 ddp del
1725 ~~~~~~~
1726
1727 Delete a dynamic device personalization profile and restore backup profile::
1728
1729    testpmd> ddp del (port_id) (backup_profile_path)
1730
1731 ptype mapping
1732 ~~~~~~~~~~~~~
1733
1734 List all items from the ptype mapping table::
1735
1736    testpmd> ptype mapping get (port_id) (valid_only)
1737
1738 Where:
1739
1740 * ``valid_only``: A flag indicates if only list valid items(=1) or all itemss(=0).
1741
1742 Replace a specific or a group of software defined ptype with a new one::
1743
1744    testpmd> ptype mapping replace  (port_id) (target) (mask) (pkt_type)
1745
1746 where:
1747
1748 * ``target``: A specific software ptype or a mask to represent a group of software ptypes.
1749
1750 * ``mask``: A flag indicate if "target" is a specific software ptype(=0) or a ptype mask(=1).
1751
1752 * ``pkt_type``: The new software ptype to replace the old ones.
1753
1754 Update hardware defined ptype to software defined packet type mapping table::
1755
1756    testpmd> ptype mapping update (port_id) (hw_ptype) (sw_ptype)
1757
1758 where:
1759
1760 * ``hw_ptype``: hardware ptype as the index of the ptype mapping table.
1761
1762 * ``sw_ptype``: software ptype as the value of the ptype mapping table.
1763
1764 Reset ptype mapping table::
1765
1766    testpmd> ptype mapping reset (port_id)
1767
1768 config per port Rx offloading
1769 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1770
1771 Enable or disable a per port Rx offloading on all Rx queues of a port::
1772
1773    testpmd> port config (port_id) rx_offload (offloading) on|off
1774
1775 * ``offloading``: can be any of these offloading capability:
1776                   vlan_strip, ipv4_cksum, udp_cksum, tcp_cksum, tcp_lro,
1777                   qinq_strip, outer_ipv4_cksum, macsec_strip,
1778                   header_split, vlan_filter, vlan_extend, jumbo_frame,
1779                   scatter, timestamp, security, keep_crc, rss_hash
1780
1781 This command should be run when the port is stopped, or else it will fail.
1782
1783 config per queue Rx offloading
1784 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1785
1786 Enable or disable a per queue Rx offloading only on a specific Rx queue::
1787
1788    testpmd> port (port_id) rxq (queue_id) rx_offload (offloading) on|off
1789
1790 * ``offloading``: can be any of these offloading capability:
1791                   vlan_strip, ipv4_cksum, udp_cksum, tcp_cksum, tcp_lro,
1792                   qinq_strip, outer_ipv4_cksum, macsec_strip,
1793                   header_split, vlan_filter, vlan_extend, jumbo_frame,
1794                   scatter, timestamp, security, keep_crc
1795
1796 This command should be run when the port is stopped, or else it will fail.
1797
1798 config per port Tx offloading
1799 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1800
1801 Enable or disable a per port Tx offloading on all Tx queues of a port::
1802
1803    testpmd> port config (port_id) tx_offload (offloading) on|off
1804
1805 * ``offloading``: can be any of these offloading capability:
1806                   vlan_insert, ipv4_cksum, udp_cksum, tcp_cksum,
1807                   sctp_cksum, tcp_tso, udp_tso, outer_ipv4_cksum,
1808                   qinq_insert, vxlan_tnl_tso, gre_tnl_tso,
1809                   ipip_tnl_tso, geneve_tnl_tso, macsec_insert,
1810                   mt_lockfree, multi_segs, mbuf_fast_free, security
1811
1812 This command should be run when the port is stopped, or else it will fail.
1813
1814 config per queue Tx offloading
1815 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1816
1817 Enable or disable a per queue Tx offloading only on a specific Tx queue::
1818
1819    testpmd> port (port_id) txq (queue_id) tx_offload (offloading) on|off
1820
1821 * ``offloading``: can be any of these offloading capability:
1822                   vlan_insert, ipv4_cksum, udp_cksum, tcp_cksum,
1823                   sctp_cksum, tcp_tso, udp_tso, outer_ipv4_cksum,
1824                   qinq_insert, vxlan_tnl_tso, gre_tnl_tso,
1825                   ipip_tnl_tso, geneve_tnl_tso, macsec_insert,
1826                   mt_lockfree, multi_segs, mbuf_fast_free, security
1827
1828 This command should be run when the port is stopped, or else it will fail.
1829
1830 Config VXLAN Encap outer layers
1831 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1832
1833 Configure the outer layer to encapsulate a packet inside a VXLAN tunnel::
1834
1835  set vxlan ip-version (ipv4|ipv6) vni (vni) udp-src (udp-src) \
1836  udp-dst (udp-dst) ip-src (ip-src) ip-dst (ip-dst) eth-src (eth-src) \
1837  eth-dst (eth-dst)
1838
1839  set vxlan-with-vlan ip-version (ipv4|ipv6) vni (vni) udp-src (udp-src) \
1840  udp-dst (udp-dst) ip-src (ip-src) ip-dst (ip-dst) vlan-tci (vlan-tci) \
1841  eth-src (eth-src) eth-dst (eth-dst)
1842
1843  set vxlan-tos-ttl ip-version (ipv4|ipv6) vni (vni) udp-src (udp-src) \
1844  udp-dst (udp-dst) ip-tos (ip-tos) ip-ttl (ip-ttl) ip-src (ip-src) \
1845  ip-dst (ip-dst) eth-src (eth-src) eth-dst (eth-dst)
1846
1847 These commands will set an internal configuration inside testpmd, any following
1848 flow rule using the action vxlan_encap will use the last configuration set.
1849 To have a different encapsulation header, one of those commands must be called
1850 before the flow rule creation.
1851
1852 Config NVGRE Encap outer layers
1853 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1854
1855 Configure the outer layer to encapsulate a packet inside a NVGRE tunnel::
1856
1857  set nvgre ip-version (ipv4|ipv6) tni (tni) ip-src (ip-src) ip-dst (ip-dst) \
1858         eth-src (eth-src) eth-dst (eth-dst)
1859  set nvgre-with-vlan ip-version (ipv4|ipv6) tni (tni) ip-src (ip-src) \
1860         ip-dst (ip-dst) vlan-tci (vlan-tci) eth-src (eth-src) eth-dst (eth-dst)
1861
1862 These commands will set an internal configuration inside testpmd, any following
1863 flow rule using the action nvgre_encap will use the last configuration set.
1864 To have a different encapsulation header, one of those commands must be called
1865 before the flow rule creation.
1866
1867 Config L2 Encap
1868 ~~~~~~~~~~~~~~~
1869
1870 Configure the l2 to be used when encapsulating a packet with L2::
1871
1872  set l2_encap ip-version (ipv4|ipv6) eth-src (eth-src) eth-dst (eth-dst)
1873  set l2_encap-with-vlan ip-version (ipv4|ipv6) vlan-tci (vlan-tci) \
1874         eth-src (eth-src) eth-dst (eth-dst)
1875
1876 Those commands will set an internal configuration inside testpmd, any following
1877 flow rule using the action l2_encap will use the last configuration set.
1878 To have a different encapsulation header, one of those commands must be called
1879 before the flow rule creation.
1880
1881 Config L2 Decap
1882 ~~~~~~~~~~~~~~~
1883
1884 Configure the l2 to be removed when decapsulating a packet with L2::
1885
1886  set l2_decap ip-version (ipv4|ipv6)
1887  set l2_decap-with-vlan ip-version (ipv4|ipv6)
1888
1889 Those commands will set an internal configuration inside testpmd, any following
1890 flow rule using the action l2_decap will use the last configuration set.
1891 To have a different encapsulation header, one of those commands must be called
1892 before the flow rule creation.
1893
1894 Config MPLSoGRE Encap outer layers
1895 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1896
1897 Configure the outer layer to encapsulate a packet inside a MPLSoGRE tunnel::
1898
1899  set mplsogre_encap ip-version (ipv4|ipv6) label (label) \
1900         ip-src (ip-src) ip-dst (ip-dst) eth-src (eth-src) eth-dst (eth-dst)
1901  set mplsogre_encap-with-vlan ip-version (ipv4|ipv6) label (label) \
1902         ip-src (ip-src) ip-dst (ip-dst) vlan-tci (vlan-tci) \
1903         eth-src (eth-src) eth-dst (eth-dst)
1904
1905 These commands will set an internal configuration inside testpmd, any following
1906 flow rule using the action mplsogre_encap will use the last configuration set.
1907 To have a different encapsulation header, one of those commands must be called
1908 before the flow rule creation.
1909
1910 Config MPLSoGRE Decap outer layers
1911 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1912
1913 Configure the outer layer to decapsulate MPLSoGRE packet::
1914
1915  set mplsogre_decap ip-version (ipv4|ipv6)
1916  set mplsogre_decap-with-vlan ip-version (ipv4|ipv6)
1917
1918 These commands will set an internal configuration inside testpmd, any following
1919 flow rule using the action mplsogre_decap will use the last configuration set.
1920 To have a different decapsulation header, one of those commands must be called
1921 before the flow rule creation.
1922
1923 Config MPLSoUDP Encap outer layers
1924 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1925
1926 Configure the outer layer to encapsulate a packet inside a MPLSoUDP tunnel::
1927
1928  set mplsoudp_encap ip-version (ipv4|ipv6) label (label) udp-src (udp-src) \
1929         udp-dst (udp-dst) ip-src (ip-src) ip-dst (ip-dst) \
1930         eth-src (eth-src) eth-dst (eth-dst)
1931  set mplsoudp_encap-with-vlan ip-version (ipv4|ipv6) label (label) \
1932         udp-src (udp-src) udp-dst (udp-dst) ip-src (ip-src) ip-dst (ip-dst) \
1933         vlan-tci (vlan-tci) eth-src (eth-src) eth-dst (eth-dst)
1934
1935 These commands will set an internal configuration inside testpmd, any following
1936 flow rule using the action mplsoudp_encap will use the last configuration set.
1937 To have a different encapsulation header, one of those commands must be called
1938 before the flow rule creation.
1939
1940 Config MPLSoUDP Decap outer layers
1941 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1942
1943 Configure the outer layer to decapsulate MPLSoUDP packet::
1944
1945  set mplsoudp_decap ip-version (ipv4|ipv6)
1946  set mplsoudp_decap-with-vlan ip-version (ipv4|ipv6)
1947
1948 These commands will set an internal configuration inside testpmd, any following
1949 flow rule using the action mplsoudp_decap will use the last configuration set.
1950 To have a different decapsulation header, one of those commands must be called
1951 before the flow rule creation.
1952
1953 Config Raw Encapsulation
1954 ~~~~~~~~~~~~~~~~~~~~~~~~~
1955
1956 Configure the raw data to be used when encapsulating a packet by
1957 rte_flow_action_raw_encap::
1958
1959  set raw_encap {index} {item} [/ {item} [...]] / end_set
1960
1961 There are multiple global buffers for ``raw_encap``, this command will set one
1962 internal buffer index by ``{index}``.
1963 If there is no ``{index}`` specified::
1964
1965  set raw_encap {item} [/ {item} [...]] / end_set
1966
1967 the default index ``0`` is used.
1968 In order to use different encapsulating header, ``index`` must be specified
1969 during the flow rule creation::
1970
1971  testpmd> flow create 0 egress pattern eth / ipv4 / end actions
1972         raw_encap index 2 / end
1973
1974 Otherwise the default index ``0`` is used.
1975
1976 Config Raw Decapsulation
1977 ~~~~~~~~~~~~~~~~~~~~~~~~
1978
1979 Configure the raw data to be used when decapsulating a packet by
1980 rte_flow_action_raw_decap::
1981
1982  set raw_decap {index} {item} [/ {item} [...]] / end_set
1983
1984 There are multiple global buffers for ``raw_decap``, this command will set
1985 one internal buffer index by ``{index}``.
1986 If there is no ``{index}`` specified::
1987
1988  set raw_decap {item} [/ {item} [...]] / end_set
1989
1990 the default index ``0`` is used.
1991 In order to use different decapsulating header, ``index`` must be specified
1992 during the flow rule creation::
1993
1994  testpmd> flow create 0 egress pattern eth / ipv4 / end actions
1995           raw_encap index 3 / end
1996
1997 Otherwise the default index ``0`` is used.
1998
1999 Set fec mode
2000 ~~~~~~~~~~~~
2001
2002 Set fec mode for a specific port::
2003
2004   testpmd> set port (port_id) fec_mode auto|off|rs|baser
2005
2006 Config Sample actions list
2007 ~~~~~~~~~~~~~~~~~~~~~~~~~~
2008
2009 Configure the sample actions list to be used when sampling a packet by
2010 rte_flow_action_sample::
2011
2012  set sample_actions {index} {action} [/ {action} [...]] / end
2013
2014 There are multiple global buffers for ``sample_actions``, this command will set
2015 one internal buffer index by ``{index}``.
2016
2017 In order to use different sample actions list, ``index`` must be specified
2018 during the flow rule creation::
2019
2020  testpmd> flow create 0 ingress pattern eth / ipv4 / end actions
2021         sample ratio 2 index 2 / end
2022
2023 Otherwise the default index ``0`` is used.
2024
2025 Port Functions
2026 --------------
2027
2028 The following sections show functions for configuring ports.
2029
2030 .. note::
2031
2032    Port configuration changes only become active when forwarding is started/restarted.
2033
2034 port attach
2035 ~~~~~~~~~~~
2036
2037 Attach a port specified by pci address or virtual device args::
2038
2039    testpmd> port attach (identifier)
2040
2041 To attach a new pci device, the device should be recognized by kernel first.
2042 Then it should be moved under DPDK management.
2043 Finally the port can be attached to testpmd.
2044
2045 For example, to move a pci device using ixgbe under DPDK management:
2046
2047 .. code-block:: console
2048
2049    # Check the status of the available devices.
2050    ./usertools/dpdk-devbind.py --status
2051
2052    Network devices using DPDK-compatible driver
2053    ============================================
2054    <none>
2055
2056    Network devices using kernel driver
2057    ===================================
2058    0000:0a:00.0 '82599ES 10-Gigabit' if=eth2 drv=ixgbe unused=
2059
2060
2061    # Bind the device to igb_uio.
2062    sudo ./usertools/dpdk-devbind.py -b igb_uio 0000:0a:00.0
2063
2064
2065    # Recheck the status of the devices.
2066    ./usertools/dpdk-devbind.py --status
2067    Network devices using DPDK-compatible driver
2068    ============================================
2069    0000:0a:00.0 '82599ES 10-Gigabit' drv=igb_uio unused=
2070
2071 To attach a port created by virtual device, above steps are not needed.
2072
2073 For example, to attach a port whose pci address is 0000:0a:00.0.
2074
2075 .. code-block:: console
2076
2077    testpmd> port attach 0000:0a:00.0
2078    Attaching a new port...
2079    EAL: PCI device 0000:0a:00.0 on NUMA socket -1
2080    EAL:   probe driver: 8086:10fb rte_ixgbe_pmd
2081    EAL:   PCI memory mapped at 0x7f83bfa00000
2082    EAL:   PCI memory mapped at 0x7f83bfa80000
2083    PMD: eth_ixgbe_dev_init(): MAC: 2, PHY: 18, SFP+: 5
2084    PMD: eth_ixgbe_dev_init(): port 0 vendorID=0x8086 deviceID=0x10fb
2085    Port 0 is attached. Now total ports is 1
2086    Done
2087
2088 For example, to attach a port created by pcap PMD.
2089
2090 .. code-block:: console
2091
2092    testpmd> port attach net_pcap0
2093    Attaching a new port...
2094    PMD: Initializing pmd_pcap for net_pcap0
2095    PMD: Creating pcap-backed ethdev on numa socket 0
2096    Port 0 is attached. Now total ports is 1
2097    Done
2098
2099 In this case, identifier is ``net_pcap0``.
2100 This identifier format is the same as ``--vdev`` format of DPDK applications.
2101
2102 For example, to re-attach a bonded port which has been previously detached,
2103 the mode and slave parameters must be given.
2104
2105 .. code-block:: console
2106
2107    testpmd> port attach net_bond_0,mode=0,slave=1
2108    Attaching a new port...
2109    EAL: Initializing pmd_bond for net_bond_0
2110    EAL: Create bonded device net_bond_0 on port 0 in mode 0 on socket 0.
2111    Port 0 is attached. Now total ports is 1
2112    Done
2113
2114
2115 port detach
2116 ~~~~~~~~~~~
2117
2118 Detach a specific port::
2119
2120    testpmd> port detach (port_id)
2121
2122 Before detaching a port, the port should be stopped and closed.
2123
2124 For example, to detach a pci device port 0.
2125
2126 .. code-block:: console
2127
2128    testpmd> port stop 0
2129    Stopping ports...
2130    Done
2131    testpmd> port close 0
2132    Closing ports...
2133    Done
2134
2135    testpmd> port detach 0
2136    Detaching a port...
2137    EAL: PCI device 0000:0a:00.0 on NUMA socket -1
2138    EAL:   remove driver: 8086:10fb rte_ixgbe_pmd
2139    EAL:   PCI memory unmapped at 0x7f83bfa00000
2140    EAL:   PCI memory unmapped at 0x7f83bfa80000
2141    Done
2142
2143
2144 For example, to detach a virtual device port 0.
2145
2146 .. code-block:: console
2147
2148    testpmd> port stop 0
2149    Stopping ports...
2150    Done
2151    testpmd> port close 0
2152    Closing ports...
2153    Done
2154
2155    testpmd> port detach 0
2156    Detaching a port...
2157    PMD: Closing pcap ethdev on numa socket 0
2158    Port 'net_pcap0' is detached. Now total ports is 0
2159    Done
2160
2161 To remove a pci device completely from the system, first detach the port from testpmd.
2162 Then the device should be moved under kernel management.
2163 Finally the device can be removed using kernel pci hotplug functionality.
2164
2165 For example, to move a pci device under kernel management:
2166
2167 .. code-block:: console
2168
2169    sudo ./usertools/dpdk-devbind.py -b ixgbe 0000:0a:00.0
2170
2171    ./usertools/dpdk-devbind.py --status
2172
2173    Network devices using DPDK-compatible driver
2174    ============================================
2175    <none>
2176
2177    Network devices using kernel driver
2178    ===================================
2179    0000:0a:00.0 '82599ES 10-Gigabit' if=eth2 drv=ixgbe unused=igb_uio
2180
2181 To remove a port created by a virtual device, above steps are not needed.
2182
2183 port start
2184 ~~~~~~~~~~
2185
2186 Start all ports or a specific port::
2187
2188    testpmd> port start (port_id|all)
2189
2190 port stop
2191 ~~~~~~~~~
2192
2193 Stop all ports or a specific port::
2194
2195    testpmd> port stop (port_id|all)
2196
2197 port close
2198 ~~~~~~~~~~
2199
2200 Close all ports or a specific port::
2201
2202    testpmd> port close (port_id|all)
2203
2204 port reset
2205 ~~~~~~~~~~
2206
2207 Reset all ports or a specific port::
2208
2209    testpmd> port reset (port_id|all)
2210
2211 User should stop port(s) before resetting and (re-)start after reset.
2212
2213 port config - queue ring size
2214 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2215
2216 Configure a rx/tx queue ring size::
2217
2218    testpmd> port (port_id) (rxq|txq) (queue_id) ring_size (value)
2219
2220 Only take effect after command that (re-)start the port or command that setup specific queue.
2221
2222 port start/stop queue
2223 ~~~~~~~~~~~~~~~~~~~~~
2224
2225 Start/stop a rx/tx queue on a specific port::
2226
2227    testpmd> port (port_id) (rxq|txq) (queue_id) (start|stop)
2228
2229 port config - queue deferred start
2230 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2231
2232 Switch on/off deferred start of a specific port queue::
2233
2234    testpmd> port (port_id) (rxq|txq) (queue_id) deferred_start (on|off)
2235
2236 port setup queue
2237 ~~~~~~~~~~~~~~~~~~~~~
2238
2239 Setup a rx/tx queue on a specific port::
2240
2241    testpmd> port (port_id) (rxq|txq) (queue_id) setup
2242
2243 Only take effect when port is started.
2244
2245 port config - speed
2246 ~~~~~~~~~~~~~~~~~~~
2247
2248 Set the speed and duplex mode for all ports or a specific port::
2249
2250    testpmd> port config (port_id|all) speed (10|100|1000|10000|25000|40000|50000|100000|200000|auto) \
2251             duplex (half|full|auto)
2252
2253 port config - queues/descriptors
2254 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2255
2256 Set number of queues/descriptors for rxq, txq, rxd and txd::
2257
2258    testpmd> port config all (rxq|txq|rxd|txd) (value)
2259
2260 This is equivalent to the ``--rxq``, ``--txq``, ``--rxd`` and ``--txd`` command-line options.
2261
2262 port config - max-pkt-len
2263 ~~~~~~~~~~~~~~~~~~~~~~~~~
2264
2265 Set the maximum packet length::
2266
2267    testpmd> port config all max-pkt-len (value)
2268
2269 This is equivalent to the ``--max-pkt-len`` command-line option.
2270
2271 port config - max-lro-pkt-size
2272 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2273
2274 Set the maximum LRO aggregated packet size::
2275
2276    testpmd> port config all max-lro-pkt-size (value)
2277
2278 This is equivalent to the ``--max-lro-pkt-size`` command-line option.
2279
2280 port config - Drop Packets
2281 ~~~~~~~~~~~~~~~~~~~~~~~~~~
2282
2283 Enable or disable packet drop on all RX queues of all ports when no receive buffers available::
2284
2285    testpmd> port config all drop-en (on|off)
2286
2287 Packet dropping when no receive buffers available is off by default.
2288
2289 The ``on`` option is equivalent to the ``--enable-drop-en`` command-line option.
2290
2291 port config - RSS
2292 ~~~~~~~~~~~~~~~~~
2293
2294 Set the RSS (Receive Side Scaling) mode on or off::
2295
2296    testpmd> port config all rss (all|default|eth|vlan|ip|tcp|udp|sctp|ether|port|vxlan|geneve|nvgre|vxlan-gpe|l2tpv3|esp|ah|pfcp|ecpri|mpls|none)
2297
2298 RSS is on by default.
2299
2300 The ``all`` option is equivalent to eth|vlan|ip|tcp|udp|sctp|ether|l2tpv3|esp|ah|pfcp.
2301
2302 The ``default`` option enables all supported RSS types reported by device info.
2303
2304 The ``none`` option is equivalent to the ``--disable-rss`` command-line option.
2305
2306 port config - RSS Reta
2307 ~~~~~~~~~~~~~~~~~~~~~~
2308
2309 Set the RSS (Receive Side Scaling) redirection table::
2310
2311    testpmd> port config all rss reta (hash,queue)[,(hash,queue)]
2312
2313 port config - DCB
2314 ~~~~~~~~~~~~~~~~~
2315
2316 Set the DCB mode for an individual port::
2317
2318    testpmd> port config (port_id) dcb vt (on|off) (traffic_class) pfc (on|off)
2319
2320 The traffic class should be 4 or 8.
2321
2322 port config - Burst
2323 ~~~~~~~~~~~~~~~~~~~
2324
2325 Set the number of packets per burst::
2326
2327    testpmd> port config all burst (value)
2328
2329 This is equivalent to the ``--burst`` command-line option.
2330
2331 port config - Threshold
2332 ~~~~~~~~~~~~~~~~~~~~~~~
2333
2334 Set thresholds for TX/RX queues::
2335
2336    testpmd> port config all (threshold) (value)
2337
2338 Where the threshold type can be:
2339
2340 * ``txpt:`` Set the prefetch threshold register of the TX rings, 0 <= value <= 255.
2341
2342 * ``txht:`` Set the host threshold register of the TX rings, 0 <= value <= 255.
2343
2344 * ``txwt:`` Set the write-back threshold register of the TX rings, 0 <= value <= 255.
2345
2346 * ``rxpt:`` Set the prefetch threshold register of the RX rings, 0 <= value <= 255.
2347
2348 * ``rxht:`` Set the host threshold register of the RX rings, 0 <= value <= 255.
2349
2350 * ``rxwt:`` Set the write-back threshold register of the RX rings, 0 <= value <= 255.
2351
2352 * ``txfreet:`` Set the transmit free threshold of the TX rings, 0 <= value <= txd.
2353
2354 * ``rxfreet:`` Set the transmit free threshold of the RX rings, 0 <= value <= rxd.
2355
2356 * ``txrst:`` Set the transmit RS bit threshold of TX rings, 0 <= value <= txd.
2357
2358 These threshold options are also available from the command-line.
2359
2360 port config pctype mapping
2361 ~~~~~~~~~~~~~~~~~~~~~~~~~~
2362
2363 Reset pctype mapping table::
2364
2365    testpmd> port config (port_id) pctype mapping reset
2366
2367 Update hardware defined pctype to software defined flow type mapping table::
2368
2369    testpmd> port config (port_id) pctype mapping update (pctype_id_0[,pctype_id_1]*) (flow_type_id)
2370
2371 where:
2372
2373 * ``pctype_id_x``: hardware pctype id as index of bit in bitmask value of the pctype mapping table.
2374
2375 * ``flow_type_id``: software flow type id as the index of the pctype mapping table.
2376
2377 port config input set
2378 ~~~~~~~~~~~~~~~~~~~~~
2379
2380 Config RSS/FDIR/FDIR flexible payload input set for some pctype::
2381
2382    testpmd> port config (port_id) pctype (pctype_id) \
2383             (hash_inset|fdir_inset|fdir_flx_inset) \
2384             (get|set|clear) field (field_idx)
2385
2386 Clear RSS/FDIR/FDIR flexible payload input set for some pctype::
2387
2388    testpmd> port config (port_id) pctype (pctype_id) \
2389             (hash_inset|fdir_inset|fdir_flx_inset) clear all
2390
2391 where:
2392
2393 * ``pctype_id``: hardware packet classification types.
2394 * ``field_idx``: hardware field index.
2395
2396 port config udp_tunnel_port
2397 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
2398
2399 Add/remove UDP tunnel port for VXLAN/GENEVE tunneling protocols::
2400
2401     testpmd> port config (port_id) udp_tunnel_port add|rm vxlan|geneve|vxlan-gpe|ecpri (udp_port)
2402
2403 port config tx_metadata
2404 ~~~~~~~~~~~~~~~~~~~~~~~
2405
2406 Set Tx metadata value per port.
2407 testpmd will add this value to any Tx packet sent from this port::
2408
2409    testpmd> port config (port_id) tx_metadata (value)
2410
2411 port config dynf
2412 ~~~~~~~~~~~~~~~~
2413
2414 Set/clear dynamic flag per port.
2415 testpmd will register this flag in the mbuf (same registration
2416 for both Tx and Rx). Then set/clear this flag for each Tx
2417 packet sent from this port. The set bit only works for Tx packet::
2418
2419    testpmd> port config (port_id) dynf (name) (set|clear)
2420
2421 port config mtu
2422 ~~~~~~~~~~~~~~~
2423
2424 To configure MTU(Maximum Transmission Unit) on devices using testpmd::
2425
2426    testpmd> port config mtu (port_id) (value)
2427
2428 port config rss hash key
2429 ~~~~~~~~~~~~~~~~~~~~~~~~
2430
2431 To configure the RSS hash key used to compute the RSS
2432 hash of input [IP] packets received on port::
2433
2434    testpmd> port config <port_id> rss-hash-key (ipv4|ipv4-frag|\
2435                      ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|\
2436                      ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|\
2437                      ipv6-other|l2-payload|ipv6-ex|ipv6-tcp-ex|\
2438                      ipv6-udp-ex <string of hex digits \
2439                      (variable length, NIC dependent)>)
2440
2441 Device Functions
2442 ----------------
2443
2444 The following sections show functions for device operations.
2445
2446 device detach
2447 ~~~~~~~~~~~~~
2448
2449 Detach a device specified by pci address or virtual device args::
2450
2451    testpmd> device detach (identifier)
2452
2453 Before detaching a device associated with ports, the ports should be stopped and closed.
2454
2455 For example, to detach a pci device whose address is 0002:03:00.0.
2456
2457 .. code-block:: console
2458
2459     testpmd> device detach 0002:03:00.0
2460     Removing a device...
2461     Port 1 is now closed
2462     EAL: Releasing pci mapped resource for 0002:03:00.0
2463     EAL: Calling pci_unmap_resource for 0002:03:00.0 at 0x218a050000
2464     EAL: Calling pci_unmap_resource for 0002:03:00.0 at 0x218c050000
2465     Device 0002:03:00.0 is detached
2466     Now total ports is 1
2467
2468 For example, to detach a port created by pcap PMD.
2469
2470 .. code-block:: console
2471
2472     testpmd> device detach net_pcap0
2473     Removing a device...
2474     Port 0 is now closed
2475     Device net_pcap0 is detached
2476     Now total ports is 0
2477     Done
2478
2479 In this case, identifier is ``net_pcap0``.
2480 This identifier format is the same as ``--vdev`` format of DPDK applications.
2481
2482 Link Bonding Functions
2483 ----------------------
2484
2485 The Link Bonding functions make it possible to dynamically create and
2486 manage link bonding devices from within testpmd interactive prompt.
2487
2488 create bonded device
2489 ~~~~~~~~~~~~~~~~~~~~
2490
2491 Create a new bonding device::
2492
2493    testpmd> create bonded device (mode) (socket)
2494
2495 For example, to create a bonded device in mode 1 on socket 0::
2496
2497    testpmd> create bonded device 1 0
2498    created new bonded device (port X)
2499
2500 add bonding slave
2501 ~~~~~~~~~~~~~~~~~
2502
2503 Adds Ethernet device to a Link Bonding device::
2504
2505    testpmd> add bonding slave (slave id) (port id)
2506
2507 For example, to add Ethernet device (port 6) to a Link Bonding device (port 10)::
2508
2509    testpmd> add bonding slave 6 10
2510
2511
2512 remove bonding slave
2513 ~~~~~~~~~~~~~~~~~~~~
2514
2515 Removes an Ethernet slave device from a Link Bonding device::
2516
2517    testpmd> remove bonding slave (slave id) (port id)
2518
2519 For example, to remove Ethernet slave device (port 6) to a Link Bonding device (port 10)::
2520
2521    testpmd> remove bonding slave 6 10
2522
2523 set bonding mode
2524 ~~~~~~~~~~~~~~~~
2525
2526 Set the Link Bonding mode of a Link Bonding device::
2527
2528    testpmd> set bonding mode (value) (port id)
2529
2530 For example, to set the bonding mode of a Link Bonding device (port 10) to broadcast (mode 3)::
2531
2532    testpmd> set bonding mode 3 10
2533
2534 set bonding primary
2535 ~~~~~~~~~~~~~~~~~~~
2536
2537 Set an Ethernet slave device as the primary device on a Link Bonding device::
2538
2539    testpmd> set bonding primary (slave id) (port id)
2540
2541 For example, to set the Ethernet slave device (port 6) as the primary port of a Link Bonding device (port 10)::
2542
2543    testpmd> set bonding primary 6 10
2544
2545 set bonding mac
2546 ~~~~~~~~~~~~~~~
2547
2548 Set the MAC address of a Link Bonding device::
2549
2550    testpmd> set bonding mac (port id) (mac)
2551
2552 For example, to set the MAC address of a Link Bonding device (port 10) to 00:00:00:00:00:01::
2553
2554    testpmd> set bonding mac 10 00:00:00:00:00:01
2555
2556 set bonding balance_xmit_policy
2557 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2558
2559 Set the transmission policy for a Link Bonding device when it is in Balance XOR mode::
2560
2561    testpmd> set bonding balance_xmit_policy (port_id) (l2|l23|l34)
2562
2563 For example, set a Link Bonding device (port 10) to use a balance policy of layer 3+4 (IP addresses & UDP ports)::
2564
2565    testpmd> set bonding balance_xmit_policy 10 l34
2566
2567
2568 set bonding mon_period
2569 ~~~~~~~~~~~~~~~~~~~~~~
2570
2571 Set the link status monitoring polling period in milliseconds for a bonding device.
2572
2573 This adds support for PMD slave devices which do not support link status interrupts.
2574 When the mon_period is set to a value greater than 0 then all PMD's which do not support
2575 link status ISR will be queried every polling interval to check if their link status has changed::
2576
2577    testpmd> set bonding mon_period (port_id) (value)
2578
2579 For example, to set the link status monitoring polling period of bonded device (port 5) to 150ms::
2580
2581    testpmd> set bonding mon_period 5 150
2582
2583
2584 set bonding lacp dedicated_queue
2585 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2586
2587 Enable dedicated tx/rx queues on bonding devices slaves to handle LACP control plane traffic
2588 when in mode 4 (link-aggregation-802.3ad)::
2589
2590    testpmd> set bonding lacp dedicated_queues (port_id) (enable|disable)
2591
2592
2593 set bonding agg_mode
2594 ~~~~~~~~~~~~~~~~~~~~
2595
2596 Enable one of the specific aggregators mode when in mode 4 (link-aggregation-802.3ad)::
2597
2598    testpmd> set bonding agg_mode (port_id) (bandwidth|count|stable)
2599
2600
2601 show bonding config
2602 ~~~~~~~~~~~~~~~~~~~
2603
2604 Show the current configuration of a Link Bonding device::
2605
2606    testpmd> show bonding config (port id)
2607
2608 For example,
2609 to show the configuration a Link Bonding device (port 9) with 3 slave devices (1, 3, 4)
2610 in balance mode with a transmission policy of layer 2+3::
2611
2612    testpmd> show bonding config 9
2613         Bonding mode: 2
2614         Balance Xmit Policy: BALANCE_XMIT_POLICY_LAYER23
2615         Slaves (3): [1 3 4]
2616         Active Slaves (3): [1 3 4]
2617         Primary: [3]
2618
2619
2620 Register Functions
2621 ------------------
2622
2623 The Register Functions can be used to read from and write to registers on the network card referenced by a port number.
2624 This is mainly useful for debugging purposes.
2625 Reference should be made to the appropriate datasheet for the network card for details on the register addresses
2626 and fields that can be accessed.
2627
2628 read reg
2629 ~~~~~~~~
2630
2631 Display the value of a port register::
2632
2633    testpmd> read reg (port_id) (address)
2634
2635 For example, to examine the Flow Director control register (FDIRCTL, 0x0000EE000) on an Intel 82599 10 GbE Controller::
2636
2637    testpmd> read reg 0 0xEE00
2638    port 0 PCI register at offset 0xEE00: 0x4A060029 (1241907241)
2639
2640 read regfield
2641 ~~~~~~~~~~~~~
2642
2643 Display a port register bit field::
2644
2645    testpmd> read regfield (port_id) (address) (bit_x) (bit_y)
2646
2647 For example, reading the lowest two bits from the register in the example above::
2648
2649    testpmd> read regfield 0 0xEE00 0 1
2650    port 0 PCI register at offset 0xEE00: bits[0, 1]=0x1 (1)
2651
2652 read regbit
2653 ~~~~~~~~~~~
2654
2655 Display a single port register bit::
2656
2657    testpmd> read regbit (port_id) (address) (bit_x)
2658
2659 For example, reading the lowest bit from the register in the example above::
2660
2661    testpmd> read regbit 0 0xEE00 0
2662    port 0 PCI register at offset 0xEE00: bit 0=1
2663
2664 write reg
2665 ~~~~~~~~~
2666
2667 Set the value of a port register::
2668
2669    testpmd> write reg (port_id) (address) (value)
2670
2671 For example, to clear a register::
2672
2673    testpmd> write reg 0 0xEE00 0x0
2674    port 0 PCI register at offset 0xEE00: 0x00000000 (0)
2675
2676 write regfield
2677 ~~~~~~~~~~~~~~
2678
2679 Set bit field of a port register::
2680
2681    testpmd> write regfield (port_id) (address) (bit_x) (bit_y) (value)
2682
2683 For example, writing to the register cleared in the example above::
2684
2685    testpmd> write regfield 0 0xEE00 0 1 2
2686    port 0 PCI register at offset 0xEE00: 0x00000002 (2)
2687
2688 write regbit
2689 ~~~~~~~~~~~~
2690
2691 Set single bit value of a port register::
2692
2693    testpmd> write regbit (port_id) (address) (bit_x) (value)
2694
2695 For example, to set the high bit in the register from the example above::
2696
2697    testpmd> write regbit 0 0xEE00 31 1
2698    port 0 PCI register at offset 0xEE00: 0x8000000A (2147483658)
2699
2700 Traffic Metering and Policing
2701 -----------------------------
2702
2703 The following section shows functions for configuring traffic metering and
2704 policing on the ethernet device through the use of generic ethdev API.
2705
2706 show port traffic management capability
2707 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2708
2709 Show traffic metering and policing capability of the port::
2710
2711    testpmd> show port meter cap (port_id)
2712
2713 add port meter profile (srTCM rfc2967)
2714 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2715
2716 Add meter profile (srTCM rfc2697) to the ethernet device::
2717
2718    testpmd> add port meter profile srtcm_rfc2697 (port_id) (profile_id) \
2719    (cir) (cbs) (ebs) (packet_mode)
2720
2721 where:
2722
2723 * ``profile_id``: ID for the meter profile.
2724 * ``cir``: Committed Information Rate (CIR) (bytes per second or packets per second).
2725 * ``cbs``: Committed Burst Size (CBS) (bytes or packets).
2726 * ``ebs``: Excess Burst Size (EBS) (bytes or packets).
2727 * ``packet_mode``: Packets mode for meter profile.
2728
2729 add port meter profile (trTCM rfc2968)
2730 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2731
2732 Add meter profile (srTCM rfc2698) to the ethernet device::
2733
2734    testpmd> add port meter profile trtcm_rfc2698 (port_id) (profile_id) \
2735    (cir) (pir) (cbs) (pbs) (packet_mode)
2736
2737 where:
2738
2739 * ``profile_id``: ID for the meter profile.
2740 * ``cir``: Committed information rate (bytes per second or packets per second).
2741 * ``pir``: Peak information rate (bytes per second or packets per second).
2742 * ``cbs``: Committed burst size (bytes or packets).
2743 * ``pbs``: Peak burst size (bytes or packets).
2744 * ``packet_mode``: Packets mode for meter profile.
2745
2746 add port meter profile (trTCM rfc4115)
2747 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2748
2749 Add meter profile (trTCM rfc4115) to the ethernet device::
2750
2751    testpmd> add port meter profile trtcm_rfc4115 (port_id) (profile_id) \
2752    (cir) (eir) (cbs) (ebs) (packet_mode)
2753
2754 where:
2755
2756 * ``profile_id``: ID for the meter profile.
2757 * ``cir``: Committed information rate (bytes per second or packets per second).
2758 * ``eir``: Excess information rate (bytes per second or packets per second).
2759 * ``cbs``: Committed burst size (bytes or packets).
2760 * ``ebs``: Excess burst size (bytes or packets).
2761 * ``packet_mode``: Packets mode for meter profile.
2762
2763 delete port meter profile
2764 ~~~~~~~~~~~~~~~~~~~~~~~~~
2765
2766 Delete meter profile from the ethernet device::
2767
2768    testpmd> del port meter profile (port_id) (profile_id)
2769
2770 create port meter
2771 ~~~~~~~~~~~~~~~~~
2772
2773 Create new meter object for the ethernet device::
2774
2775    testpmd> create port meter (port_id) (mtr_id) (profile_id) \
2776    (meter_enable) (g_action) (y_action) (r_action) (stats_mask) (shared) \
2777    (use_pre_meter_color) [(dscp_tbl_entry0) (dscp_tbl_entry1)...\
2778    (dscp_tbl_entry63)]
2779
2780 where:
2781
2782 * ``mtr_id``: meter object ID.
2783 * ``profile_id``: ID for the meter profile.
2784 * ``meter_enable``: When this parameter has a non-zero value, the meter object
2785   gets enabled at the time of creation, otherwise remains disabled.
2786 * ``g_action``: Policer action for the packet with green color.
2787 * ``y_action``: Policer action for the packet with yellow color.
2788 * ``r_action``: Policer action for the packet with red color.
2789 * ``stats_mask``: Mask of statistics counter types to be enabled for the
2790   meter object.
2791 * ``shared``:  When this parameter has a non-zero value, the meter object is
2792   shared by multiple flows. Otherwise, meter object is used by single flow.
2793 * ``use_pre_meter_color``: When this parameter has a non-zero value, the
2794   input color for the current meter object is determined by the latest meter
2795   object in the same flow. Otherwise, the current meter object uses the
2796   *dscp_table* to determine the input color.
2797 * ``dscp_tbl_entryx``: DSCP table entry x providing meter providing input
2798   color, 0 <= x <= 63.
2799
2800 enable port meter
2801 ~~~~~~~~~~~~~~~~~
2802
2803 Enable meter for the ethernet device::
2804
2805    testpmd> enable port meter (port_id) (mtr_id)
2806
2807 disable port meter
2808 ~~~~~~~~~~~~~~~~~~
2809
2810 Disable meter for the ethernet device::
2811
2812    testpmd> disable port meter (port_id) (mtr_id)
2813
2814 delete port meter
2815 ~~~~~~~~~~~~~~~~~
2816
2817 Delete meter for the ethernet device::
2818
2819    testpmd> del port meter (port_id) (mtr_id)
2820
2821 Set port meter profile
2822 ~~~~~~~~~~~~~~~~~~~~~~
2823
2824 Set meter profile for the ethernet device::
2825
2826    testpmd> set port meter profile (port_id) (mtr_id) (profile_id)
2827
2828 set port meter dscp table
2829 ~~~~~~~~~~~~~~~~~~~~~~~~~
2830
2831 Set meter dscp table for the ethernet device::
2832
2833    testpmd> set port meter dscp table (port_id) (mtr_id) [(dscp_tbl_entry0) \
2834    (dscp_tbl_entry1)...(dscp_tbl_entry63)]
2835
2836 set port meter policer action
2837 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2838
2839 Set meter policer action for the ethernet device::
2840
2841    testpmd> set port meter policer action (port_id) (mtr_id) (action_mask) \
2842    (action0) [(action1) (action1)]
2843
2844 where:
2845
2846 * ``action_mask``: Bit mask indicating which policer actions need to be
2847   updated. One or more policer actions can be updated in a single function
2848   invocation. To update the policer action associated with color C, bit
2849   (1 << C) needs to be set in *action_mask* and element at position C
2850   in the *actions* array needs to be valid.
2851 * ``actionx``: Policer action for the color x,
2852   RTE_MTR_GREEN <= x < RTE_MTR_COLORS
2853
2854 set port meter stats mask
2855 ~~~~~~~~~~~~~~~~~~~~~~~~~
2856
2857 Set meter stats mask for the ethernet device::
2858
2859    testpmd> set port meter stats mask (port_id) (mtr_id) (stats_mask)
2860
2861 where:
2862
2863 * ``stats_mask``: Bit mask indicating statistics counter types to be enabled.
2864
2865 show port meter stats
2866 ~~~~~~~~~~~~~~~~~~~~~
2867
2868 Show meter stats of the ethernet device::
2869
2870    testpmd> show port meter stats (port_id) (mtr_id) (clear)
2871
2872 where:
2873
2874 * ``clear``: Flag that indicates whether the statistics counters should
2875   be cleared (i.e. set to zero) immediately after they have been read or not.
2876
2877 Traffic Management
2878 ------------------
2879
2880 The following section shows functions for configuring traffic management on
2881 the ethernet device through the use of generic TM API.
2882
2883 show port traffic management capability
2884 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2885
2886 Show traffic management capability of the port::
2887
2888    testpmd> show port tm cap (port_id)
2889
2890 show port traffic management capability (hierarchy level)
2891 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2892
2893 Show traffic management hierarchy level capability of the port::
2894
2895    testpmd> show port tm level cap (port_id) (level_id)
2896
2897 show port traffic management capability (hierarchy node level)
2898 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2899
2900 Show the traffic management hierarchy node capability of the port::
2901
2902    testpmd> show port tm node cap (port_id) (node_id)
2903
2904 show port traffic management hierarchy node type
2905 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2906
2907 Show the port traffic management hierarchy node type::
2908
2909    testpmd> show port tm node type (port_id) (node_id)
2910
2911 show port traffic management hierarchy node stats
2912 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2913
2914 Show the port traffic management hierarchy node statistics::
2915
2916    testpmd> show port tm node stats (port_id) (node_id) (clear)
2917
2918 where:
2919
2920 * ``clear``: When this parameter has a non-zero value, the statistics counters
2921   are cleared (i.e. set to zero) immediately after they have been read,
2922   otherwise the statistics counters are left untouched.
2923
2924 Add port traffic management private shaper profile
2925 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2926
2927 Add the port traffic management private shaper profile::
2928
2929    testpmd> add port tm node shaper profile (port_id) (shaper_profile_id) \
2930    (cmit_tb_rate) (cmit_tb_size) (peak_tb_rate) (peak_tb_size) \
2931    (packet_length_adjust) (packet_mode)
2932
2933 where:
2934
2935 * ``shaper_profile id``: Shaper profile ID for the new profile.
2936 * ``cmit_tb_rate``: Committed token bucket rate (bytes per second or packets per second).
2937 * ``cmit_tb_size``: Committed token bucket size (bytes or packets).
2938 * ``peak_tb_rate``: Peak token bucket rate (bytes per second or packets per second).
2939 * ``peak_tb_size``: Peak token bucket size (bytes or packets).
2940 * ``packet_length_adjust``: The value (bytes) to be added to the length of
2941   each packet for the purpose of shaping. This parameter value can be used to
2942   correct the packet length with the framing overhead bytes that are consumed
2943   on the wire.
2944 * ``packet_mode``: Shaper configured in packet mode. This parameter value if
2945   zero, configures shaper in byte mode and if non-zero configures it in packet
2946   mode.
2947
2948 Delete port traffic management private shaper profile
2949 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2950
2951 Delete the port traffic management private shaper::
2952
2953    testpmd> del port tm node shaper profile (port_id) (shaper_profile_id)
2954
2955 where:
2956
2957 * ``shaper_profile id``: Shaper profile ID that needs to be deleted.
2958
2959 Add port traffic management shared shaper
2960 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2961
2962 Create the port traffic management shared shaper::
2963
2964    testpmd> add port tm node shared shaper (port_id) (shared_shaper_id) \
2965    (shaper_profile_id)
2966
2967 where:
2968
2969 * ``shared_shaper_id``: Shared shaper ID to be created.
2970 * ``shaper_profile id``: Shaper profile ID for shared shaper.
2971
2972 Set port traffic management shared shaper
2973 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2974
2975 Update the port traffic management shared shaper::
2976
2977    testpmd> set port tm node shared shaper (port_id) (shared_shaper_id) \
2978    (shaper_profile_id)
2979
2980 where:
2981
2982 * ``shared_shaper_id``: Shared shaper ID to be update.
2983 * ``shaper_profile id``: Shaper profile ID for shared shaper.
2984
2985 Delete port traffic management shared shaper
2986 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2987
2988 Delete the port traffic management shared shaper::
2989
2990    testpmd> del port tm node shared shaper (port_id) (shared_shaper_id)
2991
2992 where:
2993
2994 * ``shared_shaper_id``: Shared shaper ID to be deleted.
2995
2996 Set port traffic management hierarchy node private shaper
2997 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2998
2999 set the port traffic management hierarchy node private shaper::
3000
3001    testpmd> set port tm node shaper profile (port_id) (node_id) \
3002    (shaper_profile_id)
3003
3004 where:
3005
3006 * ``shaper_profile id``: Private shaper profile ID to be enabled on the
3007   hierarchy node.
3008
3009 Add port traffic management WRED profile
3010 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3011
3012 Create a new WRED profile::
3013
3014    testpmd> add port tm node wred profile (port_id) (wred_profile_id) \
3015    (color_g) (min_th_g) (max_th_g) (maxp_inv_g) (wq_log2_g) \
3016    (color_y) (min_th_y) (max_th_y) (maxp_inv_y) (wq_log2_y) \
3017    (color_r) (min_th_r) (max_th_r) (maxp_inv_r) (wq_log2_r)
3018
3019 where:
3020
3021 * ``wred_profile id``: Identifier for the newly create WRED profile
3022 * ``color_g``: Packet color (green)
3023 * ``min_th_g``: Minimum queue threshold for packet with green color
3024 * ``max_th_g``: Minimum queue threshold for packet with green color
3025 * ``maxp_inv_g``: Inverse of packet marking probability maximum value (maxp)
3026 * ``wq_log2_g``: Negated log2 of queue weight (wq)
3027 * ``color_y``: Packet color (yellow)
3028 * ``min_th_y``: Minimum queue threshold for packet with yellow color
3029 * ``max_th_y``: Minimum queue threshold for packet with yellow color
3030 * ``maxp_inv_y``: Inverse of packet marking probability maximum value (maxp)
3031 * ``wq_log2_y``: Negated log2 of queue weight (wq)
3032 * ``color_r``: Packet color (red)
3033 * ``min_th_r``: Minimum queue threshold for packet with yellow color
3034 * ``max_th_r``: Minimum queue threshold for packet with yellow color
3035 * ``maxp_inv_r``: Inverse of packet marking probability maximum value (maxp)
3036 * ``wq_log2_r``: Negated log2 of queue weight (wq)
3037
3038 Delete port traffic management WRED profile
3039 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3040
3041 Delete the WRED profile::
3042
3043    testpmd> del port tm node wred profile (port_id) (wred_profile_id)
3044
3045 Add port traffic management hierarchy nonleaf node
3046 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3047
3048 Add nonleaf node to port traffic management hierarchy::
3049
3050    testpmd> add port tm nonleaf node (port_id) (node_id) (parent_node_id) \
3051    (priority) (weight) (level_id) (shaper_profile_id) \
3052    (n_sp_priorities) (stats_mask) (n_shared_shapers) \
3053    [(shared_shaper_0) (shared_shaper_1) ...] \
3054
3055 where:
3056
3057 * ``parent_node_id``: Node ID of the parent.
3058 * ``priority``: Node priority (highest node priority is zero). This is used by
3059   the SP algorithm running on the parent node for scheduling this node.
3060 * ``weight``: Node weight (lowest weight is one). The node weight is relative
3061   to the weight sum of all siblings that have the same priority. It is used by
3062   the WFQ algorithm running on the parent node for scheduling this node.
3063 * ``level_id``: Hierarchy level of the node.
3064 * ``shaper_profile_id``: Shaper profile ID of the private shaper to be used by
3065   the node.
3066 * ``n_sp_priorities``: Number of strict priorities.
3067 * ``stats_mask``: Mask of statistics counter types to be enabled for this node.
3068 * ``n_shared_shapers``: Number of shared shapers.
3069 * ``shared_shaper_id``: Shared shaper id.
3070
3071 Add port traffic management hierarchy nonleaf node with packet mode
3072 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3073
3074 Add nonleaf node with packet mode to port traffic management hierarchy::
3075
3076    testpmd> add port tm nonleaf node pktmode (port_id) (node_id) (parent_node_id) \
3077    (priority) (weight) (level_id) (shaper_profile_id) \
3078    (n_sp_priorities) (stats_mask) (n_shared_shapers) \
3079    [(shared_shaper_0) (shared_shaper_1) ...] \
3080
3081 where:
3082
3083 * ``parent_node_id``: Node ID of the parent.
3084 * ``priority``: Node priority (highest node priority is zero). This is used by
3085   the SP algorithm running on the parent node for scheduling this node.
3086 * ``weight``: Node weight (lowest weight is one). The node weight is relative
3087   to the weight sum of all siblings that have the same priority. It is used by
3088   the WFQ algorithm running on the parent node for scheduling this node.
3089 * ``level_id``: Hierarchy level of the node.
3090 * ``shaper_profile_id``: Shaper profile ID of the private shaper to be used by
3091   the node.
3092 * ``n_sp_priorities``: Number of strict priorities. Packet mode is enabled on
3093   all of them.
3094 * ``stats_mask``: Mask of statistics counter types to be enabled for this node.
3095 * ``n_shared_shapers``: Number of shared shapers.
3096 * ``shared_shaper_id``: Shared shaper id.
3097
3098 Add port traffic management hierarchy leaf node
3099 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3100
3101 Add leaf node to port traffic management hierarchy::
3102
3103    testpmd> add port tm leaf node (port_id) (node_id) (parent_node_id) \
3104    (priority) (weight) (level_id) (shaper_profile_id) \
3105    (cman_mode) (wred_profile_id) (stats_mask) (n_shared_shapers) \
3106    [(shared_shaper_id) (shared_shaper_id) ...] \
3107
3108 where:
3109
3110 * ``parent_node_id``: Node ID of the parent.
3111 * ``priority``: Node priority (highest node priority is zero). This is used by
3112   the SP algorithm running on the parent node for scheduling this node.
3113 * ``weight``: Node weight (lowest weight is one). The node weight is relative
3114   to the weight sum of all siblings that have the same priority. It is used by
3115   the WFQ algorithm running on the parent node for scheduling this node.
3116 * ``level_id``: Hierarchy level of the node.
3117 * ``shaper_profile_id``: Shaper profile ID of the private shaper to be used by
3118   the node.
3119 * ``cman_mode``: Congestion management mode to be enabled for this node.
3120 * ``wred_profile_id``: WRED profile id to be enabled for this node.
3121 * ``stats_mask``: Mask of statistics counter types to be enabled for this node.
3122 * ``n_shared_shapers``: Number of shared shapers.
3123 * ``shared_shaper_id``: Shared shaper id.
3124
3125 Delete port traffic management hierarchy node
3126 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3127
3128 Delete node from port traffic management hierarchy::
3129
3130    testpmd> del port tm node (port_id) (node_id)
3131
3132 Update port traffic management hierarchy parent node
3133 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3134
3135 Update port traffic management hierarchy parent node::
3136
3137    testpmd> set port tm node parent (port_id) (node_id) (parent_node_id) \
3138    (priority) (weight)
3139
3140 This function can only be called after the hierarchy commit invocation. Its
3141 success depends on the port support for this operation, as advertised through
3142 the port capability set. This function is valid for all nodes of the traffic
3143 management hierarchy except root node.
3144
3145 Suspend port traffic management hierarchy node
3146 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3147
3148    testpmd> suspend port tm node (port_id) (node_id)
3149
3150 Resume port traffic management hierarchy node
3151 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3152
3153    testpmd> resume port tm node (port_id) (node_id)
3154
3155 Commit port traffic management hierarchy
3156 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3157
3158 Commit the traffic management hierarchy on the port::
3159
3160    testpmd> port tm hierarchy commit (port_id) (clean_on_fail)
3161
3162 where:
3163
3164 * ``clean_on_fail``: When set to non-zero, hierarchy is cleared on function
3165   call failure. On the other hand, hierarchy is preserved when this parameter
3166   is equal to zero.
3167
3168 Set port traffic management mark VLAN dei
3169 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3170
3171 Enables/Disables the traffic management marking on the port for VLAN packets::
3172
3173    testpmd> set port tm mark vlan_dei <port_id> <green> <yellow> <red>
3174
3175 where:
3176
3177 * ``port_id``: The port which on which VLAN packets marked as ``green`` or
3178   ``yellow`` or ``red`` will have dei bit enabled
3179
3180 * ``green`` enable 1, disable 0 marking for dei bit of VLAN packets marked as green
3181
3182 * ``yellow`` enable 1, disable 0 marking for dei bit of VLAN packets marked as yellow
3183
3184 * ``red`` enable 1, disable 0 marking for dei bit of VLAN packets marked as red
3185
3186 Set port traffic management mark IP dscp
3187 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3188
3189 Enables/Disables the traffic management marking on the port for IP dscp packets::
3190
3191    testpmd> set port tm mark ip_dscp <port_id> <green> <yellow> <red>
3192
3193 where:
3194
3195 * ``port_id``: The port which on which IP packets marked as ``green`` or
3196   ``yellow`` or ``red`` will have IP dscp bits updated
3197
3198 * ``green`` enable 1, disable 0 marking IP dscp to low drop precedence for green packets
3199
3200 * ``yellow`` enable 1, disable 0 marking IP dscp to medium drop precedence for yellow packets
3201
3202 * ``red`` enable 1, disable 0 marking IP dscp to high drop precedence for red packets
3203
3204 Set port traffic management mark IP ecn
3205 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3206
3207 Enables/Disables the traffic management marking on the port for IP ecn packets::
3208
3209    testpmd> set port tm mark ip_ecn <port_id> <green> <yellow> <red>
3210
3211 where:
3212
3213 * ``port_id``: The port which on which IP packets marked as ``green`` or
3214   ``yellow`` or ``red`` will have IP ecn bits updated
3215
3216 * ``green`` enable 1, disable 0 marking IP ecn for green marked packets with ecn of 2'b01  or 2'b10
3217   to ecn of 2'b11 when IP is caring TCP or SCTP
3218
3219 * ``yellow`` enable 1, disable 0 marking IP ecn for yellow marked packets with ecn of 2'b01  or 2'b10
3220   to ecn of 2'b11 when IP is caring TCP or SCTP
3221
3222 * ``red`` enable 1, disable 0 marking IP ecn for yellow marked packets with ecn of 2'b01  or 2'b10
3223   to ecn of 2'b11 when IP is caring TCP or SCTP
3224
3225 Filter Functions
3226 ----------------
3227
3228 This section details the available filter functions that are available.
3229
3230 Note these functions interface the deprecated legacy filtering framework,
3231 superseded by *rte_flow*. See `Flow rules management`_.
3232
3233 .. _testpmd_flow_director:
3234
3235 flow_director_mask
3236 ~~~~~~~~~~~~~~~~~~
3237
3238 Set flow director's input masks::
3239
3240    flow_director_mask (port_id) mode IP vlan (vlan_value) \
3241                       src_mask (ipv4_src) (ipv6_src) (src_port) \
3242                       dst_mask (ipv4_dst) (ipv6_dst) (dst_port)
3243
3244    flow_director_mask (port_id) mode MAC-VLAN vlan (vlan_value)
3245
3246    flow_director_mask (port_id) mode Tunnel vlan (vlan_value) \
3247                       mac (mac_value) tunnel-type (tunnel_type_value) \
3248                       tunnel-id (tunnel_id_value)
3249
3250 Example, to set flow director mask on port 0::
3251
3252    testpmd> flow_director_mask 0 mode IP vlan 0xefff \
3253             src_mask 255.255.255.255 \
3254                 FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF 0xFFFF \
3255             dst_mask 255.255.255.255 \
3256                 FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF 0xFFFF
3257
3258 flow_director_flex_payload
3259 ~~~~~~~~~~~~~~~~~~~~~~~~~~
3260
3261 Configure flexible payload selection::
3262
3263    flow_director_flex_payload (port_id) (raw|l2|l3|l4) (config)
3264
3265 For example, to select the first 16 bytes from the offset 4 (bytes) of packet's payload as flexible payload::
3266
3267    testpmd> flow_director_flex_payload 0 l4 \
3268             (4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19)
3269
3270
3271 .. _testpmd_rte_flow:
3272
3273 Flow rules management
3274 ---------------------
3275
3276 Control of the generic flow API (*rte_flow*) is fully exposed through the
3277 ``flow`` command (validation, creation, destruction, queries and operation
3278 modes).
3279
3280 Considering *rte_flow* overlaps with all `Filter Functions`_, using both
3281 features simultaneously may cause undefined side-effects and is therefore
3282 not recommended.
3283
3284 ``flow`` syntax
3285 ~~~~~~~~~~~~~~~
3286
3287 Because the ``flow`` command uses dynamic tokens to handle the large number
3288 of possible flow rules combinations, its behavior differs slightly from
3289 other commands, in particular:
3290
3291 - Pressing *?* or the *<tab>* key displays contextual help for the current
3292   token, not that of the entire command.
3293
3294 - Optional and repeated parameters are supported (provided they are listed
3295   in the contextual help).
3296
3297 The first parameter stands for the operation mode. Possible operations and
3298 their general syntax are described below. They are covered in detail in the
3299 following sections.
3300
3301 - Check whether a flow rule can be created::
3302
3303    flow validate {port_id}
3304        [group {group_id}] [priority {level}] [ingress] [egress] [transfer]
3305        pattern {item} [/ {item} [...]] / end
3306        actions {action} [/ {action} [...]] / end
3307
3308 - Create a flow rule::
3309
3310    flow create {port_id}
3311        [group {group_id}] [priority {level}] [ingress] [egress] [transfer]
3312        pattern {item} [/ {item} [...]] / end
3313        actions {action} [/ {action} [...]] / end
3314
3315 - Destroy specific flow rules::
3316
3317    flow destroy {port_id} rule {rule_id} [...]
3318
3319 - Destroy all flow rules::
3320
3321    flow flush {port_id}
3322
3323 - Query an existing flow rule::
3324
3325    flow query {port_id} {rule_id} {action}
3326
3327 - List existing flow rules sorted by priority, filtered by group
3328   identifiers::
3329
3330    flow list {port_id} [group {group_id}] [...]
3331
3332 - Restrict ingress traffic to the defined flow rules::
3333
3334    flow isolate {port_id} {boolean}
3335
3336 - Dump internal representation information of all flows in hardware::
3337
3338    flow dump {port_id} all {output_file}
3339
3340   for one flow::
3341
3342    flow dump {port_id} rule {rule_id} {output_file}
3343
3344 - List and destroy aged flow rules::
3345
3346    flow aged {port_id} [destroy]
3347
3348 - Tunnel offload - create a tunnel stub::
3349
3350    flow tunnel create {port_id} type {tunnel_type}
3351
3352 - Tunnel offload - destroy a tunnel stub::
3353
3354    flow tunnel destroy {port_id} id {tunnel_id}
3355
3356 - Tunnel offload - list port tunnel stubs::
3357
3358    flow tunnel list {port_id}
3359
3360 Creating a tunnel stub for offload
3361 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3362
3363 ``flow tunnel create`` setup a tunnel stub for tunnel offload flow rules::
3364
3365    flow tunnel create {port_id} type {tunnel_type}
3366
3367 If successful, it will return a tunnel stub ID usable with other commands::
3368
3369    port [...]: flow tunnel #[...] type [...]
3370
3371 Tunnel stub ID is relative to a port.
3372
3373 Destroying tunnel offload stub
3374 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3375
3376 ``flow tunnel destroy`` destroy port tunnel stub::
3377
3378    flow tunnel destroy {port_id} id {tunnel_id}
3379
3380 Listing tunnel offload stubs
3381 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3382
3383 ``flow tunnel list`` list port tunnel offload stubs::
3384
3385    flow tunnel list {port_id}
3386
3387 Validating flow rules
3388 ~~~~~~~~~~~~~~~~~~~~~
3389
3390 ``flow validate`` reports whether a flow rule would be accepted by the
3391 underlying device in its current state but stops short of creating it. It is
3392 bound to ``rte_flow_validate()``::
3393
3394    flow validate {port_id}
3395       [group {group_id}] [priority {level}] [ingress] [egress] [transfer]
3396       pattern {item} [/ {item} [...]] / end
3397       actions {action} [/ {action} [...]] / end
3398
3399 If successful, it will show::
3400
3401    Flow rule validated
3402
3403 Otherwise it will show an error message of the form::
3404
3405    Caught error type [...] ([...]): [...]
3406
3407 This command uses the same parameters as ``flow create``, their format is
3408 described in `Creating flow rules`_.
3409
3410 Check whether redirecting any Ethernet packet received on port 0 to RX queue
3411 index 6 is supported::
3412
3413    testpmd> flow validate 0 ingress pattern eth / end
3414       actions queue index 6 / end
3415    Flow rule validated
3416    testpmd>
3417
3418 Port 0 does not support TCPv6 rules::
3419
3420    testpmd> flow validate 0 ingress pattern eth / ipv6 / tcp / end
3421       actions drop / end
3422    Caught error type 9 (specific pattern item): Invalid argument
3423    testpmd>
3424
3425 Creating flow rules
3426 ~~~~~~~~~~~~~~~~~~~
3427
3428 ``flow create`` validates and creates the specified flow rule. It is bound
3429 to ``rte_flow_create()``::
3430
3431    flow create {port_id}
3432       [group {group_id}] [priority {level}] [ingress] [egress] [transfer]
3433       [tunnel_set {tunnel_id}] [tunnel_match {tunnel_id}]
3434       pattern {item} [/ {item} [...]] / end
3435       actions {action} [/ {action} [...]] / end
3436
3437 If successful, it will return a flow rule ID usable with other commands::
3438
3439    Flow rule #[...] created
3440
3441 Otherwise it will show an error message of the form::
3442
3443    Caught error type [...] ([...]): [...]
3444
3445 Parameters describe in the following order:
3446
3447 - Attributes (*group*, *priority*, *ingress*, *egress*, *transfer* tokens).
3448 - Tunnel offload specification (tunnel_set, tunnel_match)
3449 - A matching pattern, starting with the *pattern* token and terminated by an
3450   *end* pattern item.
3451 - Actions, starting with the *actions* token and terminated by an *end*
3452   action.
3453
3454 These translate directly to *rte_flow* objects provided as-is to the
3455 underlying functions.
3456
3457 The shortest valid definition only comprises mandatory tokens::
3458
3459    testpmd> flow create 0 pattern end actions end
3460
3461 Note that PMDs may refuse rules that essentially do nothing such as this
3462 one.
3463
3464 **All unspecified object values are automatically initialized to 0.**
3465
3466 Attributes
3467 ^^^^^^^^^^
3468
3469 These tokens affect flow rule attributes (``struct rte_flow_attr``) and are
3470 specified before the ``pattern`` token.
3471
3472 - ``group {group id}``: priority group.
3473 - ``priority {level}``: priority level within group.
3474 - ``ingress``: rule applies to ingress traffic.
3475 - ``egress``: rule applies to egress traffic.
3476 - ``transfer``: apply rule directly to endpoints found in pattern.
3477
3478 Each instance of an attribute specified several times overrides the previous
3479 value as shown below (group 4 is used)::
3480
3481    testpmd> flow create 0 group 42 group 24 group 4 [...]
3482
3483 Note that once enabled, ``ingress`` and ``egress`` cannot be disabled.
3484
3485 While not specifying a direction is an error, some rules may allow both
3486 simultaneously.
3487
3488 Most rules affect RX therefore contain the ``ingress`` token::
3489
3490    testpmd> flow create 0 ingress pattern [...]
3491
3492 Tunnel offload
3493 ^^^^^^^^^^^^^^
3494
3495 Indicate tunnel offload rule type
3496
3497 - ``tunnel_set {tunnel_id}``: mark rule as tunnel offload decap_set type.
3498 - ``tunnel_match {tunnel_id}``:  mark rule as tunel offload match type.
3499
3500 Matching pattern
3501 ^^^^^^^^^^^^^^^^
3502
3503 A matching pattern starts after the ``pattern`` token. It is made of pattern
3504 items and is terminated by a mandatory ``end`` item.
3505
3506 Items are named after their type (*RTE_FLOW_ITEM_TYPE_* from ``enum
3507 rte_flow_item_type``).
3508
3509 The ``/`` token is used as a separator between pattern items as shown
3510 below::
3511
3512    testpmd> flow create 0 ingress pattern eth / ipv4 / udp / end [...]
3513
3514 Note that protocol items like these must be stacked from lowest to highest
3515 layer to make sense. For instance, the following rule is either invalid or
3516 unlikely to match any packet::
3517
3518    testpmd> flow create 0 ingress pattern eth / udp / ipv4 / end [...]
3519
3520 More information on these restrictions can be found in the *rte_flow*
3521 documentation.
3522
3523 Several items support additional specification structures, for example
3524 ``ipv4`` allows specifying source and destination addresses as follows::
3525
3526    testpmd> flow create 0 ingress pattern eth / ipv4 src is 10.1.1.1
3527       dst is 10.2.0.0 / end [...]
3528
3529 This rule matches all IPv4 traffic with the specified properties.
3530
3531 In this example, ``src`` and ``dst`` are field names of the underlying
3532 ``struct rte_flow_item_ipv4`` object. All item properties can be specified
3533 in a similar fashion.
3534
3535 The ``is`` token means that the subsequent value must be matched exactly,
3536 and assigns ``spec`` and ``mask`` fields in ``struct rte_flow_item``
3537 accordingly. Possible assignment tokens are:
3538
3539 - ``is``: match value perfectly (with full bit-mask).
3540 - ``spec``: match value according to configured bit-mask.
3541 - ``last``: specify upper bound to establish a range.
3542 - ``mask``: specify bit-mask with relevant bits set to one.
3543 - ``prefix``: generate bit-mask with <prefix-length> most-significant bits set to one.
3544
3545 These yield identical results::
3546
3547    ipv4 src is 10.1.1.1
3548
3549 ::
3550
3551    ipv4 src spec 10.1.1.1 src mask 255.255.255.255
3552
3553 ::
3554
3555    ipv4 src spec 10.1.1.1 src prefix 32
3556
3557 ::
3558
3559    ipv4 src is 10.1.1.1 src last 10.1.1.1 # range with a single value
3560
3561 ::
3562
3563    ipv4 src is 10.1.1.1 src last 0 # 0 disables range
3564
3565 Inclusive ranges can be defined with ``last``::
3566
3567    ipv4 src is 10.1.1.1 src last 10.2.3.4 # 10.1.1.1 to 10.2.3.4
3568
3569 Note that ``mask`` affects both ``spec`` and ``last``::
3570
3571    ipv4 src is 10.1.1.1 src last 10.2.3.4 src mask 255.255.0.0
3572       # matches 10.1.0.0 to 10.2.255.255
3573
3574 Properties can be modified multiple times::
3575
3576    ipv4 src is 10.1.1.1 src is 10.1.2.3 src is 10.2.3.4 # matches 10.2.3.4
3577
3578 ::
3579
3580    ipv4 src is 10.1.1.1 src prefix 24 src prefix 16 # matches 10.1.0.0/16
3581
3582 Pattern items
3583 ^^^^^^^^^^^^^
3584
3585 This section lists supported pattern items and their attributes, if any.
3586
3587 - ``end``: end list of pattern items.
3588
3589 - ``void``: no-op pattern item.
3590
3591 - ``invert``: perform actions when pattern does not match.
3592
3593 - ``any``: match any protocol for the current layer.
3594
3595   - ``num {unsigned}``: number of layers covered.
3596
3597 - ``pf``: match traffic from/to the physical function.
3598
3599 - ``vf``: match traffic from/to a virtual function ID.
3600
3601   - ``id {unsigned}``: VF ID.
3602
3603 - ``phy_port``: match traffic from/to a specific physical port.
3604
3605   - ``index {unsigned}``: physical port index.
3606
3607 - ``port_id``: match traffic from/to a given DPDK port ID.
3608
3609   - ``id {unsigned}``: DPDK port ID.
3610
3611 - ``mark``: match value set in previously matched flow rule using the mark action.
3612
3613   - ``id {unsigned}``: arbitrary integer value.
3614
3615 - ``raw``: match an arbitrary byte string.
3616
3617   - ``relative {boolean}``: look for pattern after the previous item.
3618   - ``search {boolean}``: search pattern from offset (see also limit).
3619   - ``offset {integer}``: absolute or relative offset for pattern.
3620   - ``limit {unsigned}``: search area limit for start of pattern.
3621   - ``pattern {string}``: byte string to look for.
3622
3623 - ``eth``: match Ethernet header.
3624
3625   - ``dst {MAC-48}``: destination MAC.
3626   - ``src {MAC-48}``: source MAC.
3627   - ``type {unsigned}``: EtherType or TPID.
3628
3629 - ``vlan``: match 802.1Q/ad VLAN tag.
3630
3631   - ``tci {unsigned}``: tag control information.
3632   - ``pcp {unsigned}``: priority code point.
3633   - ``dei {unsigned}``: drop eligible indicator.
3634   - ``vid {unsigned}``: VLAN identifier.
3635   - ``inner_type {unsigned}``: inner EtherType or TPID.
3636
3637 - ``ipv4``: match IPv4 header.
3638
3639   - ``tos {unsigned}``: type of service.
3640   - ``ttl {unsigned}``: time to live.
3641   - ``proto {unsigned}``: next protocol ID.
3642   - ``src {ipv4 address}``: source address.
3643   - ``dst {ipv4 address}``: destination address.
3644
3645 - ``ipv6``: match IPv6 header.
3646
3647   - ``tc {unsigned}``: traffic class.
3648   - ``flow {unsigned}``: flow label.
3649   - ``proto {unsigned}``: protocol (next header).
3650   - ``hop {unsigned}``: hop limit.
3651   - ``src {ipv6 address}``: source address.
3652   - ``dst {ipv6 address}``: destination address.
3653
3654 - ``icmp``: match ICMP header.
3655
3656   - ``type {unsigned}``: ICMP packet type.
3657   - ``code {unsigned}``: ICMP packet code.
3658
3659 - ``udp``: match UDP header.
3660
3661   - ``src {unsigned}``: UDP source port.
3662   - ``dst {unsigned}``: UDP destination port.
3663
3664 - ``tcp``: match TCP header.
3665
3666   - ``src {unsigned}``: TCP source port.
3667   - ``dst {unsigned}``: TCP destination port.
3668
3669 - ``sctp``: match SCTP header.
3670
3671   - ``src {unsigned}``: SCTP source port.
3672   - ``dst {unsigned}``: SCTP destination port.
3673   - ``tag {unsigned}``: validation tag.
3674   - ``cksum {unsigned}``: checksum.
3675
3676 - ``vxlan``: match VXLAN header.
3677
3678   - ``vni {unsigned}``: VXLAN identifier.
3679
3680 - ``e_tag``: match IEEE 802.1BR E-Tag header.
3681
3682   - ``grp_ecid_b {unsigned}``: GRP and E-CID base.
3683
3684 - ``nvgre``: match NVGRE header.
3685
3686   - ``tni {unsigned}``: virtual subnet ID.
3687
3688 - ``mpls``: match MPLS header.
3689
3690   - ``label {unsigned}``: MPLS label.
3691
3692 - ``gre``: match GRE header.
3693
3694   - ``protocol {unsigned}``: protocol type.
3695
3696 - ``gre_key``: match GRE optional key field.
3697
3698   - ``value {unsigned}``: key value.
3699
3700 - ``fuzzy``: fuzzy pattern match, expect faster than default.
3701
3702   - ``thresh {unsigned}``: accuracy threshold.
3703
3704 - ``gtp``, ``gtpc``, ``gtpu``: match GTPv1 header.
3705
3706   - ``teid {unsigned}``: tunnel endpoint identifier.
3707
3708 - ``geneve``: match GENEVE header.
3709
3710   - ``vni {unsigned}``: virtual network identifier.
3711   - ``protocol {unsigned}``: protocol type.
3712
3713 - ``geneve-opt``: match GENEVE header option.
3714
3715   - ``class {unsigned}``: GENEVE option class.
3716   - ``type {unsigned}``: GENEVE option type.
3717   - ``length {unsigned}``: GENEVE option length in 32-bit words.
3718   - ``data {hex string}``: GENEVE option data, the length is defined by
3719     ``length`` field.
3720
3721 - ``vxlan-gpe``: match VXLAN-GPE header.
3722
3723   - ``vni {unsigned}``: VXLAN-GPE identifier.
3724
3725 - ``arp_eth_ipv4``: match ARP header for Ethernet/IPv4.
3726
3727   - ``sha {MAC-48}``: sender hardware address.
3728   - ``spa {ipv4 address}``: sender IPv4 address.
3729   - ``tha {MAC-48}``: target hardware address.
3730   - ``tpa {ipv4 address}``: target IPv4 address.
3731
3732 - ``ipv6_ext``: match presence of any IPv6 extension header.
3733
3734   - ``next_hdr {unsigned}``: next header.
3735
3736 - ``icmp6``: match any ICMPv6 header.
3737
3738   - ``type {unsigned}``: ICMPv6 type.
3739   - ``code {unsigned}``: ICMPv6 code.
3740
3741 - ``icmp6_nd_ns``: match ICMPv6 neighbor discovery solicitation.
3742
3743   - ``target_addr {ipv6 address}``: target address.
3744
3745 - ``icmp6_nd_na``: match ICMPv6 neighbor discovery advertisement.
3746
3747   - ``target_addr {ipv6 address}``: target address.
3748
3749 - ``icmp6_nd_opt``: match presence of any ICMPv6 neighbor discovery option.
3750
3751   - ``type {unsigned}``: ND option type.
3752
3753 - ``icmp6_nd_opt_sla_eth``: match ICMPv6 neighbor discovery source Ethernet
3754   link-layer address option.
3755
3756   - ``sla {MAC-48}``: source Ethernet LLA.
3757
3758 - ``icmp6_nd_opt_tla_eth``: match ICMPv6 neighbor discovery target Ethernet
3759   link-layer address option.
3760
3761   - ``tla {MAC-48}``: target Ethernet LLA.
3762
3763 - ``meta``: match application specific metadata.
3764
3765   - ``data {unsigned}``: metadata value.
3766
3767 - ``gtp_psc``: match GTP PDU extension header with type 0x85.
3768
3769   - ``pdu_type {unsigned}``: PDU type.
3770
3771   - ``qfi {unsigned}``: PPP, RQI and QoS flow identifier.
3772
3773 - ``pppoes``, ``pppoed``: match PPPoE header.
3774
3775   - ``session_id {unsigned}``: session identifier.
3776
3777 - ``pppoe_proto_id``: match PPPoE session protocol identifier.
3778
3779   - ``proto_id {unsigned}``: PPP protocol identifier.
3780
3781 - ``l2tpv3oip``: match L2TPv3 over IP header.
3782
3783   - ``session_id {unsigned}``: L2TPv3 over IP session identifier.
3784
3785 - ``ah``: match AH header.
3786
3787   - ``spi {unsigned}``: security parameters index.
3788
3789 - ``pfcp``: match PFCP header.
3790
3791   - ``s_field {unsigned}``: S field.
3792   - ``seid {unsigned}``: session endpoint identifier.
3793
3794 Actions list
3795 ^^^^^^^^^^^^
3796
3797 A list of actions starts after the ``actions`` token in the same fashion as
3798 `Matching pattern`_; actions are separated by ``/`` tokens and the list is
3799 terminated by a mandatory ``end`` action.
3800
3801 Actions are named after their type (*RTE_FLOW_ACTION_TYPE_* from ``enum
3802 rte_flow_action_type``).
3803
3804 Dropping all incoming UDPv4 packets can be expressed as follows::
3805
3806    testpmd> flow create 0 ingress pattern eth / ipv4 / udp / end
3807       actions drop / end
3808
3809 Several actions have configurable properties which must be specified when
3810 there is no valid default value. For example, ``queue`` requires a target
3811 queue index.
3812
3813 This rule redirects incoming UDPv4 traffic to queue index 6::
3814
3815    testpmd> flow create 0 ingress pattern eth / ipv4 / udp / end
3816       actions queue index 6 / end
3817
3818 While this one could be rejected by PMDs (unspecified queue index)::
3819
3820    testpmd> flow create 0 ingress pattern eth / ipv4 / udp / end
3821       actions queue / end
3822
3823 As defined by *rte_flow*, the list is not ordered, all actions of a given
3824 rule are performed simultaneously. These are equivalent::
3825
3826    queue index 6 / void / mark id 42 / end
3827
3828 ::
3829
3830    void / mark id 42 / queue index 6 / end
3831
3832 All actions in a list should have different types, otherwise only the last
3833 action of a given type is taken into account::
3834
3835    queue index 4 / queue index 5 / queue index 6 / end # will use queue 6
3836
3837 ::
3838
3839    drop / drop / drop / end # drop is performed only once
3840
3841 ::
3842
3843    mark id 42 / queue index 3 / mark id 24 / end # mark will be 24
3844
3845 Considering they are performed simultaneously, opposite and overlapping
3846 actions can sometimes be combined when the end result is unambiguous::
3847
3848    drop / queue index 6 / end # drop has no effect
3849
3850 ::
3851
3852    queue index 6 / rss queues 6 7 8 / end # queue has no effect
3853
3854 ::
3855
3856    drop / passthru / end # drop has no effect
3857
3858 Note that PMDs may still refuse such combinations.
3859
3860 Actions
3861 ^^^^^^^
3862
3863 This section lists supported actions and their attributes, if any.
3864
3865 - ``end``: end list of actions.
3866
3867 - ``void``: no-op action.
3868
3869 - ``passthru``: let subsequent rule process matched packets.
3870
3871 - ``jump``: redirect traffic to group on device.
3872
3873   - ``group {unsigned}``: group to redirect to.
3874
3875 - ``mark``: attach 32 bit value to packets.
3876
3877   - ``id {unsigned}``: 32 bit value to return with packets.
3878
3879 - ``flag``: flag packets.
3880
3881 - ``queue``: assign packets to a given queue index.
3882
3883   - ``index {unsigned}``: queue index to use.
3884
3885 - ``drop``: drop packets (note: passthru has priority).
3886
3887 - ``count``: enable counters for this rule.
3888
3889 - ``rss``: spread packets among several queues.
3890
3891   - ``func {hash function}``: RSS hash function to apply, allowed tokens are
3892     ``toeplitz``, ``simple_xor``, ``symmetric_toeplitz`` and ``default``.
3893
3894   - ``level {unsigned}``: encapsulation level for ``types``.
3895
3896   - ``types [{RSS hash type} [...]] end``: specific RSS hash types.
3897     Note that an empty list does not disable RSS but instead requests
3898     unspecified "best-effort" settings.
3899
3900   - ``key {string}``: RSS hash key, overrides ``key_len``.
3901
3902   - ``key_len {unsigned}``: RSS hash key length in bytes, can be used in
3903     conjunction with ``key`` to pad or truncate it.
3904
3905   - ``queues [{unsigned} [...]] end``: queue indices to use.
3906
3907 - ``pf``: direct traffic to physical function.
3908
3909 - ``vf``: direct traffic to a virtual function ID.
3910
3911   - ``original {boolean}``: use original VF ID if possible.
3912   - ``id {unsigned}``: VF ID.
3913
3914 - ``phy_port``: direct packets to physical port index.
3915
3916   - ``original {boolean}``: use original port index if possible.
3917   - ``index {unsigned}``: physical port index.
3918
3919 - ``port_id``: direct matching traffic to a given DPDK port ID.
3920
3921   - ``original {boolean}``: use original DPDK port ID if possible.
3922   - ``id {unsigned}``: DPDK port ID.
3923
3924 - ``of_set_mpls_ttl``: OpenFlow's ``OFPAT_SET_MPLS_TTL``.
3925
3926   - ``mpls_ttl``: MPLS TTL.
3927
3928 - ``of_dec_mpls_ttl``: OpenFlow's ``OFPAT_DEC_MPLS_TTL``.
3929
3930 - ``of_set_nw_ttl``: OpenFlow's ``OFPAT_SET_NW_TTL``.
3931
3932   - ``nw_ttl``: IP TTL.
3933
3934 - ``of_dec_nw_ttl``: OpenFlow's ``OFPAT_DEC_NW_TTL``.
3935
3936 - ``of_copy_ttl_out``: OpenFlow's ``OFPAT_COPY_TTL_OUT``.
3937
3938 - ``of_copy_ttl_in``: OpenFlow's ``OFPAT_COPY_TTL_IN``.
3939
3940 - ``of_pop_vlan``: OpenFlow's ``OFPAT_POP_VLAN``.
3941
3942 - ``of_push_vlan``: OpenFlow's ``OFPAT_PUSH_VLAN``.
3943
3944   - ``ethertype``: Ethertype.
3945
3946 - ``of_set_vlan_vid``: OpenFlow's ``OFPAT_SET_VLAN_VID``.
3947
3948   - ``vlan_vid``: VLAN id.
3949
3950 - ``of_set_vlan_pcp``: OpenFlow's ``OFPAT_SET_VLAN_PCP``.
3951
3952   - ``vlan_pcp``: VLAN priority.
3953
3954 - ``of_pop_mpls``: OpenFlow's ``OFPAT_POP_MPLS``.
3955
3956   - ``ethertype``: Ethertype.
3957
3958 - ``of_push_mpls``: OpenFlow's ``OFPAT_PUSH_MPLS``.
3959
3960   - ``ethertype``: Ethertype.
3961
3962 - ``vxlan_encap``: Performs a VXLAN encapsulation, outer layer configuration
3963   is done through `Config VXLAN Encap outer layers`_.
3964
3965 - ``vxlan_decap``: Performs a decapsulation action by stripping all headers of
3966   the VXLAN tunnel network overlay from the matched flow.
3967
3968 - ``nvgre_encap``: Performs a NVGRE encapsulation, outer layer configuration
3969   is done through `Config NVGRE Encap outer layers`_.
3970
3971 - ``nvgre_decap``: Performs a decapsulation action by stripping all headers of
3972   the NVGRE tunnel network overlay from the matched flow.
3973
3974 - ``l2_encap``: Performs a L2 encapsulation, L2 configuration
3975   is done through `Config L2 Encap`_.
3976
3977 - ``l2_decap``: Performs a L2 decapsulation, L2 configuration
3978   is done through `Config L2 Decap`_.
3979
3980 - ``mplsogre_encap``: Performs a MPLSoGRE encapsulation, outer layer
3981   configuration is done through `Config MPLSoGRE Encap outer layers`_.
3982
3983 - ``mplsogre_decap``: Performs a MPLSoGRE decapsulation, outer layer
3984   configuration is done through `Config MPLSoGRE Decap outer layers`_.
3985
3986 - ``mplsoudp_encap``: Performs a MPLSoUDP encapsulation, outer layer
3987   configuration is done through `Config MPLSoUDP Encap outer layers`_.
3988
3989 - ``mplsoudp_decap``: Performs a MPLSoUDP decapsulation, outer layer
3990   configuration is done through `Config MPLSoUDP Decap outer layers`_.
3991
3992 - ``set_ipv4_src``: Set a new IPv4 source address in the outermost IPv4 header.
3993
3994   - ``ipv4_addr``: New IPv4 source address.
3995
3996 - ``set_ipv4_dst``: Set a new IPv4 destination address in the outermost IPv4
3997   header.
3998
3999   - ``ipv4_addr``: New IPv4 destination address.
4000
4001 - ``set_ipv6_src``: Set a new IPv6 source address in the outermost IPv6 header.
4002
4003   - ``ipv6_addr``: New IPv6 source address.
4004
4005 - ``set_ipv6_dst``: Set a new IPv6 destination address in the outermost IPv6
4006   header.
4007
4008   - ``ipv6_addr``: New IPv6 destination address.
4009
4010 - ``set_tp_src``: Set a new source port number in the outermost TCP/UDP
4011   header.
4012
4013   - ``port``: New TCP/UDP source port number.
4014
4015 - ``set_tp_dst``: Set a new destination port number in the outermost TCP/UDP
4016   header.
4017
4018   - ``port``: New TCP/UDP destination port number.
4019
4020 - ``mac_swap``: Swap the source and destination MAC addresses in the outermost
4021   Ethernet header.
4022
4023 - ``dec_ttl``: Performs a decrease TTL value action
4024
4025 - ``set_ttl``: Set TTL value with specified value
4026   - ``ttl_value {unsigned}``: The new TTL value to be set
4027
4028 - ``set_mac_src``: set source MAC address
4029
4030   - ``mac_addr {MAC-48}``: new source MAC address
4031
4032 - ``set_mac_dst``: set destination MAC address
4033
4034   - ``mac_addr {MAC-48}``: new destination MAC address
4035
4036 - ``inc_tcp_seq``: Increase sequence number in the outermost TCP header.
4037
4038   - ``value {unsigned}``: Value to increase TCP sequence number by.
4039
4040 - ``dec_tcp_seq``: Decrease sequence number in the outermost TCP header.
4041
4042   - ``value {unsigned}``: Value to decrease TCP sequence number by.
4043
4044 - ``inc_tcp_ack``: Increase acknowledgment number in the outermost TCP header.
4045
4046   - ``value {unsigned}``: Value to increase TCP acknowledgment number by.
4047
4048 - ``dec_tcp_ack``: Decrease acknowledgment number in the outermost TCP header.
4049
4050   - ``value {unsigned}``: Value to decrease TCP acknowledgment number by.
4051
4052 - ``set_ipv4_dscp``: Set IPv4 DSCP value with specified value
4053
4054   - ``dscp_value {unsigned}``: The new DSCP value to be set
4055
4056 - ``set_ipv6_dscp``: Set IPv6 DSCP value with specified value
4057
4058   - ``dscp_value {unsigned}``: The new DSCP value to be set
4059
4060 - ``shared``: Use shared action created via
4061   ``flow shared_action {port_id} create``
4062
4063   - ``shared_action_id {unsigned}``: Shared action ID to use
4064
4065 Destroying flow rules
4066 ~~~~~~~~~~~~~~~~~~~~~
4067
4068 ``flow destroy`` destroys one or more rules from their rule ID (as returned
4069 by ``flow create``), this command calls ``rte_flow_destroy()`` as many
4070 times as necessary::
4071
4072    flow destroy {port_id} rule {rule_id} [...]
4073
4074 If successful, it will show::
4075
4076    Flow rule #[...] destroyed
4077
4078 It does not report anything for rule IDs that do not exist. The usual error
4079 message is shown when a rule cannot be destroyed::
4080
4081    Caught error type [...] ([...]): [...]
4082
4083 ``flow flush`` destroys all rules on a device and does not take extra
4084 arguments. It is bound to ``rte_flow_flush()``::
4085
4086    flow flush {port_id}
4087
4088 Any errors are reported as above.
4089
4090 Creating several rules and destroying them::
4091
4092    testpmd> flow create 0 ingress pattern eth / ipv6 / end
4093       actions queue index 2 / end
4094    Flow rule #0 created
4095    testpmd> flow create 0 ingress pattern eth / ipv4 / end
4096       actions queue index 3 / end
4097    Flow rule #1 created
4098    testpmd> flow destroy 0 rule 0 rule 1
4099    Flow rule #1 destroyed
4100    Flow rule #0 destroyed
4101    testpmd>
4102
4103 The same result can be achieved using ``flow flush``::
4104
4105    testpmd> flow create 0 ingress pattern eth / ipv6 / end
4106       actions queue index 2 / end
4107    Flow rule #0 created
4108    testpmd> flow create 0 ingress pattern eth / ipv4 / end
4109       actions queue index 3 / end
4110    Flow rule #1 created
4111    testpmd> flow flush 0
4112    testpmd>
4113
4114 Non-existent rule IDs are ignored::
4115
4116    testpmd> flow create 0 ingress pattern eth / ipv6 / end
4117       actions queue index 2 / end
4118    Flow rule #0 created
4119    testpmd> flow create 0 ingress pattern eth / ipv4 / end
4120       actions queue index 3 / end
4121    Flow rule #1 created
4122    testpmd> flow destroy 0 rule 42 rule 10 rule 2
4123    testpmd>
4124    testpmd> flow destroy 0 rule 0
4125    Flow rule #0 destroyed
4126    testpmd>
4127
4128 Querying flow rules
4129 ~~~~~~~~~~~~~~~~~~~
4130
4131 ``flow query`` queries a specific action of a flow rule having that
4132 ability. Such actions collect information that can be reported using this
4133 command. It is bound to ``rte_flow_query()``::
4134
4135    flow query {port_id} {rule_id} {action}
4136
4137 If successful, it will display either the retrieved data for known actions
4138 or the following message::
4139
4140    Cannot display result for action type [...] ([...])
4141
4142 Otherwise, it will complain either that the rule does not exist or that some
4143 error occurred::
4144
4145    Flow rule #[...] not found
4146
4147 ::
4148
4149    Caught error type [...] ([...]): [...]
4150
4151 Currently only the ``count`` action is supported. This action reports the
4152 number of packets that hit the flow rule and the total number of bytes. Its
4153 output has the following format::
4154
4155    count:
4156     hits_set: [...] # whether "hits" contains a valid value
4157     bytes_set: [...] # whether "bytes" contains a valid value
4158     hits: [...] # number of packets
4159     bytes: [...] # number of bytes
4160
4161 Querying counters for TCPv6 packets redirected to queue 6::
4162
4163    testpmd> flow create 0 ingress pattern eth / ipv6 / tcp / end
4164       actions queue index 6 / count / end
4165    Flow rule #4 created
4166    testpmd> flow query 0 4 count
4167    count:
4168     hits_set: 1
4169     bytes_set: 0
4170     hits: 386446
4171     bytes: 0
4172    testpmd>
4173
4174 Listing flow rules
4175 ~~~~~~~~~~~~~~~~~~
4176
4177 ``flow list`` lists existing flow rules sorted by priority and optionally
4178 filtered by group identifiers::
4179
4180    flow list {port_id} [group {group_id}] [...]
4181
4182 This command only fails with the following message if the device does not
4183 exist::
4184
4185    Invalid port [...]
4186
4187 Output consists of a header line followed by a short description of each
4188 flow rule, one per line. There is no output at all when no flow rules are
4189 configured on the device::
4190
4191    ID      Group   Prio    Attr    Rule
4192    [...]   [...]   [...]   [...]   [...]
4193
4194 ``Attr`` column flags:
4195
4196 - ``i`` for ``ingress``.
4197 - ``e`` for ``egress``.
4198
4199 Creating several flow rules and listing them::
4200
4201    testpmd> flow create 0 ingress pattern eth / ipv4 / end
4202       actions queue index 6 / end
4203    Flow rule #0 created
4204    testpmd> flow create 0 ingress pattern eth / ipv6 / end
4205       actions queue index 2 / end
4206    Flow rule #1 created
4207    testpmd> flow create 0 priority 5 ingress pattern eth / ipv4 / udp / end
4208       actions rss queues 6 7 8 end / end
4209    Flow rule #2 created
4210    testpmd> flow list 0
4211    ID      Group   Prio    Attr    Rule
4212    0       0       0       i-      ETH IPV4 => QUEUE
4213    1       0       0       i-      ETH IPV6 => QUEUE
4214    2       0       5       i-      ETH IPV4 UDP => RSS
4215    testpmd>
4216
4217 Rules are sorted by priority (i.e. group ID first, then priority level)::
4218
4219    testpmd> flow list 1
4220    ID      Group   Prio    Attr    Rule
4221    0       0       0       i-      ETH => COUNT
4222    6       0       500     i-      ETH IPV6 TCP => DROP COUNT
4223    5       0       1000    i-      ETH IPV6 ICMP => QUEUE
4224    1       24      0       i-      ETH IPV4 UDP => QUEUE
4225    4       24      10      i-      ETH IPV4 TCP => DROP
4226    3       24      20      i-      ETH IPV4 => DROP
4227    2       24      42      i-      ETH IPV4 UDP => QUEUE
4228    7       63      0       i-      ETH IPV6 UDP VXLAN => MARK QUEUE
4229    testpmd>
4230
4231 Output can be limited to specific groups::
4232
4233    testpmd> flow list 1 group 0 group 63
4234    ID      Group   Prio    Attr    Rule
4235    0       0       0       i-      ETH => COUNT
4236    6       0       500     i-      ETH IPV6 TCP => DROP COUNT
4237    5       0       1000    i-      ETH IPV6 ICMP => QUEUE
4238    7       63      0       i-      ETH IPV6 UDP VXLAN => MARK QUEUE
4239    testpmd>
4240
4241 Toggling isolated mode
4242 ~~~~~~~~~~~~~~~~~~~~~~
4243
4244 ``flow isolate`` can be used to tell the underlying PMD that ingress traffic
4245 must only be injected from the defined flow rules; that no default traffic
4246 is expected outside those rules and the driver is free to assign more
4247 resources to handle them. It is bound to ``rte_flow_isolate()``::
4248
4249  flow isolate {port_id} {boolean}
4250
4251 If successful, enabling or disabling isolated mode shows either::
4252
4253  Ingress traffic on port [...]
4254     is now restricted to the defined flow rules
4255
4256 Or::
4257
4258  Ingress traffic on port [...]
4259     is not restricted anymore to the defined flow rules
4260
4261 Otherwise, in case of error::
4262
4263    Caught error type [...] ([...]): [...]
4264
4265 Mainly due to its side effects, PMDs supporting this mode may not have the
4266 ability to toggle it more than once without reinitializing affected ports
4267 first (e.g. by exiting testpmd).
4268
4269 Enabling isolated mode::
4270
4271  testpmd> flow isolate 0 true
4272  Ingress traffic on port 0 is now restricted to the defined flow rules
4273  testpmd>
4274
4275 Disabling isolated mode::
4276
4277  testpmd> flow isolate 0 false
4278  Ingress traffic on port 0 is not restricted anymore to the defined flow rules
4279  testpmd>
4280
4281 Dumping HW internal information
4282 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4283
4284 ``flow dump`` dumps the hardware's internal representation information of
4285 all flows. It is bound to ``rte_flow_dev_dump()``::
4286
4287    flow dump {port_id} {output_file}
4288
4289 If successful, it will show::
4290
4291    Flow dump finished
4292
4293 Otherwise, it will complain error occurred::
4294
4295    Caught error type [...] ([...]): [...]
4296
4297 Listing and destroying aged flow rules
4298 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4299
4300 ``flow aged`` simply lists aged flow rules be get from api ``rte_flow_get_aged_flows``,
4301 and ``destroy`` parameter can be used to destroy those flow rules in PMD.
4302
4303    flow aged {port_id} [destroy]
4304
4305 Listing current aged flow rules::
4306
4307    testpmd> flow aged 0
4308    Port 0 total aged flows: 0
4309    testpmd> flow create 0 ingress pattern eth / ipv4 src is 2.2.2.14 / end
4310       actions age timeout 5 / queue index 0 /  end
4311    Flow rule #0 created
4312    testpmd> flow create 0 ingress pattern eth / ipv4 src is 2.2.2.15 / end
4313       actions age timeout 4 / queue index 0 /  end
4314    Flow rule #1 created
4315    testpmd> flow create 0 ingress pattern eth / ipv4 src is 2.2.2.16 / end
4316       actions age timeout 2 / queue index 0 /  end
4317    Flow rule #2 created
4318    testpmd> flow create 0 ingress pattern eth / ipv4 src is 2.2.2.17 / end
4319       actions age timeout 3 / queue index 0 /  end
4320    Flow rule #3 created
4321
4322
4323 Aged Rules are simply list as command ``flow list {port_id}``, but strip the detail rule
4324 information, all the aged flows are sorted by the longest timeout time. For example, if
4325 those rules be configured in the same time, ID 2 will be the first aged out rule, the next
4326 will be ID 3, ID 1, ID 0::
4327
4328    testpmd> flow aged 0
4329    Port 0 total aged flows: 4
4330    ID      Group   Prio    Attr
4331    2       0       0       i--
4332    3       0       0       i--
4333    1       0       0       i--
4334    0       0       0       i--
4335
4336 If attach ``destroy`` parameter, the command will destroy all the list aged flow rules.
4337
4338    testpmd> flow aged 0 destroy
4339    Port 0 total aged flows: 4
4340    ID      Group   Prio    Attr
4341    2       0       0       i--
4342    3       0       0       i--
4343    1       0       0       i--
4344    0       0       0       i--
4345
4346    Flow rule #2 destroyed
4347    Flow rule #3 destroyed
4348    Flow rule #1 destroyed
4349    Flow rule #0 destroyed
4350    4 flows be destroyed
4351    testpmd> flow aged 0
4352    Port 0 total aged flows: 0
4353
4354 Creating shared actions
4355 ~~~~~~~~~~~~~~~~~~~~~~~
4356 ``flow shared_action {port_id} create`` creates shared action with optional
4357 shared action ID. It is bound to ``rte_flow_shared_action_create()``::
4358
4359    flow shared_action {port_id} create [action_id {shared_action_id}]
4360       [ingress] [egress] [transfer] action {action} / end
4361
4362 If successful, it will show::
4363
4364    Shared action #[...] created
4365
4366 Otherwise, it will complain either that shared action already exists or that
4367 some error occurred::
4368
4369    Shared action #[...] is already assigned, delete it first
4370
4371 ::
4372
4373    Caught error type [...] ([...]): [...]
4374
4375 Create shared rss action with id 100 to queues 1 and 2 on port 0::
4376
4377    testpmd> flow shared_action 0 create action_id 100 \
4378       ingress action rss queues 1 2 end / end
4379
4380 Create shared rss action with id assigned by testpmd to queues 1 and 2 on
4381 port 0::
4382
4383         testpmd> flow shared_action 0 create action_id \
4384                 ingress action rss queues 0 1 end / end
4385
4386 Updating shared actions
4387 ~~~~~~~~~~~~~~~~~~~~~~~
4388 ``flow shared_action {port_id} update`` updates configuration of the shared
4389 action from its shared action ID (as returned by
4390 ``flow shared_action {port_id} create``). It is bound to
4391 ``rte_flow_shared_action_update()``::
4392
4393    flow shared_action {port_id} update {shared_action_id}
4394       action {action} / end
4395
4396 If successful, it will show::
4397
4398    Shared action #[...] updated
4399
4400 Otherwise, it will complain either that shared action not found or that some
4401 error occurred::
4402
4403    Failed to find shared action #[...] on port [...]
4404
4405 ::
4406
4407    Caught error type [...] ([...]): [...]
4408
4409 Update shared rss action having id 100 on port 0 with rss to queues 0 and 3
4410 (in create example above rss queues were 1 and 2)::
4411
4412    testpmd> flow shared_action 0 update 100 action rss queues 0 3 end / end
4413
4414 Destroying shared actions
4415 ~~~~~~~~~~~~~~~~~~~~~~~~~
4416 ``flow shared_action {port_id} update`` destroys one or more shared actions
4417 from their shared action IDs (as returned by
4418 ``flow shared_action {port_id} create``). It is bound to
4419 ``rte_flow_shared_action_destroy()``::
4420
4421    flow shared_action {port_id} destroy action_id {shared_action_id} [...]
4422
4423 If successful, it will show::
4424
4425    Shared action #[...] destroyed
4426
4427 It does not report anything for shared action IDs that do not exist.
4428 The usual error message is shown when a shared action cannot be destroyed::
4429
4430    Caught error type [...] ([...]): [...]
4431
4432 Destroy shared actions having id 100 & 101::
4433
4434    testpmd> flow shared_action 0 destroy action_id 100 action_id 101
4435
4436 Query shared actions
4437 ~~~~~~~~~~~~~~~~~~~~
4438 ``flow shared_action {port_id} query`` queries the shared action from its
4439 shared action ID (as returned by ``flow shared_action {port_id} create``).
4440 It is bound to ``rte_flow_shared_action_query()``::
4441
4442   flow shared_action {port_id} query {shared_action_id}
4443
4444 Currently only rss shared action supported. If successful, it will show::
4445
4446    Shared RSS action:
4447       refs:[...]
4448
4449 Otherwise, it will complain either that shared action not found or that some
4450 error occurred::
4451
4452    Failed to find shared action #[...] on port [...]
4453
4454 ::
4455
4456    Caught error type [...] ([...]): [...]
4457
4458 Query shared action having id 100::
4459
4460    testpmd> flow shared_action 0 query 100
4461
4462 Sample QinQ flow rules
4463 ~~~~~~~~~~~~~~~~~~~~~~
4464
4465 Before creating QinQ rule(s) the following commands should be issued to enable QinQ::
4466
4467    testpmd> port stop 0
4468    testpmd> vlan set extend on 0
4469
4470 The above command sets the inner and outer TPID's to 0x8100.
4471
4472 To change the TPID's the following commands should be used::
4473
4474    testpmd> vlan set outer tpid 0x88A8 0
4475    testpmd> vlan set inner tpid 0x8100 0
4476    testpmd> port start 0
4477
4478 Validate and create a QinQ rule on port 0 to steer traffic to a VF queue in a VM.
4479
4480 ::
4481
4482    testpmd> flow validate 0 ingress pattern eth / vlan tci is 123 /
4483        vlan tci is 456 / end actions vf id 1 / queue index 0 / end
4484    Flow rule #0 validated
4485
4486    testpmd> flow create 0 ingress pattern eth / vlan tci is 4 /
4487        vlan tci is 456 / end actions vf id 123 / queue index 0 / end
4488    Flow rule #0 created
4489
4490    testpmd> flow list 0
4491    ID      Group   Prio    Attr    Rule
4492    0       0       0       i-      ETH VLAN VLAN=>VF QUEUE
4493
4494 Validate and create a QinQ rule on port 0 to steer traffic to a queue on the host.
4495
4496 ::
4497
4498    testpmd> flow validate 0 ingress pattern eth / vlan tci is 321 /
4499         vlan tci is 654 / end actions pf / queue index 0 / end
4500    Flow rule #1 validated
4501
4502    testpmd> flow create 0 ingress pattern eth / vlan tci is 321 /
4503         vlan tci is 654 / end actions pf / queue index 1 / end
4504    Flow rule #1 created
4505
4506    testpmd> flow list 0
4507    ID      Group   Prio    Attr    Rule
4508    0       0       0       i-      ETH VLAN VLAN=>VF QUEUE
4509    1       0       0       i-      ETH VLAN VLAN=>PF QUEUE
4510
4511 Sample VXLAN flow rules
4512 ~~~~~~~~~~~~~~~~~~~~~~~
4513
4514 Before creating VXLAN rule(s), the UDP port should be added for VXLAN packet
4515 filter on a port::
4516
4517   testpmd> rx_vxlan_port add 4789 0
4518
4519 Create VXLAN rules on port 0 to steer traffic to PF queues.
4520
4521 ::
4522
4523   testpmd> flow create 0 ingress pattern eth / ipv4 / udp / vxlan /
4524          eth dst is 00:11:22:33:44:55 / end actions pf / queue index 1 / end
4525   Flow rule #0 created
4526
4527   testpmd> flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 3 /
4528          eth dst is 00:11:22:33:44:55 / end actions pf / queue index 2 / end
4529   Flow rule #1 created
4530
4531   testpmd> flow create 0 ingress pattern eth / ipv4 / udp / vxlan /
4532          eth dst is 00:11:22:33:44:55 / vlan tci is 10 / end actions pf /
4533          queue index 3 / end
4534   Flow rule #2 created
4535
4536   testpmd> flow create 0 ingress pattern eth / ipv4 / udp / vxlan vni is 5 /
4537          eth dst is 00:11:22:33:44:55 / vlan tci is 20 / end actions pf /
4538          queue index 4 / end
4539   Flow rule #3 created
4540
4541   testpmd> flow create 0 ingress pattern eth dst is 00:00:00:00:01:00 / ipv4 /
4542          udp / vxlan vni is 6 /  eth dst is 00:11:22:33:44:55 / end actions pf /
4543          queue index 5 / end
4544   Flow rule #4 created
4545
4546   testpmd> flow list 0
4547   ID      Group   Prio    Attr    Rule
4548   0       0       0       i-      ETH IPV4 UDP VXLAN ETH => QUEUE
4549   1       0       0       i-      ETH IPV4 UDP VXLAN ETH => QUEUE
4550   2       0       0       i-      ETH IPV4 UDP VXLAN ETH VLAN => QUEUE
4551   3       0       0       i-      ETH IPV4 UDP VXLAN ETH VLAN => QUEUE
4552   4       0       0       i-      ETH IPV4 UDP VXLAN ETH => QUEUE
4553
4554 Sample VXLAN encapsulation rule
4555 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4556
4557 VXLAN encapsulation outer layer has default value pre-configured in testpmd
4558 source code, those can be changed by using the following commands
4559
4560 IPv4 VXLAN outer header::
4561
4562  testpmd> set vxlan ip-version ipv4 vni 4 udp-src 4 udp-dst 4 ip-src 127.0.0.1
4563         ip-dst 128.0.0.1 eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4564  testpmd> flow create 0 ingress pattern end actions vxlan_encap /
4565         queue index 0 / end
4566
4567  testpmd> set vxlan-with-vlan ip-version ipv4 vni 4 udp-src 4 udp-dst 4 ip-src
4568          127.0.0.1 ip-dst 128.0.0.1 vlan-tci 34 eth-src 11:11:11:11:11:11
4569          eth-dst 22:22:22:22:22:22
4570  testpmd> flow create 0 ingress pattern end actions vxlan_encap /
4571          queue index 0 / end
4572
4573  testpmd> set vxlan-tos-ttl ip-version ipv4 vni 4 udp-src 4 udp-dst 4 ip-tos 0
4574          ip-ttl 255 ip-src 127.0.0.1 ip-dst 128.0.0.1 eth-src 11:11:11:11:11:11
4575          eth-dst 22:22:22:22:22:22
4576  testpmd> flow create 0 ingress pattern end actions vxlan_encap /
4577          queue index 0 / end
4578
4579 IPv6 VXLAN outer header::
4580
4581  testpmd> set vxlan ip-version ipv6 vni 4 udp-src 4 udp-dst 4 ip-src ::1
4582         ip-dst ::2222 eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4583  testpmd> flow create 0 ingress pattern end actions vxlan_encap /
4584          queue index 0 / end
4585
4586  testpmd> set vxlan-with-vlan ip-version ipv6 vni 4 udp-src 4 udp-dst 4
4587          ip-src ::1 ip-dst ::2222 vlan-tci 34 eth-src 11:11:11:11:11:11
4588          eth-dst 22:22:22:22:22:22
4589  testpmd> flow create 0 ingress pattern end actions vxlan_encap /
4590          queue index 0 / end
4591
4592  testpmd> set vxlan-tos-ttl ip-version ipv6 vni 4 udp-src 4 udp-dst 4
4593          ip-tos 0 ip-ttl 255 ::1 ip-dst ::2222 eth-src 11:11:11:11:11:11
4594          eth-dst 22:22:22:22:22:22
4595  testpmd> flow create 0 ingress pattern end actions vxlan_encap /
4596          queue index 0 / end
4597
4598 Sample NVGRE encapsulation rule
4599 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4600
4601 NVGRE encapsulation outer layer has default value pre-configured in testpmd
4602 source code, those can be changed by using the following commands
4603
4604 IPv4 NVGRE outer header::
4605
4606  testpmd> set nvgre ip-version ipv4 tni 4 ip-src 127.0.0.1 ip-dst 128.0.0.1
4607         eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4608  testpmd> flow create 0 ingress pattern end actions nvgre_encap /
4609         queue index 0 / end
4610
4611  testpmd> set nvgre-with-vlan ip-version ipv4 tni 4 ip-src 127.0.0.1
4612          ip-dst 128.0.0.1 vlan-tci 34 eth-src 11:11:11:11:11:11
4613          eth-dst 22:22:22:22:22:22
4614  testpmd> flow create 0 ingress pattern end actions nvgre_encap /
4615          queue index 0 / end
4616
4617 IPv6 NVGRE outer header::
4618
4619  testpmd> set nvgre ip-version ipv6 tni 4 ip-src ::1 ip-dst ::2222
4620         eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4621  testpmd> flow create 0 ingress pattern end actions nvgre_encap /
4622         queue index 0 / end
4623
4624  testpmd> set nvgre-with-vlan ip-version ipv6 tni 4 ip-src ::1 ip-dst ::2222
4625         vlan-tci 34 eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4626  testpmd> flow create 0 ingress pattern end actions nvgre_encap /
4627         queue index 0 / end
4628
4629 Sample L2 encapsulation rule
4630 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4631
4632 L2 encapsulation has default value pre-configured in testpmd
4633 source code, those can be changed by using the following commands
4634
4635 L2 header::
4636
4637  testpmd> set l2_encap ip-version ipv4
4638         eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4639  testpmd> flow create 0 ingress pattern eth / ipv4 / udp / mpls / end actions
4640         mplsoudp_decap / l2_encap / end
4641
4642 L2 with VXLAN header::
4643
4644  testpmd> set l2_encap-with-vlan ip-version ipv4 vlan-tci 34
4645          eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4646  testpmd> flow create 0 ingress pattern eth / ipv4 / udp / mpls / end actions
4647         mplsoudp_decap / l2_encap / end
4648
4649 Sample L2 decapsulation rule
4650 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4651
4652 L2 decapsulation has default value pre-configured in testpmd
4653 source code, those can be changed by using the following commands
4654
4655 L2 header::
4656
4657  testpmd> set l2_decap
4658  testpmd> flow create 0 egress pattern eth / end actions l2_decap / mplsoudp_encap /
4659         queue index 0 / end
4660
4661 L2 with VXLAN header::
4662
4663  testpmd> set l2_encap-with-vlan
4664  testpmd> flow create 0 egress pattern eth / end actions l2_encap / mplsoudp_encap /
4665          queue index 0 / end
4666
4667 Sample MPLSoGRE encapsulation rule
4668 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4669
4670 MPLSoGRE encapsulation outer layer has default value pre-configured in testpmd
4671 source code, those can be changed by using the following commands
4672
4673 IPv4 MPLSoGRE outer header::
4674
4675  testpmd> set mplsogre_encap ip-version ipv4 label 4
4676         ip-src 127.0.0.1 ip-dst 128.0.0.1 eth-src 11:11:11:11:11:11
4677         eth-dst 22:22:22:22:22:22
4678  testpmd> flow create 0 egress pattern eth / end actions l2_decap /
4679         mplsogre_encap / end
4680
4681 IPv4 MPLSoGRE with VLAN outer header::
4682
4683  testpmd> set mplsogre_encap-with-vlan ip-version ipv4 label 4
4684         ip-src 127.0.0.1 ip-dst 128.0.0.1 vlan-tci 34
4685         eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4686  testpmd> flow create 0 egress pattern eth / end actions l2_decap /
4687         mplsogre_encap / end
4688
4689 IPv6 MPLSoGRE outer header::
4690
4691  testpmd> set mplsogre_encap ip-version ipv6 mask 4
4692         ip-src ::1 ip-dst ::2222 eth-src 11:11:11:11:11:11
4693         eth-dst 22:22:22:22:22:22
4694  testpmd> flow create 0 egress pattern eth / end actions l2_decap /
4695         mplsogre_encap / end
4696
4697 IPv6 MPLSoGRE with VLAN outer header::
4698
4699  testpmd> set mplsogre_encap-with-vlan ip-version ipv6 mask 4
4700         ip-src ::1 ip-dst ::2222 vlan-tci 34
4701         eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4702  testpmd> flow create 0 egress pattern eth / end actions l2_decap /
4703         mplsogre_encap / end
4704
4705 Sample MPLSoGRE decapsulation rule
4706 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4707
4708 MPLSoGRE decapsulation outer layer has default value pre-configured in testpmd
4709 source code, those can be changed by using the following commands
4710
4711 IPv4 MPLSoGRE outer header::
4712
4713  testpmd> set mplsogre_decap ip-version ipv4
4714  testpmd> flow create 0 ingress pattern eth / ipv4 / gre / mpls / end actions
4715         mplsogre_decap / l2_encap / end
4716
4717 IPv4 MPLSoGRE with VLAN outer header::
4718
4719  testpmd> set mplsogre_decap-with-vlan ip-version ipv4
4720  testpmd> flow create 0 ingress pattern eth / vlan / ipv4 / gre / mpls / end
4721         actions mplsogre_decap / l2_encap / end
4722
4723 IPv6 MPLSoGRE outer header::
4724
4725  testpmd> set mplsogre_decap ip-version ipv6
4726  testpmd> flow create 0 ingress pattern eth / ipv6 / gre / mpls / end
4727         actions mplsogre_decap / l2_encap / end
4728
4729 IPv6 MPLSoGRE with VLAN outer header::
4730
4731  testpmd> set mplsogre_decap-with-vlan ip-version ipv6
4732  testpmd> flow create 0 ingress pattern eth / vlan / ipv6 / gre / mpls / end
4733         actions mplsogre_decap / l2_encap / end
4734
4735 Sample MPLSoUDP encapsulation rule
4736 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4737
4738 MPLSoUDP encapsulation outer layer has default value pre-configured in testpmd
4739 source code, those can be changed by using the following commands
4740
4741 IPv4 MPLSoUDP outer header::
4742
4743  testpmd> set mplsoudp_encap ip-version ipv4 label 4 udp-src 5 udp-dst 10
4744         ip-src 127.0.0.1 ip-dst 128.0.0.1 eth-src 11:11:11:11:11:11
4745         eth-dst 22:22:22:22:22:22
4746  testpmd> flow create 0 egress pattern eth / end actions l2_decap /
4747         mplsoudp_encap / end
4748
4749 IPv4 MPLSoUDP with VLAN outer header::
4750
4751  testpmd> set mplsoudp_encap-with-vlan ip-version ipv4 label 4 udp-src 5
4752         udp-dst 10 ip-src 127.0.0.1 ip-dst 128.0.0.1 vlan-tci 34
4753         eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4754  testpmd> flow create 0 egress pattern eth / end actions l2_decap /
4755         mplsoudp_encap / end
4756
4757 IPv6 MPLSoUDP outer header::
4758
4759  testpmd> set mplsoudp_encap ip-version ipv6 mask 4 udp-src 5 udp-dst 10
4760         ip-src ::1 ip-dst ::2222 eth-src 11:11:11:11:11:11
4761         eth-dst 22:22:22:22:22:22
4762  testpmd> flow create 0 egress pattern eth / end actions l2_decap /
4763         mplsoudp_encap / end
4764
4765 IPv6 MPLSoUDP with VLAN outer header::
4766
4767  testpmd> set mplsoudp_encap-with-vlan ip-version ipv6 mask 4 udp-src 5
4768         udp-dst 10 ip-src ::1 ip-dst ::2222 vlan-tci 34
4769         eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4770  testpmd> flow create 0 egress pattern eth / end actions l2_decap /
4771         mplsoudp_encap / end
4772
4773 Sample MPLSoUDP decapsulation rule
4774 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4775
4776 MPLSoUDP decapsulation outer layer has default value pre-configured in testpmd
4777 source code, those can be changed by using the following commands
4778
4779 IPv4 MPLSoUDP outer header::
4780
4781  testpmd> set mplsoudp_decap ip-version ipv4
4782  testpmd> flow create 0 ingress pattern eth / ipv4 / udp / mpls / end actions
4783         mplsoudp_decap / l2_encap / end
4784
4785 IPv4 MPLSoUDP with VLAN outer header::
4786
4787  testpmd> set mplsoudp_decap-with-vlan ip-version ipv4
4788  testpmd> flow create 0 ingress pattern eth / vlan / ipv4 / udp / mpls / end
4789         actions mplsoudp_decap / l2_encap / end
4790
4791 IPv6 MPLSoUDP outer header::
4792
4793  testpmd> set mplsoudp_decap ip-version ipv6
4794  testpmd> flow create 0 ingress pattern eth / ipv6 / udp / mpls / end
4795         actions mplsoudp_decap / l2_encap / end
4796
4797 IPv6 MPLSoUDP with VLAN outer header::
4798
4799  testpmd> set mplsoudp_decap-with-vlan ip-version ipv6
4800  testpmd> flow create 0 ingress pattern eth / vlan / ipv6 / udp / mpls / end
4801         actions mplsoudp_decap / l2_encap / end
4802
4803 Sample Raw encapsulation rule
4804 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4805
4806 Raw encapsulation configuration can be set by the following commands
4807
4808 Eecapsulating VxLAN::
4809
4810  testpmd> set raw_encap 4 eth src is 10:11:22:33:44:55 / vlan tci is 1
4811         inner_type is 0x0800 / ipv4 / udp dst is 4789 / vxlan vni
4812         is 2 / end_set
4813  testpmd> flow create 0 egress pattern eth / ipv4 / end actions
4814         raw_encap index 4 / end
4815
4816 Sample Raw decapsulation rule
4817 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4818
4819 Raw decapsulation configuration can be set by the following commands
4820
4821 Decapsulating VxLAN::
4822
4823  testpmd> set raw_decap eth / ipv4 / udp / vxlan / end_set
4824  testpmd> flow create 0 ingress pattern eth / ipv4 / udp / vxlan / eth / ipv4 /
4825         end actions raw_decap / queue index 0 / end
4826
4827 Sample ESP rules
4828 ~~~~~~~~~~~~~~~~
4829
4830 ESP rules can be created by the following commands::
4831
4832  testpmd> flow create 0 ingress pattern eth / ipv4 / esp spi is 1 / end actions
4833         queue index 3 / end
4834  testpmd> flow create 0 ingress pattern eth / ipv4 / udp / esp spi is 1 / end
4835         actions queue index 3 / end
4836  testpmd> flow create 0 ingress pattern eth / ipv6 / esp spi is 1 / end actions
4837         queue index 3 / end
4838  testpmd> flow create 0 ingress pattern eth / ipv6 / udp / esp spi is 1 / end
4839         actions queue index 3 / end
4840
4841 Sample AH rules
4842 ~~~~~~~~~~~~~~~~
4843
4844 AH rules can be created by the following commands::
4845
4846  testpmd> flow create 0 ingress pattern eth / ipv4 / ah spi is 1 / end actions
4847         queue index 3 / end
4848  testpmd> flow create 0 ingress pattern eth / ipv4 / udp / ah spi is 1 / end
4849         actions queue index 3 / end
4850  testpmd> flow create 0 ingress pattern eth / ipv6 / ah spi is 1 / end actions
4851         queue index 3 / end
4852  testpmd> flow create 0 ingress pattern eth / ipv6 / udp / ah spi is 1 / end
4853         actions queue index 3 / end
4854
4855 Sample PFCP rules
4856 ~~~~~~~~~~~~~~~~~
4857
4858 PFCP rules can be created by the following commands(s_field need to be 1
4859 if seid is set)::
4860
4861  testpmd> flow create 0 ingress pattern eth / ipv4 / pfcp s_field is 0 / end
4862         actions queue index 3 / end
4863  testpmd> flow create 0 ingress pattern eth / ipv4 / pfcp s_field is 1
4864         seid is 1 / end actions queue index 3 / end
4865  testpmd> flow create 0 ingress pattern eth / ipv6 / pfcp s_field is 0 / end
4866         actions queue index 3 / end
4867  testpmd> flow create 0 ingress pattern eth / ipv6 / pfcp s_field is 1
4868         seid is 1 / end actions queue index 3 / end
4869
4870 Sample Sampling/Mirroring rules
4871 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4872
4873 Sample/Mirroring rules can be set by the following commands
4874
4875 NIC-RX Sampling rule, the matched ingress packets and sent to the queue 1,
4876 and 50% packets are duplicated and marked with 0x1234 and sent to queue 0.
4877
4878 ::
4879
4880  testpmd> set sample_actions 0 mark id  0x1234 / queue index 0 / end
4881  testpmd> flow create 0 ingress group 1 pattern eth / end actions
4882         sample ratio 2 index 0 / queue index 1 / end
4883
4884 Mirroring rule with port representors (with "transfer" attribute), the matched
4885 ingress packets with encapsulation header are sent to port id 0, and also
4886 mirrored the packets and sent to port id 2.
4887
4888 ::
4889
4890  testpmd> set sample_actions 0 port_id id 2 / end
4891  testpmd> flow create 1 ingress transfer pattern eth / end actions
4892         sample ratio 1 index 0  / raw_encap / port_id id 0 / end
4893
4894 Mirroring rule with port representors (with "transfer" attribute), the matched
4895 ingress packets are sent to port id 2, and also mirrored the packets with
4896 encapsulation header and sent to port id 0.
4897
4898 ::
4899
4900  testpmd> set sample_actions 0 raw_encap / port_id id 0 / end
4901  testpmd> flow create 0 ingress transfer pattern eth / end actions
4902         sample ratio 1 index 0  / port_id id 2 / end
4903
4904 Mirroring rule with port representors (with "transfer" attribute), the matched
4905 ingress packets are sent to port id 2, and also mirrored the packets with
4906 VXLAN encapsulation header and sent to port id 0.
4907
4908 ::
4909
4910  testpmd> set vxlan ip-version ipv4 vni 4 udp-src 4 udp-dst 4 ip-src 127.0.0.1
4911         ip-dst 128.0.0.1 eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4912  testpmd> set sample_actions 0 vxlan_encap / port_id id 0 / end
4913  testpmd> flow create 0 ingress transfer pattern eth / end actions
4914         sample ratio 1 index 0  / port_id id 2 / end
4915
4916 Mirroring rule with port representors (with "transfer" attribute), the matched
4917 ingress packets are sent to port id 2, and also mirrored the packets with
4918 NVGRE encapsulation header and sent to port id 0.
4919
4920 ::
4921
4922  testpmd> set nvgre ip-version ipv4 tni 4 ip-src 127.0.0.1 ip-dst 128.0.0.1
4923         eth-src 11:11:11:11:11:11 eth-dst 22:22:22:22:22:22
4924  testpmd> set sample_actions 0 nvgre_encap / port_id id 0 / end
4925  testpmd> flow create 0 ingress transfer pattern eth / end actions
4926         sample ratio 1 index 0  / port_id id 2 / end
4927
4928 BPF Functions
4929 --------------
4930
4931 The following sections show functions to load/unload eBPF based filters.
4932
4933 bpf-load
4934 ~~~~~~~~
4935
4936 Load an eBPF program as a callback for particular RX/TX queue::
4937
4938    testpmd> bpf-load rx|tx (portid) (queueid) (load-flags) (bpf-prog-filename)
4939
4940 The available load-flags are:
4941
4942 * ``J``: use JIT generated native code, otherwise BPF interpreter will be used.
4943
4944 * ``M``: assume input parameter is a pointer to rte_mbuf, otherwise assume it is a pointer to first segment's data.
4945
4946 * ``-``: none.
4947
4948 .. note::
4949
4950    You'll need clang v3.7 or above to build bpf program you'd like to load
4951
4952 For example:
4953
4954 .. code-block:: console
4955
4956    cd examples/bpf
4957    clang -O2 -target bpf -c t1.c
4958
4959 Then to load (and JIT compile) t1.o at RX queue 0, port 1:
4960
4961 .. code-block:: console
4962
4963    testpmd> bpf-load rx 1 0 J ./dpdk.org/examples/bpf/t1.o
4964
4965 To load (not JITed) t1.o at TX queue 0, port 0:
4966
4967 .. code-block:: console
4968
4969    testpmd> bpf-load tx 0 0 - ./dpdk.org/examples/bpf/t1.o
4970
4971 bpf-unload
4972 ~~~~~~~~~~
4973
4974 Unload previously loaded eBPF program for particular RX/TX queue::
4975
4976    testpmd> bpf-unload rx|tx (portid) (queueid)
4977
4978 For example to unload BPF filter from TX queue 0, port 0:
4979
4980 .. code-block:: console
4981
4982    testpmd> bpf-unload tx 0 0