Hello! I have two NICs enp3s0 and enp2s0 installed on my Proxmox host.
The plan is to attach 0000:02:00.0 (enp2s0) as PCI Device directly to a VM:
But if I start the VM, all network communication to the host is lost
Thank you all in advance!
The plan is to attach 0000:02:00.0 (enp2s0) as PCI Device directly to a VM:
But if I start the VM, all network communication to the host is lost
Code:
root@mc:~# grep PCI_SLOT_NAME /sys/class/net/enp2s0/device/uevent
PCI_SLOT_NAME=0000:02:00.0
root@mc:~# grep PCI_SLOT_NAME /sys/class/net/enp3s0/device/uevent
PCI_SLOT_NAME=0000:03:00.0
Code:
auto lo
iface lo inet loopback
iface enp3s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.22.2/24
gateway 192.168.22.1
bridge-ports enp3s0
bridge-stp off
bridge-fd 0
Thank you all in advance!