was incorrectly placed in trunk/training-guide non-plural, now trunk/training-guides. also add redirect from trunk/openstack-training and trunk/training-guide to the new location. Change-Id: I0648a9604dc6a1d6c7480a90c07871608a8752ca Closes-Bug: #1255684
26 lines
484 B
Plaintext
26 lines
484 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 Single Node.
|
|
|
|
# OpenStack Management Network
|
|
auto eth0
|
|
iface eth0 inet static
|
|
address 10.10.10.51
|
|
netmask 255.255.255.0
|
|
gateway 10.10.10.1
|
|
|
|
# Expose OpenStack API to External Network/Internet
|
|
auto eth1
|
|
iface eth1 inet static
|
|
address 192.168.100.51
|
|
netmask 255.255.255.0
|
|
gateway 192.168.100.1
|