DOCA Eth L2 Forwarding Application Guide
This document provides an Ethernet L2 Forwarding implementation on top of the NVIDIA® BlueField® DPU.
Th e Ethernet L2 Forwarding applicatio n is a DOCA Ethernet based application that forwards traffic from a single RX port to a single TX port and vice versa, leveraging DOCA's task/event batching feature for enhanced performance.
The application can run both on the host and the BlueField, and has two main modes:
Two-sided forwarding – device 1 → device 2 and device 2 → device 1
One-sided forwarding – device 1 → device 2 or device 2 → device 1
The one-sided mode offers better performance, enlarging the packets forwarding rate.
The Ethernet L2 Forwarding application runs on the host or the BlueField.
The following diagram shows the application running on the host.
The following diagram shows the application running on the BlueField:
The Ethernet L2 Forwarding application runs on top of the DOCA Ethernet API to form an (two/one-sided) L2 forwarding between two ports.
Two DOCA devices are opened.
Two DOCA mmaps are created.
Two DOCA Flow ports are configured and started, each with a different opened DOCA device.
Two DOCA Ethernet TXQ and RXQ contexts are initialized, each TXQ-RXQ pair with a different opened DOCA device such that traffic is steered from the device to the corresponding RXQ, and from the corresponding TXQ to the device.
Forwarding - Packets received by device x are steered to RXQ x, then allocated to TXQ y and sent by device y (and vice versa).
This application leverages the following DOCA libraries:
For additional information about the used DOCA libraries, please refer to the respective programming guides.
Please refer to the DOCA Installation Guide for Linux for details on how to install BlueField-related software.
DOCA reference applications are installed with full source code and build instructions. This allows you to compile them as-is or modify the source code to create custom versions.
For more information about the applications as well as development and compilation tips, refer to the DOCA Reference Applications page.
The source code for the application is located in the following directory:
/opt/mellanox/doca/applications/eth_l2_fwd/
Compiling All Applications
The applications are all defined under a single meson project, meaning that the default compilation will compile all the DOCA applications.
To build all the applications together, run:
cd /opt/mellanox/doca/applications/
meson /tmp/build
ninja -C /tmp/build
doca_eth_l2_fwd will be created under /tmp/build/eth_l2_fwd/.
Compiling Only the Current Application
To directly build only the Ethernet L2 Forwarding application:
cd /opt/mellanox/doca/applications/ meson /tmp/build -Denable_all_applications=
false-Denable_eth_l2_fwd=trueninja -C /tmp/buildInfodoca_eth_l2_fwdwill be created under/tmp/build/eth_l2_fwd/.Alternatively, one can set the desired flags in the
meson_options.txtfile instead of providing them in the compilation command line:Edit the following flags in
/opt/mellanox/doca/applications/meson_options.txt:Set
enable_all_applicationstofalseSet
enable_eth_l2_fwdtotrue
The same compilation commands should be used, as were shown in the previous section:
cd /opt/mellanox/doca/applications/ meson /tmp/build ninja -C /tmp/build
Infodoca_eth_l2_fwdwill be created under/tmp/build/eth_l2_fwd/.
Application Execution
The Ethernet L2 Forwarding application is provided in source form, hence a compilation is required before the application can be executed.
Application usage instructions:
Usage: doca_eth_l2_fwd [DOCA Flags] [Program Flags] DOCA Flags: -h, --help Print a help synopsis -v, --version Print program version information -l, --log-level Set the (numeric) log level
forthe program <10=DISABLE,20=CRITICAL,30=ERROR,40=WARNING,50=INFO,60=DEBUG,70=TRACE> --sdk-log-level Set the SDK (numeric) log levelforthe program <10=DISABLE,20=CRITICAL,30=ERROR,40=WARNING,50=INFO,60=DEBUG,70=TRACE> --log-filter Filter logs from specific modules, separated by comma -j, --json <path> Parse command line flags from an input json file Program Flags: -d, --devs-names <name1,name2> Set two IB devices names separated by a comma, without spaces. -r, --rate <rate> Set packets receive rate (in [MB/s]),defaultis12500. -ps, --pkt-size <size> Set max packet size (in [B]),defaultis1600. -t, --time <time> Set packet max process time (in [μs]),defaultis1. -nt, --num-tasks <num> Set number of tasks per batch,defaultis128. -nb, --num-batches <num> Set number of task batches,defaultis32. -o, --one-sided-forwarding <num> Set one-sided forwarding:0- two-sided forwarding,1- device1-> device2,2- device2-> device1.defaultis0. -f, --max-forwardings <num> Set max forwardings after which the application run will end,defaultis0, meaning no limit.For additional information, please refer to the Command Line Flags section below.
NoteThe above usage printout can be printed to the command line using the
-h(or--help) options:./doca_eth_l2_fwd -h
CLI example for running the application either on the BlueField or on the host:
./doca_eth_l2_fwd -d mlx5_0,mlx5_1
NoteBoth IB devices identifiers (
mlx5_0, mlx5_1) should match the identifiers of the desired IB devices.
Command Line Flags
General Flags
Short Flag | Long Flag | Description |
|
| Print a help synopsis |
|
| Print program version information |
|
| Set the log level for the application:
|
N/A |
| Set the log level for the program:
|
N/A |
| Filter logs from specific modules, separated by comma |
|
| Parse command line flags from an input JSON file as well as from the CLI (if provided) |
Refer to DOCA Arg Parser for more information regarding the supported flags and execution modes.
Program Flags
Short Flag | Long Flag | Description |
|
| Two IB devices names, separated by a comma, without spaces. Note
This is a mandatory flag. |
|
| The rate (in [MB/s]) in which the RX port is expected to receive traffic. |
|
| The maximum size (in [B]) of a received packet. |
|
| The maximum time taking to process a single packet. |
|
| The number of tasks to set per a single task batch. |
|
| The number of task batches to set for the TX side. |
|
| Flag to set one of 3 options:
|
|
| The maximum number of forwarding |
Troubleshooting
Refer to the NVIDIA BlueField Platform Software Troubleshooting Guide for any issue encountered with the compilation, installation, or execution of the DOCA applications.
Parse application argument.
Initialize Arg parser resources and register DOCA general parameters.
doca_argp_init();
Register Ethernet L2 Forwarding application parameters.
register_eth_l2_forwarding_params();
Parse the arguments.
doca_argp_start();
Parse DOCA flags.
Parse application parameters.
Execute Ethernet L2 Forwarding application main logic.
eth_l2_fwd_execute();
Open the two chosen DOCA devices.
Initialize necessary DOCA Core objects.
Initialize ETH RXQ/TXQ contexts for the devices.
Forward packets.
Clean up application resources.
eth_l2_fwd_cleanup();
Stop all contexts and drain tasks.
Free all application resources.
Arg parser destroy.
doca_argp_destroy()
/opt/mellanox/doca/applications/eth_l2_fwd/