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