我使用 Windows 7 作为主机操作系统,然后安装 Linux Mint Debian 作为客户操作系统。
我的 Windows 7 使用动态 IP。设置如下:
ip: 192.168.1.101
mask: 255.255.255.0
gateway: 192.168.1.1
当前 VirtualBox 中的网络适配器正在使用 NAT。
如果我想在 Linux 客户操作系统中使用静态 IP,该怎么做?
答案1
如果您确实需要网络连接(以便访问您的 LAN),请在 VirtualBox 设置 > 网络中选择桥接适配器。在 Linux 上,您可以在 /etc/network/interfaces 中设置 ip。完成后,使用 ifdown 重新启动接口界面& ifup界面(或服务网络重启)。
iface *interface* inet static
address *ipaddress*
netmask 255.255.255.0
gateway *gateway*