為 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 個介面 - 你需要使用基於策略(來源)的路由。

相關內容