Linux

在 Linux 上向網卡添加更多 IP

  • June 3, 2011

如何在 Linux 上向網卡添加更多 IP 地址?我使用路由命令嗎?

它是 Ubuntu 伺服器 10.04 LTS。

你的意思是你想添加輔助IP?

  $ sudo vi /etc/network/interfaces
    auto eth0
    iface eth0 inet static
     address x.x.x.x
     netmask x.x.x.x
     network x.x.x.x
     gateway x.x.x.x
     broadcast x.x.x.x

    auto eth0:1
     iface eth0:1 inet static
     address x.x.x.x
     netmask x.x.x.x
     network x.x.x.x
     broadcast x.x.x.x

  $ sudo /etc/init.d/networking restart

您可以使用新樣式:

ip address add 192.168.10.0/24 dev eth0

或舊樣式:

ifconfig eth0:1 192.168.10.0 netmask 255.255.255.0

引用自:https://serverfault.com/questions/276154