I have three identical USB devices on my VM host that I would like to pass-through to a VM:
I can pass-through only one device as they all have the same vendor- and device-ID, the element in the VM libvirt XML file look like this:
...
<hostdev mode='subsystem' type='usb' managed='yes'>
<source>
<vendor id='0x064f'/>
<product id='0x03e9'/>
</source>
<address type='usb' bus='0' port='2'/>
</hostdev>
...
Any tricks?
Perhaps one way could be if it was possible to change the device-id of a device?