Can someone help me bridge vmbr1 onto my VM network adapter via the args line?
I need to pass the network adapter manually via the arguments until/unless disabling MSI-X is implemented into proxmox (Bug 1267)
This works for that need:
But I wish to bridge this device to vmbr1 instead of vmbr0.
The closest I have gotten is chaning
to
which results in:
kvm: -netdev bridge,br=vmbr1,id=net1: bridge helper failed
Any help would be appreciated.
Thanks.
I need to pass the network adapter manually via the arguments until/unless disabling MSI-X is implemented into proxmox (Bug 1267)
This works for that need:
Code:
args: -netdev tap,id=net1 -device virtio-net-pci,netdev=net0,mac=FF:FF:FF:FF:FF:FF,vectors=0
But I wish to bridge this device to vmbr1 instead of vmbr0.
The closest I have gotten is chaning
Code:
tap,id=net1
to
Code:
bridge,br=vmbr1,id=net1
which results in:
kvm: -netdev bridge,br=vmbr1,id=net1: bridge helper failed
Any help would be appreciated.
Thanks.