为 ubuntu 服务器配置多个网卡

为 ubuntu 服务器配置多个网卡

我已经安装了 ubuntu server 12.04,我打算将其用作无头 Web 缓存服务器。我使用基于文本的安装向导来配置第一个 NIC。

我已将 eth0 设置为静态,现在我想将 eth1 和 eth2 设置为使用来自不同域的 dhcp。我该怎么做?

答案1

您能否发布您的内容/etc/network/interfaces,因为它可能会解释您希望如何设置您的服务器。

如果我理解你的问题正确的话,我会这样做:

# The loopback network interface
auto lo
iface lo inet loopback
# The network interfaces that you want to start
auto eth0 eth1 eth2
# Your static interface
iface eth0 inet static
      address ...
      netmask ...
      ...
# Your other interfacese that is set up through dhcp
iface eth1 inet dhcp
iface eth2 inet dhcp

相关内容