The most common practice to connect VMs together is to use tap interfaces with the bridge between them. On a linux, bridge driver filters some classes of link-local multicast traffic, such as LACP frames. There is no easy mechanism to permit forwarding of LACP frames across the bridge interface and it requires manual patching of the bridge module code.
I would like to use LACP in my test network between the VMs without manual patching of linux bridge code on the host machine, there is no requirement to have connectivity between host and the VM.
I identified two potential solutions
- socket p2p option - but it is TCP based and I have concerns about TCP over TCP performance;
- hub - this option seems to go away very soon
What is a simplest possible solution for my need?