嗨,我一直在尝试使用两个Ubuntu 14.04虚拟机设置内部网络。但是到目前为止,我一直没有成功。它们都具有具有相同网络名称的内部网络适配器,现在我需要它们在网络内部进行通信,但ping测试失败。
这是我在第一个操作系统中的/etc/network/interfaces.d
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.0.100
netmask 255.255.255.0
gateway 192.168.0.254
作业系统#2
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.0.101
netmask 255.255.255.0
gateway 192.168.0.254
我还尝试将“ eth0”更改为“ lo”,但没有成功。
我不明白问题出在哪里,欢迎任何帮助!谢谢