为 Ubuntu 服务器分配多个 IP

为 Ubuntu 服务器分配多个 IP

我想为我的 Ubuntu 14.02 服务器分配额外的 IP。我的配置如下:

auto eth0
auto eth0:0

iface eth0 inet static
    address xxx.xx.xx.xx
    netmask xxx.xxx.xxx.xxx
    network xxx.xx.xx.x
    broadcast xxx.xx.xx.xxx
    gateway xxx.xx.xx.x

iface eth0:0 inet static
    address xxx.xxx.xxx.xxx
    netmask xxx.xxx.xxx.xxx
    gateway xxx.xxx.xxx.xxx

当我这样做时,ifconfig。eth0:0 在结果中不可见。

答案1

这看起来正确,您是否尝试过重新启动或运行 ifup eth0:0 来启动接口?

此外,设置网关在我看来似乎是可疑的 - 您可能不希望在您的配置中只有 1 个网关 - 如果您尝试多宿主,它比仅添加 2 个接口要复杂一些 - 您将需要使用基于策略(源)路由。

相关内容