Pranav Salunke 0110baf375 Refactor Lab Section
Adds basic skeleton/structure with stubs. Changes are done as per Roger
Luethi's scripts. These changes are done to incorporate various features
like logging, multi-os setup etc. These scripts may also target more
virtualization products like KVM, LXC down the roadmap.

blueprint openstack-training-labs

Change-Id: I0bb33b518080f8a9b9c0e1624f43a66337eb8278
2014-06-12 18:15:41 +05:30

31 lines
553 B
Plaintext

# interfaces(5) file used by ifup(8) and ifdown(8)
# local loopback
auto lo
iface lo inet loopback
# VirtualBox NAT -- for Internet access to VM
auto eth0
iface eth0 inet dhcp
# OpenStack multi node
# Network node
# OpenStack management network
auto eth1
iface eth1 inet static
address 10.10.10.52
netmask 255.255.255.0
# VM internal communication network
auto eth2
iface eth2 inet static
address 10.20.20.52
netmask 255.255.255.0
# VM Internet/external network access
auto eth3
iface eth3 inet static
address 192.168.100.52
netmask 255.255.255.0