/etc/network/interfaces 的虚拟盒问题

/etc/network/interfaces 的虚拟盒问题

我正在尝试运行渗透测试服务器(2014 年盒子挑战赛:https://www.cyberchallenge.com.au/) 在虚拟机上。我在 etc/network/interfaces 中设置了一个静态 ip,如下所示:

#auto lo
auto eth0
#iface eth0 inet dhcp
iface eth0inet static

address 10.0.05
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.1.2.255
gateway 10.0.0.1

当我启动服务器时,系统会显示要连接的 IP,但是当我在 chrome 中加载 IP 时,系统会超时。当我尝试设置 DHCP 时,服务器会给我空白 IP。

我对服务器还不熟悉,所以很有可能我做了一些非常愚蠢的事情,如果这只是一个简单的修复,我很抱歉!

答案1

你有几个拼写错误。你可能想要的是:

auto eth0
iface eth0 inet static
  address 10.0.0.5
  netmask 255.255.255.0
  network 10.0.0.0
  broadcast 10.0.0.255
  gateway 10.0.0.1

如果您的 ubuntu 版本是 16.04(您的网络接口可能不是eth0),在这种情况下您可能需要:

相关内容