[11:19] Hi, I have the following situation: [11:19] bonds: [11:19] bond2: [11:19]   dhcp4: false [11:19]   interfaces: [11:19]     - eno1 [11:19]     - eno2 [11:19] bridges: [11:19] br_bond2: [11:19]   dhcp4: false [11:19]   interfaces: [11:19]     - bond2 [11:19] This bridge is attached to a virtual machine which tags the eth traffic with a specific VLAN tag. [11:19] The problem is that on the tcpdump I see the outgoing packets from the bridge and from the bond, but for some reason the incoming packets reach the bond (properly tagged) but don't get forwarded to the bridge. [11:19] So the question is, on netplan, is it possible to configure a bond so that the layer2 traffic tagged with some specific VLAN ids get forwarded to a specific bridge? [11:19] Do I have to use openvswitch or netplan can handle this on its own? [11:20] to be precise: the VLAN tagging is handled inside the VM operating system [11:22] I was about to try the following: [11:22] vlans: [11:22]   bond2.5: [11:22]     id: 5 [11:22]     link: bond2 [11:22]   bond2.6: [11:22]     id: 6 [11:22]     link: bond2 [11:22] bridges: [11:22]   dhcp4: false [11:22]   interfaces: [11:22]     - bond2.5 [11:22]     - bond2.6 [11:22] but a colleague suddenly stopped me warning me that this would cause a loop.