Intel I350-T4 SR-IOV support

I am presently running 13.2 release with an Intel I350-T4 1GB NIC. It is working fine as intended. I would now like to utilize the SR-IOV function so that it can be passed through to jails. Here is the contents from /etc/iov/igb3.conf:

Bash:
PF {
        device: igb3;
        num_vfs: 4;
}
DEFAULT {
        passthrough: true;
}
VF-0 {
        passthrough: false;
}
VF-1 {
        passthrough: false;
}

In /etc/rc.conf the following line is added:
Bash:
iovctl_files="/etc/iov/igb3.conf"

pciconf -lvc shows SR-IOV 1 IOV disabled and 0 VFs configured out of 8 supported. This NIC was previously used in proxmox and sriov VFs worked without any issues.

Bash:
iovctl -C -f /etc/iov/igb3.conf
iovctl: Could not open device '/dev/iov/igb3': No such file or directory

Could someone help me figure out how to enable sriov on this nic and get it to work? Does this nic supported in freebsd for VF creation and usage ? I have read through the forum and searched online. I was able to find solutions that worked for other nics, but not this one in particular. Any help is much appreciated.
 
Back
Top