kumar shivam
kumar shivam

Reputation: 7

How to Access Openstack on my local machine from External network?

I deployed a private cloud in openstack with the help of packstack, Everything is working fine, I can create new instances, Launch it, use it to install software from internet and delete it, All the set up is running on my Local machine as virtual machine in vmware, I created a router, a public and a private network. I can access Internet from my instance as well as from my main server. Basically everything is working as expected. But I can only access my cloud from the network in which I am using it. I want to Access my horizon dashboard and my instance from an external network, how can I do this? currently I can only access my cloud from ip as http://10.0.5.2/dashboard but I want to assign a public ip to my cloud.

Upvotes: 0

Views: 3899

Answers (1)

user5777975
user5777975

Reputation:

From the dashboard/horizon " http://10.0.5.2/dashboard " link it means you are using the NAT/NAT network/any other internal network IP for OpenStack setup. So you can't access it outside the VMware VM.

If you need to access the horizon from outside VMware:

  1. Create two interfaces in VM, one with NAT and other with Host-Only networking
  2. Use the NAT IP for internet and Host-Only networking IP as HOST_IP for openstack setup.
  3. Install the openstack and then you will have horizon link as http://Host-only_network_IP/dashboard
  4. Then you can able to access the openstack from outside of VMware VM

Upvotes: 2

Related Questions