答案1
在 Ubuntu 的 VB 客户机配置中,将网络适配器 1 类型从 NAT 更改为 Bridged Adapter。
然后启动 Ubuntu 客户机并以 root 身份(或 sudo)更改/etc/network/interfaces
设置静态接口:
auto eth0
iface eth0 inet static
address 10.7.1.7
netmask 255.255.255.0
gateway 10.7.1.2
并确保删除或注释掉任何提及 dhcp 的节。重新启动网络sudo service networking restart
或重新启动您的客户端。
如果你需要在 Ubuntu 客户机上进行域名解析,你还必须在 中添加 DNS /etc/resolv.conf
。例如
nameserver 8.8.8.8