On Sun, Jan 25, 2015 at 1:31 PM, Charles <[email protected]> wrote: > config.vm.network :forwarded_port, guest: 80, host: 4567 > config.vm.network :forwarded_port, guest: 3000, host: 4568 >
Hello, The correct way of reloading once you modify the Vagrantfile, do a vagrant reload network, shared folder, and other stuffs are executed by vagrant on start.. so a vagrant halt and vagrant up also fit the bill check the guest firewall is not causing issue, and also, check the port of that application is binding to all the IP and not to just one specific ip netstat -anp | grep ':3000' this command should give you something like *:3000 LISTEN or 0.0..0.0:LISTEN that is all ips can connect compare with the one of the webserver netstat -anp | grep ':80' if still doesnt work, please give more info include iptables -L netstat -anp | grep ':3000' netstat -anp | grep ':80' :D Alvaro. -- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
