Good morning, I'm trying to install the laravel 5.5 Homestead, following the documentation . However, when I try to access IP 192.168.10.10, which is the default ip of the homestead, it loads and can not resolve. This before even thinking about DNS, just the ip, it can no longer solve, so the DNS in the / etc / hosts file also does not. I have done and re-done the installations about 3x, but nothing worked, I researched and researched, they recommended installing gnome-nettools to see the network adapters, and I saw that there is a virtual box adapter that is getting 192.168.10.1, I do not know if this may be wrong. But I wanted help to solve this problem, I will leave below the / etc / hosts files (which at the moment is not the problem, once I solve the ip, I think DNS will be solved)
Homestead.yaml:
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: ~/code
to: /home/vagrant/code
sites:
- map: screencast.app
to: /home/vagrant/code/screencast
databases:
- homestead
# blackfire:
# - id: foo
# token: bar
# client-id: foo
# client-token: bar
# ports:
# - send: 50000
# to: 5000
# - send: 7777
# to: 777
# protocol: udp
/ etc / hosts
127.0.0.1 localhost
127.0.1.1 matheus-PC
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
192.168.10.10 screencast.app
Photo of the vboxnet0 network adapter
Thereisalsothevboxnet1networkadapter
PS: I'm using deepin linux 15.4.1.
PS2: The ip that my server (work) gives me is 172.16.10.X, thus working with the mask 255.255.255.0.
PS3: When I play the ip 127.0.0.1:8000 it can hit there, but I believe this is by the redirect created by vagrant (port 8000 host => 80 guest).
Thanks in advance for your help, thank you!