If there is nothing running on the port then nonthing will show up in the browser.
in the netstat you did share was nothing there. So, lets say you start an up on port 8080 on the guest and you make the port fwd from 8181 in the host. if you do on the guest netstat -anp | grep 8080 you should see something doing the listening if the app is browser then you can test on the guest like curl -L http://localhost:8080 Then on the host: you can test the port is reachable with . tnc localhost -p 8181 then on the browser in the computer try http://localhost:8181 However, If you add a private_network, and assign an IP like 192.168.56.21 then all gets easier since on the guest you can do curl -L http://192.168.56.21:8080 and ont he host you can also use the same url Alvaro On Thu, Jun 1, 2017 at 1:59 AM, French Fry <[email protected]> wrote: > > > On Wednesday, May 31, 2017 at 4:42:52 PM UTC-6, French Fry wrote: >> >> >> Just an update - I was able to reach the Puma server, guest (3000) host >> (4567), Still like to know why I can't get the 1125 or another port for >> telnet or seeing the Vagrant page in my browser. I was able to telnet on >> the postgres port but not the right port to use, just that I tried so many >> different ones. >> > -- > This mailing list is governed under the HashiCorp Community Guidelines - > https://www.hashicorp.com/community-guidelines.html. Behavior in > violation of those guidelines may result in your removal from this mailing > list. > > GitHub Issues: https://github.com/mitchellh/vagrant/issues > IRC: #vagrant on Freenode > --- > 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]. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/vagrant-up/5374deb4-719a-44d1-9b23-345865f91cc8%40googlegroups.com > <https://groups.google.com/d/msgid/vagrant-up/5374deb4-719a-44d1-9b23-345865f91cc8%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- Alvaro -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CAHqq0ewh6oeejmHEMrm6jV%2BXdJN%3D0Oji0OPboTL5fcZftP2yGQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
