Hypervisor configuration and management tools
Install full hypervisor setup and CCIO-Utils
apt install -y curl
wget -O install-ccio-setup.sh https://goo.gl/YPSs6k
source install-ccio-setup.sh
ccio-install
Add your user to the appropriate groups
usermod -a -G ccio $USER_NAME
usermod -a -G lxd $USER_NAME
usermod -a -G libvirt $USER_NAME
Then for usage
sudo obb -h
sudo obb --help
sudo obb --show-health
Example:
# Create New OVS Bridge
# sudo obb --add-bridge [ovs bridge name]
sudo obb --add-bridge lan
# Create New LXD Container
# lxc launch [image repository] [container name]
lxc launch ubuntu: test1
# Attach Container with Persistent MAC Address Interface to "lan" OVS Bridge
# sudo obb --add-port [ovs bridge] [unique interface name] [container name]
sudo obb --add-port lan test1-eth1 test1
This tooling provides a common platform to quickly and seamlessly build virtual environments.
The original inspiration for this project came from endless hours of testing different virtual network building tools and strategies in search of a paradigm that meets a number of criteria.
- Docker
- LXC / LXD
- Libvirt / QEMU+KVM
- Bare Metal Hosts
- Physical Switching Gear
- Logical to comprehend
- Easy to setup
- Easy to manage
- Easy to use over Wifi connections
- Easy to integrate physical network gear
- Capable of multi-host overlays
- Capable of nesting multiple layers of networks
- client laptops
- client desktops
- low cost home labs
- devops lab servers
- 100% virtual tenants
- multi host rack systems
OpenVSwitch Bridge Builder
syntax: command [option] [value]
Options:
-- -h Print the basic help menu
--help Print the extended help menu
--show-health -H Check OVS|LXD|Libvirtd Service Status
--show-config -s Show current networks configured locally
--ovs-del-orphans Purge orphaned OVS ports
Seen as 'no such device' error from following commands:
'ovs-vsctl show'
'obb -s | obb --show-config'
--add-port -p Add port to bridge and optionally connect port to
container if named.
Value Ordering:
[bridge] [port] [container]
--del-br -d Deletes network when pased with a value
matching an existing network name.
--add-bridge -b Sets the name for building the following:
OVS Bridge
Libvirt Bridge
LXD Network & Profile Name
LXD:
\_______
\_Launch a container with the lxd profile flag to attach
| Example:
| $ lxc launch ubuntu: test-container -p $network
Libvirt Guests:
\_______
\_Attach Libvirt / QEMU / KVM guests:
| Example:
| virt-manager nic configuration
| virsh xml configuration
Physical Ports:
\_______
\_Attach Physical Ports via the following
| Example with physical device name "eth0"
| ovs-vsctl add-port $NETWORK_NAME eth0
Logical Ports:
\_______
\_Create and Attach Logical Ports via the following
| Examples with the following criteria:
|
| OVS Bridge Name: mybridge
| New OVS Port-Name: eth0
| LXD Container: mycontainer < (optional)
|
| $ obb --add-port mybridge eth0
| $ obb --add-port mybridge eth0 mycontainer
|