When looking into the configuration of the Linux bridge (vmbr0) I can see the following:
However I am not seeing the configuration that connects the tap-devices to the bridge, how are they added (tap-devices), how is the bridge aware of these devices?
Lets assume I want to add a 2nd Lan to a VM and we want to connect it to vmbr0, what are the steps required to add it to vmbr0 (assume command line).
How this can be done in pure linux-bridge, tap, commands?
How is proxmox implementing them, what kind of abstraction is it doing?
Thx
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.10.2/24
gateway 192.168.10.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
However I am not seeing the configuration that connects the tap-devices to the bridge, how are they added (tap-devices), how is the bridge aware of these devices?
Lets assume I want to add a 2nd Lan to a VM and we want to connect it to vmbr0, what are the steps required to add it to vmbr0 (assume command line).
How this can be done in pure linux-bridge, tap, commands?
How is proxmox implementing them, what kind of abstraction is it doing?
Thx
Last edited: