iSCSI + br0 桥接器 + 14.04.1 服务器 = 不起作用

iSCSI + br0 桥接器 + 14.04.1 服务器 = 不起作用

在我的其中一台服务器上,我有:USB 4GB:

1) EFI partition
2) /boot partition

iSCSI 50GB(在另一台文件服务器上):

3) / partition

在 /etc/network/interfaces 中,如果我有以下设置,它就可以完美运行:

auto p3p1
iface p3p1 inet dhcp

一旦我将其更改为此,无论如何它都无法启动(一定是这个文件,因为当我更改它时它无法启动):

auto p3p1
iface p3p1 inet dhcp

auto br0
iface br0 inet dhcp
bridge_ports    p3p1
bridge_stp      off
bridge_maxwait  0
bridge_fd       0

该服务器将成为 KVM 主机,我将来可能会制造更多这样的主机,因此本地 HDD 不是一个选项(只有 iSCSI 才是一个选项)。

答案1

我认为 p3p1 接口节应该读作

auto p3p1
iface p3p1 inet manual

我刚刚设置了一个这样的服务器,这是你的配置和我的配置之间的唯一区别。

我的工作配置是

# The primary network interface
auto p1p1
iface p1p1 inet manual

auto br0
iface br0 inet static
        address 192.168.0.67
        netmask 255.255.255.0
        gateway 192.168.0.1
        bridge_ports p1p1
        bridge_stp off
        bridge_maxwait  0
        bridge_fd       0

希望有所帮助。

相关内容