i have a basic vagrant box with .NET Core installed in it.
In my vagrantfile I have following port forwarding:
config.vm.network "forwarded_port", guest: 5000, host: 7777
When I ssh into my machine and start using "dotnet run", application starts at localhost:5000.
When I try to access localhost:7777 on my host-machine(mac), I get "server not found".
I already tried to use an other port, but same result.