Hello,
I currently have a Thinkpad T430 that I use as a tiny server in my office. On that machine I run FreeBSD 15 and have a bhyve-VM that also runs FreeBSD 15. This VM is responsible for establishing a connection via tailscale VPN to one of my friend's networks (and then forward some traffic).
The VM:
I use the following configuration for the virtual machine:
That is basically only the template from bhyve-vm. I only upped the memory a bit. The only thing running on the VM is tailscale and a SSH server that I use for port forwarding.
The problem:
Every so often the virtual machine starts to completely freeze up and refuses to come back. It appears that this happens more frequently in the morning hours but I cannot really tell. The actual main problem is that I dont have any information about the problem. I checked
Does anyone know a way I could get any debugging information or maybe encountered this problem before and knows how to solve it?
It is super strange behavior because there is barely anything running on the host and the VM.
I currently have a Thinkpad T430 that I use as a tiny server in my office. On that machine I run FreeBSD 15 and have a bhyve-VM that also runs FreeBSD 15. This VM is responsible for establishing a connection via tailscale VPN to one of my friend's networks (and then forward some traffic).
The VM:
I use the following configuration for the virtual machine:
Code:
cpu=1
memory=768M
network0_type="virtio-net"
network0_switch="public"
disk0_type="virtio-blk"
disk0_name="disk0.img"
uuid="..."
network0_mac="..."
That is basically only the template from bhyve-vm. I only upped the memory a bit. The only thing running on the VM is tailscale and a SSH server that I use for port forwarding.
The problem:
Every so often the virtual machine starts to completely freeze up and refuses to come back. It appears that this happens more frequently in the morning hours but I cannot really tell. The actual main problem is that I dont have any information about the problem. I checked
/var/log/messages on the host computer and the VM (after killing and rebooting it) but found nothing. Furthermore, the logs of the bhyve hypervisor vm-bhyve.log does not show anything. In my latest attempt I tried to keep printing logs to the vm console via tail -F /var/log/messages but the VM still froze and did not show me when and why. During all of that the host computer keeps running normally.Does anyone know a way I could get any debugging information or maybe encountered this problem before and knows how to solve it?
It is super strange behavior because there is barely anything running on the host and the VM.