Hi,
I am using sysutils/vm-bhyve to experiment with virtualization on FreeBSD.
Up until now I had exactly one guest OS running Ubuntu 20.04-Server which works perfectly fine. Here is the config:
As I said, this guest works flawlessly: I can stop, restart the VM and connect to it via VNC.
Now I created a second guest using the following command:
I changed the
The other fields (except
When I try to start the VM using
something strange happens: The internet access on my host and all other devices connected to my router breaks and I have to reset my router (!) to get it back online.
Did I mess up the network configuration?
Best,
Holger
I am using sysutils/vm-bhyve to experiment with virtualization on FreeBSD.
Up until now I had exactly one guest OS running Ubuntu 20.04-Server which works perfectly fine. Here is the config:
Code:
loader="uefi"
cpu=2
memory=4G
graphics="yes"
network0_type="virtio-net"
network0_switch="public"
disk0_type="virtio-blk"
disk0_name="disk0.img"
uuid="51bcafc5-5d26-11ec-8bfa-704d7b26f5e0"
network0_mac="58:9c:fc:0b:30:60"
As I said, this guest works flawlessly: I can stop, restart the VM and connect to it via VNC.
Now I created a second guest using the following command:
Code:
vm create ubuntu-bionic ubuntu-18.04.6-live-server-amd64.iso
I changed the
loader
in the corresponding config file to uefi
so that it looks like this:
Code:
loader="uefi"
cpu=1
memory=256M
network0_type="virtio-net"
network0_switch="public"
disk0_type="virtio-blk"
disk0_name="disk0.img"
uuid="39757715-8879-11ec-ae33-704d7b26f5e0"
network0_mac="58:9c:fc:0e:d1:f2"
loader
) I left unchanged.When I try to start the VM using
Code:
vm start ubuntu-bionic
Did I mess up the network configuration?
Best,
Holger