My Proxmox VE host has 2 eth interfaces.
I have eth0 bridged to vmbr0.
I have eth1 bridged to vmbr1.
I can assign either bridge to any virtual machine on eth0.
I would like to be able to assign vmbr0 as eth0 and vmbr1 as eth1 to the same virtual machine. I have not found a way to accomplish this via the web interface.
This is what I have set on the host machine:
Based on `brctl show` it indicates that I need to add veth101.1 to vmbr1.
Before I can add veth101.1 to the bridge, I need to create that interface. How do I create this virtual interface? or Am I going about this the wrong way?
I have eth0 bridged to vmbr0.
I have eth1 bridged to vmbr1.
I can assign either bridge to any virtual machine on eth0.
I would like to be able to assign vmbr0 as eth0 and vmbr1 as eth1 to the same virtual machine. I have not found a way to accomplish this via the web interface.
This is what I have set on the host machine:
Code:
# cat /etc/network/interfaces
auto lo
iface lo inet loopback
auto vmbr0
iface vmbr0 inet static
address 10.30.1.5
netmask 255.255.255.0
gateway 10.30.1.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet static
address 10.20.254.254
netmask 255.255.255.0
bridge_ports eth1
bridge_stp off
bridge_fd 0
Code:
# brctl show
bridge name bridge id STP enabled interfaces
vmbr0 8000.00221964feff no eth0
veth101.0
vmbr1 8000.00221964ff01 no eth1
Before I can add veth101.1 to the bridge, I need to create that interface. How do I create this virtual interface? or Am I going about this the wrong way?