如何将我的 Lamp 服务器设置为静态 IP 地址 10.10.0.23?

如何将我的 Lamp 服务器设置为静态 IP 地址 10.10.0.23?

我在虚拟机上使用 ubuntu12.04 服务器,它似乎只允许我使用 c 类地址,

auto eth0
iface eth0 inet static

address 192.168.0.23
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1

是否可以将其更改为

auto eth0
iface eth0 inet static

address 10.10.0.23
netmask 255.0.0.0
network 10.0.0.0
broadcast 10.255.255.255
gateway 10.10.0.1

答案1

您使用的 IP 地址必须与路由器上的子网一致。因此,首先您需要更改路由器的子网。10.253.0.* 对于本地网络更常见,但您也可以使用 10.10.0.* 。您还使用了一个巨大的子网掩码,而您使用这么大的网络掩码,没有必要。

更好的配置是:

address 10.10.0.23
netmask 255.255.255.0
network 10.10.0.0
broadcast 10.10.0.255
gateway 10.10.0.1

您必须在路由器上定义类似的配置。确保静态 IP 超出路由器 DHCP 的范围。

编辑:刚刚注意到您提到了 Virtual Box。这个答案可能仍然有用,但更改将在 Virtual Box 中配置,而不是“路由器”。我不擅长使用 Virtual Box,所以我不知道具体细节。

相关内容