3. OS이야기/02. Troubleshooting
[dmesg] 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.
알 수 없는 사용자
2014. 4. 17. 17:28
1. 에러 메시지:
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.
2. 원인:
- Network bonding 구성 시, /etc/modprobe.conf 파일에 다음과 같은 옵션을 설정해 주지 않아서 로깅
# grep bond0 /etc/modprobe.conf
alias bond0 bonding
options bond0 miimon=100 mode=1
3. 조치 방안:
- /etc/sysconfig/network-scripts/ifcfg-bond0 파일에 다음과 같은 옵션이 들어가 있으면 상관 없음
BONDING_OPTS="mode=1 miimon=100"
- 해당 설정이 적용되었는지는 /sys/class/net/bond0/bonding 디렉토리 아래 mode, miimon 파일로 확인
4. 참조 URL:
http://comments.gmane.org/gmane.linux.redhat.release.rhel5/5424