Linux 服务器,设置不同 IP 的虚拟机

Linux 服务器,设置不同 IP 的虚拟机

我刚刚从 OVH 购买了一台专用服务器 (Ubuntu 14.04 LTS) 和附加 IP(称为故障转移 IP)。我想设置一个 KVM 虚拟机,以便它们拥有自己的独立 IP。下面发布了我的 /etc/network/interfaces 文件。当前状态下,它使新 IP 能够从服务器本身和我的家庭计算机进行 ping。但是,当使用虚拟机向导 (KVM) 时,它显示“eth0:0 未桥接”。我假设我必须桥接此连接才能使用该 IP。对于新的专用服务器所有者来说,有没有简单的方法可以做到这一点?我对 Ubuntu Server 有相当丰富的经验,因为它一直是我设置服务器的选择。

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
    address 158.69.240.XXX (sensored my IP, but the beginning is accurate)
    netmask 255.255.255.0
    network 158.69.240.0 (same as my IP... except for last numbers)
    broadcast 158.69.240.255 (same as my IP... except for last numbers)
    gateway 158.69.240.254 (same as my IP... except for last numbers)

auto eth0:0
    iface eth0:0 inet static
    address 192.99.229.XXX (this is one of the failover IP's)
    netmask 255.255.255.255
    broadcast 192.99.229.XXX (this is the same as address)

答案1

不要在主机上配置 eth0,而是使用 在主机上配置 br0 bridge_ports eth0

客户机可以在使用网桥时配置自己的 IP,因此您无需在主机上执行此操作。

相关内容