我有一个Debian 8系统,有两个NIC,我想连接。我的托管交换机已经配置为链接聚合我正在使用的两个端口。
在linux机器上,我已经安装了ifenslave。
在/etc/网络/接口中,我有:
auto eth0
iface eth0 inet manual
bond-master bond0
auto eth1
iface eth1 inet manual
bond-master bond0
auto bond0
iface bond0 inet static
address 10.0.0.100
netmask 255.255.0.0
gateway 10.0.0.1
slaves eth0 eth1
bond-mode 4
bond-miimon 100
bond_downdelay 200
bond_updelay 300编辑:在使用模式4时,配置看起来是错误的。我很难找到如何配置802.3ad的示例。
编辑2:我尝试了调制解调器连接mode=4,现在cat /proc/net/bond0 0正在显示802.3ad,但是我的整个网络变得无法访问。
发布于 2018-04-07 20:20:31
交换机需要支持802.3ad。这是一种协议,在该协议中,交换机正在与服务器的接口进行对话,以查看它们是否真正处于一种连接状态。开关常常与Linux实现不兼容。在本例中,不要使用mode=802.3ad,例如使用mode=balance-alb。
https://serverfault.com/questions/734700
复制相似问题