I have been working through setting up my servers for openstack http://www.ubuntu.com/download/cloud/install-ubuntu-openstack and I am trying to configure the second NIC.
I receive this error in my MAAS
Failed to import images from boot source http://maas.ubuntu.com/images/ephemeral-v2/releases/: HTTPConnectionPool(host='maas.ubuntu.com', port=80): Max retries exceeded with url: /images/ephemeral-v2/releases/streams/v1/index.sjson (Caused by : [Errno 113] No route to host)
This is what I have for eth1 (eth0 is auto with dhcp)
# The secondary network interface
auto eth1
iface eth1 inet static
address 10.0.0.2
netmask 255.255.255.0
gateway 10.0.0.1
broadcast 10.0.0.255
Inside my cluster configuration for eth1 I have the following and it is set to manage dhcp and dns.
IP 10.0.0.2
subnet 255.255.255.0
broadcast 10.0.0.255
router ip 10.0.0.1
dhcp low 10.0.0.3
dhcp high 10.0.0.100
static low 10.0.0.101
static high 10.0.0.200
The other part to this is no tools are provided to 'properly' configure the second network interface. The documentation says that the Ethernet configuration works, though it doesn't following it word for word. What am I missing? Any guidance is greatly appreciated. Does anyone have good general interfaces configurations to make this work?
Update ** The only other thing I can see doing is adding a router for the MAAS Cluster to 'own' and only have one interface in the cluster configuration instead of dealing with both.
* UPDATE 3/10/2015 *
The installation has progressed now that the controller owns the router, and it is all being handled on one NIC. Power management exists, can power on / off other servers, however the autopilot doesn't see or recognize nodes that are being controlled or enlisted. ** The autopilot installer at the terminal never sees the MAAS nodes that are in 'ready' or 'commissioned' state. Any guidance is appreciated in accomplishing this task.