Hi,
I setup a freshly installed FreeBSD 13.0 as KVM guest.
The system has one network interface, i.e. vtnet0
I want vtnet0 to be attached to a bridge0f and have my IP addresses set to the bridge instead of vtnet0.
This is the configuration I came up with.
Yet every time the system boots it does not have vtnet0 attached to bridge0, thus the interface not coming up properly.
If I run
Am I missing something?
I setup a freshly installed FreeBSD 13.0 as KVM guest.
The system has one network interface, i.e. vtnet0
I want vtnet0 to be attached to a bridge0f and have my IP addresses set to the bridge instead of vtnet0.
This is the configuration I came up with.
Code:
cloned_interfaces="bridge0"
ifconfig_bridge0="addm vtnet0 up"
ifconfig_vtnet0="up"
ifconfig_bridge0="inet 10.10.129.8 netmask 255.255.255.0"
ifconfig_bridge0_ipv6="inet6 2001:1234:4321:7300::f prefixlen 64 auto_linklocal"
defaultrouter="10.10.129.1"
ipv6_defaultrouter="2001:1234:4321:7300::1"
Yet every time the system boots it does not have vtnet0 attached to bridge0, thus the interface not coming up properly.
If I run
ifconfig bridge0 addm vtnet0 up
manually after boot, everything is connected after all.Am I missing something?