Hi All,
I have the following setup in rc.conf to bring up the bridge and taps so that bhyve VMs have Internet access. I am using FreeBSD 12.1-RELEASE.
I have the following in /etc/boot/loader.conf too:
But it is not working and each time it boots I have to manually run the following to make it work:
Also it seems that if I use bridge0 it is ignored and system only recognizes bridge1 and up.
Any help is appreciated.
I have the following setup in rc.conf to bring up the bridge and taps so that bhyve VMs have Internet access. I am using FreeBSD 12.1-RELEASE.
Code:
cloned_interfaces="bridge1"
cloned_interfaces="bridge1 tap2"
cloned_interfaces="bridge1 tap3"
ifconfig_bridge1="addm bce0 addm tap2 addm tap3 up"
I have the following in /etc/boot/loader.conf too:
Code:
if_bridge_load="YES"
if_tap_load="YES"
But it is not working and each time it boots I have to manually run the following to make it work:
ifconfig bridge create;ifconfig bridge1 addm tap3;ifconfig tap2 create;ifconfig bridge1 addm tap2;
Also it seems that if I use bridge0 it is ignored and system only recognizes bridge1 and up.
Any help is appreciated.