Reputation: 328
I've successfully installed a local instance of Cloud Foundry via Bosh-lite (https://github.com/cloudfoundry/bosh-lite/blob/master/README.md).
I can use and access CF from the local machine without problems. However, I cannot access CF from another machine in the local network.
What do I need to do to make this happen?
Upvotes: 1
Views: 370
Reputation: 18607
The standard BOSH-Lite setup requires you to add a route to your iptables so that requests to Cloud Foundry components (with 10.244.0.0/16
IPs) running in the BOSH-Lite VM can be reached directly using the BOSH-Lite VM (whose IP defaults to 192.168.50.4
) as a gateway. Check out Step 5 of the setup instructions.
You would need to:
10.244.0.0/16
to the accessible address of the BOSH-Lite VM.Upvotes: 0