I've setup a local virtual machine (ubuntu 12.4) using Vagrant (www.vagrantup.com) and need to share its resources on my local wifi network. It is basically running a webserver which should be accessible by other machines on the local network.
My local wifi adapter gets a dynamic IP address from a router.
My current config looks like this, but i cannot access the machine from another machine using the IP:
config.vm.network :private_network, ip: "192.168.56.101"
config.vm.network :forwarded_port, guest: 80, host: 8080
How can I make this happen? Any help is highly appreciated!