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