2015年1月16日 星期五

在 Ubuntu 讓單網卡取得多個 IP

可以用 interface:serial 來指定一張網卡持有多個 IP。
需要特別注意的是,gateway 必須設定在第一個 IP。

auto eth0
iface eth0 inet static
  address 10.5.1.151
  netmask 255.255.0.0
  gateway 10.5.0.1
  dns-nameservers 8.8.8.8 8.8.4.4

auto eth0:0
iface eth0:0 inet static
  address 192.168.18.1
  netmask 255.255.255.0

如果需要第三第四個 IP,就繼續增加 eth0:1、eth:2、....即可。

參考資料:
1、UBUNTU实现单网卡多IP
2、Debian和Ubuntu绑定、添加IP的方法(单网卡)

沒有留言: