Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Enable IOMMU on the compute-node

First vt-d needs to be enabled in the systems BIOS/UEFI menu. This option might be visible, or hidden behind a generic "Enable Virtualization Technologies". Next up is to enable the IOMMU in ubuntu by modifying /etc/default/grub to contain:

Code Block
titleEnable IOMMU
GRUB_CMDLINE_LINUX_DEFAULT="intel_iommu=on iommu=pt"
GRUB_CMDLINE_LINUX="intel_iommu=on iommu=pt"

After a reboot you should be able to see that the IOMMU is enabled correctly like so:



Configure Openstack to know about the PCIe-devices.

...