2015-08-02 18:02:40 +01:00
2015-08-02 18:02:40 +01:00
2015-06-30 10:21:30 +01:00
2015-07-10 13:52:24 +01:00
2015-06-24 09:28:53 +01:00

vm-bhyve

FreeBSD Bhyve VM Management

Bhyve manager with the following functionality

  • Simple virtual switch management - no messing with manual tap devices or bridges
  • Automatic ZFS dataset creation (if VM path matches dataset name)
  • Startup and shutdown integration
  • Automatic handling of reboot and shutdown events
  • Dynamic console (nmdm device) creation

##Download

Download a bundle containing the latest version from http://churchers.hostingspace.co.uk/vm-bhyve-latest.tgz

Please note the manual page contains the most up to date information on supported commands and usage. Once installed, use 'man vm' to view.

##Initial setup instructions

Install the vm script using the Makefile

# make install

Create a directory for the virtual machines

# make vmdir PATH=/path/to/my/vms

Update /etc/rc.conf

vm_enable="YES"
vm_dir="/path/to/my/vms"
vm_list="" # list to start automatically on boot
vm_delay="5" # seconds delay between starting machines

Initialise all kernel modules and finish creating the directory structure:

This command needs to be run once after each host reboot (this is normally handled by the rc.d script included)

# vm init

This completes the basic setup

##Virtual Switch Management

Create a new virtual switch called 'public' and assign em0 to it: You can use any name you like (lan/internet/etc), although the included templates are set to create one interface on a switch called 'public'. (Obviously you can change the templates if you like)

# vm switch create public
# vm switch add public em0

We can also set a vlan number so all traffic heading out of em0 will be tagged:

# vm switch vlan public 10

List the configured switches and their associated bridge device

# vm switch list

##Virtual Machines

Create a new 20G virtual machine using the default.conf standard template, and a second 40G ubuntu machine using the ubuntu.conf template:

# vm create -s 20G vm1
# vm create -t ubuntu -s 40G vm2

Download an ISO file for installation:

# vm iso ftp://ftp.freebsd.org/pub/FreeBSD/releases/ISO-IMAGES/10.1/FreeBSD-10.1-RELEASE-amd64-disc1.iso

Start the install:

This will run the bootloader then start bhyve in the background. Connect to the console to complete the install Once complete, if you reboot the machine at the end of the install process, the machine will reboot as expected and boot up normally. Reboots will work as expected and the machine can be shutdown from the guest in the normal way.

# vm install vm1 FreeBSD-10.1-RELEASE-amd64-disc1.iso
# vm console vm1

To stop a single virtual machine, or all virtual machines from the host:

# vm stop vm1
# vm stopall

Start all virtual machines listed in /etc/rc.conf from the host:

To account for the possibility of shared storage being used which contains other machines we don't want running on this host, the list of machines to start is set via the vm_list="" variable in /etc/rc.conf

# vm startall

All network interfaces and nmdm console devices are created dynamically as the guest is started. The entire time the guest is running, vm sits in the background waiting to handle the bhyve shutdown/reboot. Once a guest is shutdown or exits for any other non-reboot reason, all interfaces and nmdm devices are cleaned up.

As an additional example, a private switch to allow two guests to communicate can be created as follows:

# vm switch create private

Then add the following to the /path/to/my/vms/vmname/vmname.conf file for each guest and then shutdown/restart the guests.

network1_type="virtio-net"
network1_switch="private"
Description
Shell based, minimal dependency bhyve manager
Readme BSD-2-Clause 3.8 MiB
Languages
Shell 81.1%
Roff 18.5%
Makefile 0.4%