http://mapoo.net/os/oslinux/bonding-primary-nic-config/
[root@rhevh-web02 network-scripts]# vi ifcfg-bond0
DEVICE=bond0
BONDING_OPTS='mode=1 miimon=100 primary=eth0 primary_reselect=2'
BRIDGE=rhevm
ONBOOT=yes
MTU=1500
NM_CONTROLLED=no
HOTPLUG=no
PEERDNS=no
어플라이언스 형태의 RHEV 하이퍼바이져는 위와 같이 수정만 하면 재부팅 후 설정 값이 날라감.
따라서 아래와 같이 persist 명령을 통해 영구 적용 시킴.
[root@rhevh-web02 network-scripts]# persist ifcfg-bond0
Successfully persisted: ifcfg-bond0
[root@rhevh-web02 network-scripts]# reboot
-reboot 후 확인
[root@rhevh-web02 network-scripts]# cat ifcfg-bond0
# Generated by VDSM version 4.16.26-1.el6ev
DEVICE=bond0
BONDING_OPTS='mode=1 miimon=100 primary=eth0 primary_reselect=2'
BRIDGE=rhevm
ONBOOT=yes
MTU=1500
NM_CONTROLLED=no
HOTPLUG=no
PEERDNS=no
primary=eth0 (bond0 장치에서 eth0 장치가 Primary Slave가 됨)
primary_reselect=0 (오토패일백 함, 기본값)
primary_reselect=1 (두개의 NIC가 원복되면, 성능이 더 좋은 NIC로 패일백 됨)
primary_reselect=2 (오토패일백 하지 않음)