
Removed Unwanted White Spaces.Z Removed Cirros Image from one of the sub folder. These scripts are meant to automate deployment of OpenStack for training and Lab sessions. bp/training-manuals Change-Id: I0f46d986d154a1993b014847c2181c7b59412c87
27 lines
481 B
Plaintext
27 lines
481 B
Plaintext
# interfaces(5) file used by ifup(8) and ifdown(8)
|
|
|
|
# local loopback
|
|
auto lo
|
|
iface lo inet loopback
|
|
|
|
# Virtual Box NAT -- for internet access to VM
|
|
auto eth2
|
|
iface eth2 inet dhcp
|
|
|
|
# OpenStack Multi Node
|
|
# Compute Node
|
|
|
|
#Management Network
|
|
auto eth0
|
|
iface eth0 inet static
|
|
address 10.10.10.53
|
|
netmask 255.255.255.0
|
|
gateway 10.10.10.1
|
|
|
|
#Expose OpenStack API over internet/external network
|
|
auto eth1
|
|
iface eth1 inet static
|
|
address 10.20.20.53
|
|
netmask 255.255.255.0
|
|
gateway 10.20.20.1
|