Failure to create igb0 bridge

The permissions issues should be easy to fix manually. I'm not sure why they didn't get set correctly. So as of right now all the networking stuff appears to be configured correctly right? You have a bridge(4) interface with a tap(4) and your re(4) devices? I think we've answered everything for the networking portion and can changed this thread to solved.

For the bhyve(8) portion, did you see any errors doing the kldload vmm and do you have the various virtualization features activated on your BIOS that Bhyve uses? The Handbook mentions those requirements and the flags that would be present. Please open a new thread if you are still having issues creating a Bhyve VM after you have checked that your system supports the required features.

https://www.freebsd.org/doc/handbook/virtualization-host-bhyve.html
 
No it looks like my bridge and tap interfaces are no longer appearing. I have added
Code:
vmm_load="YES"
nmdm_load="YES"
if_bridge_load="YES"
if_tap_load="YES"
to my /boot/loader.conf file though. Should I just start from step 1 in the handbook? Did the upgrade undo those steps? I would assume I will not need to create and bring them online again correct?
 
No it looks like my bridge and tap interfaces are no longer appearing. I have added
Code:
vmm_load="YES"
nmdm_load="YES"
if_bridge_load="YES"
if_tap_load="YES"
to my /boot/loader.conf file though. Should I just start from step 1 in the handbook? Did the upgrade undo those steps? I would assume I will not need to create and bring them online again correct?

Did you do all the steps listed at the end of the Handbook chapter? It's /etc/sysctl.conf for the tap(4) device sysctl(8), /boot/loader.conf for the kernel modules, and /etc/rc.conf to persistently make the bridge(4) interface.
 
Back
Top