SLAVE=yes 时的绑定配置

SLAVE=yes 时的绑定配置

在我的网络配置中,我看到了SLAVE=yes

这是什么意思 -SLAVE=yes

# cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0 
BOOTPROTO=none 
ONBOOT=yes 
# Settings for Bond 
MASTER=bond0 
SLAVE=yes
# cat /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1 
BOOTPROTO=none  
ONBOOT=yes 
USERCTL=no 
# Settings for bonding 
MASTER=bond0 
SLAVE=yes
# cat /etc/sysconfig/network-scripts/ifcfg-eth2
DEVICE=eth2 
BOOTPROTO=none 
ONBOOT=yes 
MASTER=bond0 
SLAVE=yes

如果两个接口都是从属接口,则配置似乎是负载平衡,那么测试此配置的程序是什么?

我的意思是如何对两个 ETH 作为负载平衡做出反应的债券进行真正的测试?

相关内容