本文介绍了Windows 10下的Virtualbox中的桥接网络不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚刚将笔记本电脑从Windows 7升级到Windows 10,发现无法启动配置了桥接适配器的Virtualbox VM。
I just upgraded my laptop from Windows 7 to Windows 10 and found that I am unable to start Virtualbox VMs configured with a bridged adapter.
请参见以下配置:
推荐答案
首先,您必须创建VirtualBox仅主机以太网适配器
First of all you have to create a VirtualBox Host-Only Ethernet adapter
在Virtualbox中:
In Virtualbox :
- 转到文件>首选项
在网络选项卡上,选择仅主机网络,单击添加仅主机适配器,为其命名默认情况下,它是 VirtualBox仅主机以太网适配器
在Windows中:
- 转到Windows上的网络连接,并突出显示真正的适配器和
- 右键单击并选择桥连接,它将在Windows中创建一个网桥。
现在配置虚拟机:
- 在网络部分中,您可以激活新适配器,然后然后选择仅附加到主机的附加适配器
- 选择刚创建的VirtualBox仅主机以太网适配器
您现在可以通过修改/ etc / network / interfaces来配置静态IP地址:
You can now configure your static IP Address by modifying /etc/network/interfaces :
auto eth0
iface eth0 inet static
address 10.1.1.100
netmask 255.255.255.0
gateway 10.1.1.1
您现在可以通过执行以下操作来重新启动eth0:
You can now restart eth0 by doing :
sudo ifdown eth0
sudo ifup eth0
某些无线适配器不起作用
Some wireless adapters don't work
这篇关于Windows 10下的Virtualbox中的桥接网络不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!