如何连接到virtualbox上的openwrt

问题描述 投票:1回答:1

我在virtualbox上安装了openwrt-x86-generic-combined.ext4.vdi。我设置了wan,所以“路由器”连接到网络,我能够用ip和域名ping网站。

现在我想用我的Windows笔记本电脑连接到路由器,我在其上运行虚拟盒。我试图遵循这个解决方案:https://wiki.openwrt.org/doc/howto/virtualbox但它似乎没有连接。

我的/ etc / config / network文件现在看起来像这样:

 config interface 'wan'
                  option  proto 'dhcp'
                  option ifname 'eth0'

 config interface 'lan'
        option ifname 'eth2'
        option type 'bridge'
        option proto 'static' 
        option ipaddr '192.168.1.1'
        option netmask '255.255.255.0'

我试图将适配器设置为仅主机,内部网络和桥接适配器,但它们都没有按照我的意愿工作(实际上根本不工作),有没有办法这样做?

virtualbox openwrt
1个回答
0
投票

这对我有用。

适配器1:NAT 适配器2:仅限主机

我在Vbox中配置的仅限主机的适配器为192.168.56.1在openwrt中我将'lan'ip设置为192.168.56.2然后我可以将其转入

你的lan配置说“eth2”。应该是“eth1” https://oldwiki.archive.openwrt.org/doc/howto/virtualbox

© www.soinside.com 2019 - 2024. All rights reserved.