我有一个服务器,最小安装CentOS6 64位(从安装程序的最小选项)。键合驱动程序似乎不能正常工作。来自/proc/net/粘接/债券0的输出是:
Bonding Mode: fault-tolerance (active-backup)
Primary Slave: None
Currently Active Slave: None
MII Status: down
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0如您所见,没有列出作为salves的接口。键驱动程序选项在/etc/modprobe.d/bonding.conf中配置为:
alias bond0 bonding
options bond0 mode=1 primary=eth0 miimon=100接口eth0和eth4配置如下:
DEVICE="eth0"
MASTER="bond0"
SLAVE="yes"
HWADDR="78:2B:CB:56:ED:5D"
NM_CONTROLLED="no"
ONBOOT="yes"
DEVICE="eth4"
MASTER="bond0"
SLAVE="yes"
HWADDR="00:1B:21:C9:F7:38"
NM_CONTROLLED="no"
ONBOOT="yes"bond0的配置如下:
DEVICE="bond0"
IPADDR="10.100.46.3"
NETMASK="255.255.254.0"
NM_CONTROLLED="no"
ONBOOT="yes"下面是来自/var/log/messages的输出:
Dec 9 08:20:55 app2 kernel: bonding: Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details.
Dec 9 08:20:55 app2 kernel: ADDRCONF(NETDEV_UP): bond0: link is not ready
Dec 9 08:21:02 app2 kernel: ADDRCONF(NETDEV_UP): bond0: link is not ready有人能提供一些关于为什么司机没有启动的洞察力吗?这是依赖关系问题吗?
发布于 2012-01-18 18:42:46
用sudo更新更新操作系统解决了这个问题。不幸的是不知道是哪一部分做的。
发布于 2012-01-18 18:05:19
你的日志上说:
必须指定miimon或arp_interval和arp_ip_target模块参数
尝试将下面的行(您可以选择您最喜欢的选项)添加到您的ifcfg 0中:
BONDING_OPTS='miimon=1000 mode=6'https://serverfault.com/questions/339574
复制相似问题