bonding 네트워크 설정
2011.03.30 03:10
원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어
Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
원문 : http://www.ischo.net -- 조인상 //시스템 엔지니어
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
1. Bonding 할 네트웍 스크립트 작성 (eth0과 eth1을 bonding할 경우)
# vi /etc/sysconfig/network-script/ifcfg-bond0
DEVICE=bond0
ONBOOT=yes
BOOTPROTO=static
IPADDR=
NETMASK=
GATEWAY=
# vi /etc/sysconfig/network-script/ifcfg-eth0
DEVICE=eth0
USERCTL=no
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
# vi /etc/sysconfig/network-script/ifcfg-eth1
DEVICE=eth1
USERCTL=no
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
2. 모듈에 bonding device 작성
# vi /etc/modprobe.conf
alias bond0 bonding
options bonding mode=1
options bond0 miimon=100 primary=eth0
* bonding mode 의 종류
0 : balance-round robine ( 2개의 NIC에서 로드밸런스 + Fault Tolerance )
1 : active-standby ( Active상태의 NIC에 문제 발생시 stand-by에서 받음 : Fault Tolerance )
2 : balance-xor ( 0과 비슷하지만 xor연산을 이용한 TARGET Mac과 SOURCE Mac을 이용한 밸런싱+Fault tolerance)
3 : broadcast ( 2개의 NIC에 어떤 규칙 없이 데이터 통신 + Fault Tolerace)
4 : 802.3ad (link aggregation) – switch 에 aggregation 그룹생성이 필요
3. 서비스 재시작
# service network stop
# modprobe -r bonding
# lsmod | grep bond
# service network start
확인
# ifconfig
# cat /proc/net/bonding/bond0