如何 运行 在同一主机上通过 2 个 dpdk-testpmd 运行ning 实例发送和接收流量?

How to run send and receive traffic over 2 instances of dpdk-testpmd running on the same host?

注意:我是网络和dpdk的新手,所以在基本概念上可能会有一些误解...

我想 运行 同一主机上 dpdk-testpmd 的 2 个实例通过单独的 NIC 发送和接收流量。

配置:

网卡:

更新

TESTPMD 日志:

Logical Core 12 (socket 0) forwards packets on 6 streams:
  RX P=0/Q=0 (socket 0) -> TX P=0/Q=0 (socket 0) peer=02:00:00:00:00:00

问题:

  1. 如何在实例1中设置实例2端口的MAC地址?
  2. RX P=0/Q=0是什么意思?
  3. NIC 是否会从它的 RXQ 0(内存中的环形缓冲区?)接收数据包
  4. NIC 是否会将数据包(刚从 RXQ 获得)放入它的 TXQ 0?
  5. 接下来会发生什么?
  6. 数据包的目的地在哪里?
  7. 如何set/check呢?

希望得到您的帮助。 提前致谢。

注意:我强烈建议您阅读有关 dpdk testpmd 的内容,因为它详细介绍了您的所有问题。根据 Whosebug 指南,多个子问题使回答变得困难。请使用格式正确且结构合理的问题以获得更好的覆盖面和答案。

@Alexcured 因为你已经提到 你知道如何 运行 2 个单独的 dpdk-testpmd 实例。我只建议大量阅读 dpdk-testpmd URL,它也能回答您的大部分问题。

做出假设,两个 PCIe NIC 都正常工作,并且使用 arping 或 ping(内核驱动程序)测试了 2 之间的互连。将两个 PCIe 设备绑定到 DPDK 支持的驱动程序后,应该使用 DPDK 20.11.1 的选项,例如

  • 使用文件前缀选项作为唯一名称
  • 设置套接字内存以从所需的 NUMA-SOCKET 获取内存
  • 设置套接字限制以防止大页面 mmap 膨胀
  • 使用 w|b 选项将 PCIe 设备列入白名单|黑名单(0000:3b:00.0 和 0000:3b:00.1)
  • 由于它是独立的物理设备,因此请确保 2 个 PCIe 端口之间存在物理电缆连接。

[Q.1]如何在实例1中设置实例2端口的MAC地址?

[A.1] in DPDK instance-1 & instance 2, execute `show port 0 mac` to show current port MAC address. Note down the MAC address correctly. To set the MAC address of peer use command `set eth-peer (port_id) (peer_addr)`.
In non interactive mode this can be done from cmdline too.

[Q.2]RX P=0/Q=0是什么意思?

[A.2] P stands for `port`, and Q stands for `queue`. So P=0/Q=0 means `port 0/queue 0`

[Q.3] NIC 是否会从它的 RXQ 0(内存中的环形缓冲区?)接收数据包

[A.3] NIC can receive from port 0 - rxq -0; provided there is no offload|RSS|Rules set (since you have not shared the cmdline I will assume there is none). 
NIC HW RQ is mmaped to reflect HEAD-TAIL pointer to allow PMD to trigger DMA copy to mempool (huge page backed area). This is different from DPDK lib_rte_ring buffer area

[Q.4]网卡会不会把数据包(刚刚从RXQ得到)放到它的TXQ 0?

[A.4] if the option `start tx-first` is not used, as per the current understanding there will not be any packets TX from the NIC (for Intel FVL LLDP packets will be send from NIC HW unless disabled).
The default configuration in looped mode, and with 1 DPDK port RX of the Port will be always sent out as TX.

[Q.5]接下来会发生什么?

[A.5] Packet will be send out with modified eth-peer mac address

[Q.6]数据包的目的地在哪里?

[A.6] Ethernet Packet has the format of first 6 bytes as destination MAC address. With `set peer-address` done the MAC address as the destination will be set as value set.

[Q.7]如何set/check呢?

[A.7] use option `set verbose 2`. This will show the RX packet details received from the port