Help debugging example p4 programs on BlueField-2 cards in Dell server running Ubuntu 20.04

I have two Dell servers each with a BlueField-2 card. They are connected to each other via 100Gbps port.

I am running one of the examples here but it doesnt seem to be receiving traffic. How do I confirm this example works?

root@SERVERNAME:/home/ubuntu# /opt/mellanox/doca/examples/simple_fwd_vnf/bin/doca_simple_fwd_vnf -a auxiliary:mlx5_core.sf.2,sft_en=1 -a auxiliary:mlx5_core.sf.3,sft_en=1 – --nr_queues=4 --stats_timer=2
EAL: Detected 8 lcore(s)
EAL: Detected 1 NUMA nodes
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode ‘PA’
EAL: No available hugepages reported in hugepages-32768kB
EAL: No available hugepages reported in hugepages-64kB
EAL: No available hugepages reported in hugepages-1048576kB
EAL: Probing VFIO support…
EAL: VFIO support initialized
EAL: No legacy callbacks, legacy socket not created
[19:15:53:078975][DOCA][I][SIMPLE_FWD_VNF]: core 1 process queue 1 start
[19:15:53:079103][DOCA][I][SIMPLE_FWD_VNF]: core 3 process queue 3 start
[19:15:53:079054][DOCA][I][SIMPLE_FWD_VNF]: core 2 process queue 2 start
[19:15:53:079173][DOCA][I][SIMPLE_FWD_VNF]: core 4 process queue 4 start
[19:15:53:079231][DOCA][I][SIMPLE_FWD_VNF]: core 5 process queue 5 start
[19:15:53:079486][DOCA][I][SIMPLE_FWD_VNF]: core 6 process queue 6 start
[19:15:53:079549][DOCA][I][SIMPLE_FWD_VNF]: core 0 process queue 0 start

It seems that the hugepages have not been allocated. Could you try running the below before running the application?

sudo echo 2048 > /sys/kernel/mm/hugepages/hugepages-2048kB/nr_hugepages

Please refer to this link for the NVIDIA DOCA Simple Forward VNF Application Guide- Simple Forward VNF :: NVIDIA DOCA SDK Documentation
Troubleshooting Guide - Troubleshooting Guide :: NVIDIA DOCA SDK Documentation

Please let me know if that works.