Bug 1426 - Bonding driver does not receive all packets in 8023ad mode (LACP)
Summary: Bonding driver does not receive all packets in 8023ad mode (LACP)
Status: UNCONFIRMED
Alias: None
Product: DPDK
Classification: Unclassified
Component: ethdev (show other bugs)
Version: 23.11
Hardware: All All
: Normal normal
Target Milestone: ---
Assignee: dev
URL:
Depends on:
Blocks:
 
Reported: 2024-04-29 20:11 CEST by Michel Machado
Modified: 2024-04-29 20:11 CEST (History)
0 users



Attachments

Description Michel Machado 2024-04-29 20:11:08 CEST
The bonding driver does not receive all packets in 8023ad mode (LACP) when it has two or more members. This bug happens because the bonding driver does not add the bond's MAC address to the members, so only the member whose MAC address is the same as the bond receives packets. One can verify the bug by calling rte_eth_macaddrs_get() on the members after the bond is started.

There are two workarounds:

1. Putting the bond in promiscuous mode with rte_eth_promiscuous_enable(), so all members receive all packets.

2. Obtaining the MAC address of the bond _after_ adding all members with rte_eth_macaddr_get(), _and_ adding this MAC address to all members with rte_eth_dev_mac_addr_add().

Note You need to log in before you can comment on or make changes to this bug.