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