- Bond 교체 작업 -
1. 기본 Bond1(eth1+eth5) 제거
# ifdown bond1
# rmmod bond1
# vi /etc/sysconfig/network-scripts/ifcfg-eth1
# vi /etc/sysconfig/network-scripts/ifcfg-eth5
<중략>
#MASTER=bond1
#SLAVE=yes
▶ 파일을 열어 해당 라인 주석처리
2. Bond1(eth2+eth6) 본딩 추가
# vi /etc/sysconfig/network-scripts/ifcfg-eth2
# vi /etc/sysconfig/network-scripts/ifcfg-eth6
ONBOOT=yes
<중략>
MASTER=bond1
SLAVE=yes
USERCTL=no
▶ ONBOOT옵션을 “no”에서 ‘yes”변경
▶ 위의 설정 추가
3. 변경한 bond1 인터페이스 활성화 및 속도 체크
# ifup bond1
# ethtool eth2
# ethtool eth6
# cat /proc/net/bonding/bond1
- Bond 원복 작업 -
1. 변경한 Bond1(eth2+eth6) 제거
# ifdown bond1
# rmmod bond1
# vi /etc/sysconfig/network-scripts/ifcfg-eth2
# vi /etc/sysconfig/network-scripts/ifcfg-eth6
<중략>
#MASTER=bond1
#SLAVE=yes
▶ 파일을 열어 해당 라인 주석처리
2. 기존 Bond1(eth1+eth5) 복구
# vi /etc/sysconfig/network-scripts/ifcfg-eth1
# vi /etc/sysconfig/network-scripts/ifcfg-eth5
<중략>
MASTER=bond1
SLAVE=yes
▶ 주석처리 했던 라인의 주석 해제
3. 변경한 bond1 인터페이스 활성화 및 속도 체크
# ifup bond1
# ethtool eth1
# ethtool eth5
# cat /proc/net/bonding/bond1
'Linux > CentOS & RHEL' 카테고리의 다른 글
[Tip] Linux Application core 생성 (0) | 2020.09.23 |
---|---|
[Network] CentOS / RHEL Bridge 설정 (0) | 2020.09.23 |
[Crontab] Linux Crontab (0) | 2020.09.18 |
[계정관리-Pam] Linux 패스워드 사용규칙 적용(CentOS 6.x) (0) | 2020.09.17 |
[Network] Ethtool를 이용한 NIC Ring값의 변경방법 (0) | 2020.09.17 |