Skip to content

Instantly share code, notes, and snippets.

@flisboac
Last active October 1, 2023 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flisboac/8de38d9b8a405fe1d7fab3410975d136 to your computer and use it in GitHub Desktop.
Save flisboac/8de38d9b8a405fe1d7fab3410975d136 to your computer and use it in GitHub Desktop.
Proxmox-VE 7.x: Enable PCI passthrough for I226-V Ethernet network devices, with non-passthrough exceptions for specific ports (tested with CWWK's CW-MBX-AD12 2.5Gbps 6-port mini-PC).

Some notes:

  • Disable Above 4G in BIOS, otherwise vfio-pci (on the host) will panic all the time when turning off the Opnsense VM, and the only way to get off the problem is to hard-reset the host entirely.
  • On Opnsense Guest, go to the Web GUI, option System -> Settings -> Tunables, click "Add", and add the virtio_console_load=YES config Make sure QEMU Guest Agent is disabled.
# Edit "/etc/default/grub" and append the following
# to the GRUB_CMDLINE_LINUX_DEFAULT variable:
# For Intel:
# intel_iommu=on iommu=pt kvm.ignore_msrs=1
#
# After editing the file, don't forget to execute:
# update-grub
#
GRUB_CMDLINE_LINUX_DEFAULT="intel_iommu=on iommu=pt kvm.ignore_msrs=1"
# Put this file at location: /etc/systemd/system/vfio-pci-eth-rebind.service
# Don't forget to execute:
# sudo systemctl enable --now vfio-pci-eth-rebind.service
#
[Unit]
Description=Disables PCI Passthrough for specific network devices.
[Service]
ExecStart=/usr/local/bin/vfio-pci-eth-rebind.sh
[Install]
WantedBy=network.target
#!/bin/sh
# Put this file at location: /usr/local/bin/vfio-pci-eth-rebind.sh
# Specify here the driver that will
# override vfio-pci.
# `igc` is intel's drivers. Check
# `lspci -v` for a list of suitable
# drivers per device.
DRIVER="igc"
# List here all devices that need to be
# controlled by the driver you want.
# For the CWWK mini-pc I have, this will
# make eth0 non-passthrough.
DEVICES="0000:02:00.0"
for DEV in $DEVICES; do
DEV_UNBIND="/sys/bus/pci/devices/${DEV}/driver/unbind"
if [ -w "$DEV_UNBIND" ]; then
printf '%s\n' "$DEV" >"$DEV_UNBIND"
fi
echo "$DEV" >"/sys/bus/pci/drivers/${DRIVER}/bind"
done
unset DEV
unset DEV_UNBIND
# Put this file at location: /etc/modprobe.d/vfio-pci-eth.conf
# Don't forget to execute:
# update-initramfs -u -k all
# Change "igc" to the driver which Linux would normally
# use to bind your network device.
# (e.g. Realtek Ethernet devices are bound via a different
# driver). Check `lspci -v` for details.
softdep igc pre: vfio-pci
# Change the `ids`' value to the device and vendor ID of
# your network device. All devices that share the same
# vendor:device identification will be passthrough at
# system initialization. The vfio-pci-eth-rebind.sh will then
# be called by SystemD and will override specific devices,
# disable passthrough and assign them to some other driver,
# so that they can be accessed by the VM host.
# This ID is for the Intel I226-V ethernet chip.
options vfio-pci ids=8086:125c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment