Skip to content

Instantly share code, notes, and snippets.

@funnylookinhat
Last active December 15, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save funnylookinhat/5273328 to your computer and use it in GitHub Desktop.
Save funnylookinhat/5273328 to your computer and use it in GitHub Desktop.
VirtualBox Devstack setup...
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet dhcp
#hostonly
auto eth1
iface eth1 inet static
address 192.168.56.10
netmask 255.255.255.0
#network 192.168.56.0
#broadcast 192.168.56.255
ADMIN_PASSWORD=password
MYSQL_PASSWORD=password
RABBIT_PASSWORD=password
SERVICE_PASSWORD=password
SERVICE_TOKEN=password
# Good for a single interface w/ a route
FLOATING_RANGE=10.17.76.224/27
FIXED_RANGE=10.11.12.0/24
FIXED_NETWORK_SIZE=256
FLAT_INTERFACE=eth0
# Old Below
HOST_IP=192.168.56.10
#FIXED_RANGE=192.168.56.128/25
PUBLIC_INTERFACE=eth1
# FLAT INTERFACE MUST BE COMPLETELY CONTROLLABLE BY NOVA
FLAT_INTERFACE=br100
# TRYING eth0
#THIS WORKS FOR FLOATING RANGE
#FLOATING_RANGE=192.168.56.224/27
# Add a new instance type for 512 MB Ram, 1 CPU, 5 GB HDD
nova-manage instance_type create m1.special 512 1 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment