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