Merge "Added New Files for Vagrant Install Mode"
This commit is contained in:
commit
e99afbe1f1
@ -6,7 +6,7 @@ iface lo inet loopback
|
||||
|
||||
# Virtual Box NAT -- for internet access to VM
|
||||
auto eth2
|
||||
iface eth2 inet static
|
||||
iface eth2 inet dhcp
|
||||
|
||||
# OpenStack Single Node.
|
||||
|
||||
|
@ -0,0 +1,26 @@
|
||||
# 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 eth0
|
||||
iface eth0 inet dhcp
|
||||
|
||||
# OpenStack Multi Node
|
||||
# Compute Node
|
||||
|
||||
#Management Network
|
||||
auto eth1
|
||||
iface eth1 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 eth2
|
||||
iface eth2 inet static
|
||||
address 10.20.20.53
|
||||
netmask 255.255.255.0
|
||||
gateway 10.20.20.1
|
@ -0,0 +1,26 @@
|
||||
# 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 eth0
|
||||
iface eth0 inet dhcp
|
||||
|
||||
# OpenStack Multi Node
|
||||
# Control Node
|
||||
|
||||
# OpenStack Management Network
|
||||
auto eth1
|
||||
iface eth1 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 eth2
|
||||
iface eth2 inet static
|
||||
address 192.168.100.51
|
||||
netmask 255.255.255.0
|
||||
gateway 192.168.100.1
|
@ -0,0 +1,31 @@
|
||||
# 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 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
|
||||
gateway 10.10.10.1
|
||||
|
||||
# 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
|
@ -0,0 +1,25 @@
|
||||
# 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 eth0
|
||||
iface eth0 inet dhcp
|
||||
|
||||
# OpenStack Single Node.
|
||||
|
||||
# OpenStack Management Network
|
||||
auto eth1
|
||||
iface eth1 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 eth2
|
||||
iface eth2 inet static
|
||||
address 192.168.100.51
|
||||
netmask 255.255.255.0
|
||||
gateway 192.168.100.1
|
@ -26,5 +26,4 @@ mkdir Logs
|
||||
#Execute the deployment scripts
|
||||
#./auto_scripts.sh
|
||||
echo "Execute PreInstall Script to Build Student Environment"
|
||||
bash PreInstall/PreInstall.sh "single-node" > Logs/PreInstall.log
|
||||
|
||||
bash PreInstall/Vagrant-PreInstall.sh "single-node" > Logs/PreInstall.log
|
||||
|
Loading…
Reference in New Issue
Block a user