I use XenServer 6.2 as my hypervisor at home to run anywhere from 5-10 VMs. But I wanted to change up this setup and move to OpenStack Private Cloud deployment. Yes, it’s overkill for my use but oh well.

I’ve messed around a few times with using OpenStack as replacement for my XenServer 6.2 setup, but always ran into an issue, usually getting the networking correct given my home network. Luckily with the OpenStack Havana release networking has become much simpler to get my head around and deploy. Also, a number of OpenStack installer scripts and how to guides have improved since the early OpenStack releases. For my deployment I used Red Hat’s RDO and packstack to deploy OpenStack Havana. From Red Hat, “RDO is a community of people using and deploying OpenStack on Red Hat Enterprise Linux, Fedora and distributions derived from these (such as CentOS, Scientific Linux and others).”.

My home network is pretty simple. 192.168.1.0/24 with pfSense as my firewall and router which connects to an HP ProCurve 8-port switch, I have a wireless AP and my two physical servers hooked into the switch. All clients go through my AP for access. There are a ton of different ways you can configure OpenStack, this is just one way that I found extremely easy to get working and understand.

Yes, I disabled SELinux, sorry Major. Edit your /etc/selinux/config file and set SELINUX=disabled so when we update and reboot, SELinux will be disabled.

We should now have the RDO repo and updated system with the kernel needed to run Neutron networks. Next we install packstack and one additional package needed.

This next command uses packstack to deploy an all in one OpenStack deployment. Since we’re connecting this to an external network, we add the –provision-all-in-one-ovs-bridge=n flag.

This will take awhile, and once it finishes should give you some information on your configuration. You should be able to access the Horizon dashboard at http://192.168.1.75/dashboard. The login credentials will be in /root/keystone_admin. Before we work in Horizon let’s first make some changes to our network interfaces on the OpenStack host. My physical NIC was p4p1, yours might be different so change as necessary.

Edit the /etc/sysconfig/network-scripts/ifcfg-br-ex interface config file. Make it look like the following.

Now we edit the physical interface config file, mine was /etc/sysconfig/network-scripts/ifcfg-p4p1. Make the following changes and make sure you don’t use BOOTPROTO in your config.

Next add the following to the /etc/neutron/plugin.ini file.

Now we restart networking, if you’re connected with SSH your session should remain up.

 

We’ll be running OpenStack commands so we need credentials. The next commands create a new router named “router”, a private and public network and a private subnet and a public subnet, then we set the default gateway for our router. For the public network I assign a range of IPs my home DHCP server does not assign to, so just make sure there is not an IP conflict with the IPs you’re assigning here and your external network.

That’s it. Allow ICMP and SSH to your default security group in the Access & Security section in Horizon. You should now be able to spin up a new instance using the included cirros image to test this. On the Networking tab, only assign a private IP. We will be allocating a floating IP to our project, then assigning this floating IP to this instance for external access.

For the floating IP setup, select Access & Security then Allocate IP to Project. Pool should be your public network, then click on Allocate IP. To attach that floating IP to your new VM, select Associate. The IP should be the floating IP you just assigned to your project and for the Port to be associated select your instance you created.

If everything worked then from your laptop or computer on your 192.168.1.0 network you should be able to ping/SSH to this floating IP connected to your VM in the 192.168.1.200-250 range.

+————————————–+———+——–+————+————-+———————————+ | ID | Name | Status | Task State | Power State | Networks | +————————————–+———+——–+————+————-+———————————+ | d17cf973-3920-4622-a64f-bfeb1bdd080e | devbox1 | ACTIVE | None | Running | private=10.0.0.2 | | 92170264-c474-4e21-9256-5f9e1672c858 | devbox2 | ACTIVE | None | Running | private=10.0.0.4, 192.168.1.202 | +————————————–+———+——–+————+————-+———————————+ Everything you can do in Horizon you should be able to do at the command line using OpenStack tools on the host. Each OpenStack service has it’s own set of tools to configure that service. Also, you can use the various OpenStack clients to manage your infrastructure and spin up/down resources. For example, from one of my other servers or laptop I can manage my own OpenStack deployment and I can also use these same clients (with different credentials of course) to manage my Rackspace infrastructure since they are also based on OpenStack.

This is my personal OpenStack credentials file I used to list my two servers above after installing python-novaclient.

Two OpenStack deployments, my own private cloud and one public Rackspace Cloud, managed by the same tools. Pretty cool.