首页 文章

宅基地不起作用

提问于
浏览
0

我通过“vagrant up”命令运行我的虚拟机,没关系 . “vagrant ssh”运行良好,ifconfig的输出是:

vagrant@precise32:~$ ifconfig
      eth0      Link encap:Ethernet  HWaddr 08:00:27:12:96:98
                inet addr:10.0.2.15  Bcast:10.0.2.255  Mask:255.255.255.0
                inet6 addr: fe80::a00:27ff:fe12:9698/64 Scope:Link
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
                RX packets:583 errors:0 dropped:0 overruns:0 frame:0
                TX packets:420 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:1000
                RX bytes:65606 (65.6 KB)  TX bytes:56229 (56.2 KB)

      lo        Link encap:Local Loopback
                inet addr:127.0.0.1  Mask:255.0.0.0
                inet6 addr: ::1/128 Scope:Host
                UP LOOPBACK RUNNING  MTU:16436  Metric:1
                RX packets:0 errors:0 dropped:0 overruns:0 frame:0
                TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:0
                RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

我的Homestead.yaml是:

ip: 192.168.10.10
memory: 2048
cpus: 1
provider: virtualbox
authorize: C:/Users/franc/.ssh/id_rsa.pub
keys:
    - C:/Users/franc/.ssh/id_rsa
folders:
    -
        map: C:/Users/franc/Websites/Prova
        to: /home/vagrant/Code/prova
sites:
    -
        map: Prova.app
        to: /home/vagrant/Code/prova/public
databases:
    - homestead
name: prova
hostname: prova

但是当我尝试浏览我的web应用程序时,它不起作用 . 我尝试了http://prova.app,192.168.10.10:8000,127.0.0.1:8000,http://localhost:8000但它仍然无效 .

我的主机档案:

# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
#   ::1             localhost

192.168.10.10 prova.app

更新:我重新安装了VirtualBox(最新版本),使用PuTTygen生成一个ssh-key,将public保存为id_rsa.pub,将private保存为id_rsa(不带扩展名)并放入.ssh文件夹 . 克隆家园仓库并添加宅基地箱 . 配置好Homestad.yaml,最后在添加项目后启动“vagrant up”,现在一切正常 .

1 回答

  • 0

    你是否可以Ping你的流浪盒IP或它收到0包失败?

    这听起来很像bug in VirtualBox 5.1.24 . 该票证被标记为Linux主机,但它也可能影响Windows .

    问题似乎是由VirtualBox无法为仅主机网络创建路由引起的 . 滚动VirtualBox回到5.1.22为我解决了问题(在Linux上 . )如果你回滚也解决了这个问题我建议你在bug跟踪器上插入来让他们知道 . 祝好运!

相关问题